/* Global styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}

/* =====================
   HOMEPAGE HERO
   ===================== */

.page-home {
  background: #060608;
}

.site-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 48px 10px;
  background: #000;
  gap: 10px;
}

.site-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.site-logo {
  border-bottom: none;
}

.site-logo img {
  height: 60px;
  width: auto;
}

.nav-login {
  position: absolute;
  right: 0;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-login:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: #fff;
  opacity: 1;
}

.hero {
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 60px 24px 80px;
  background: transparent;
  color: #fff;
  position: relative;
  font-family: 'Inter', Arial, sans-serif;
}

.hero-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 48px;
  max-width: 820px;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 16px 44px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 6px;
  transition: all 0.2s;
}

.hero-cta:hover {
  background: transparent;
  color: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px 12px;
    gap: 10px;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav a {
    font-size: 12px;
  }

  .nav-login {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 10px 20px 40px;
  }
}

/* Homepage plans section */
.home-plans {
  width: 100%;
  background: transparent;
  color: #fff;
  padding: 80px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-plans .plans-intro {
  margin-bottom: 48px;
}

.home-plans .plans-heading {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-plans .plans-subheading {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.free-trial-banner {
  background: #060608;
  text-align: center;
  padding: 48px 24px;
}
.free-trial-heading {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.free-trial-sub {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  margin: 0;
}

.home-plans .plans-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
}

.home-plans .plan {
  background: #fff;
  border: none;
  border-right: none;
  color: #000;
  padding: 44px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.home-plans .plan + .plan {
  border-left: none;
  border-right: none;
}

.home-plans .plan--featured {
  background: #fff;
  color: #000;
}

.home-plans .plan-name {
  color: rgba(0,0,0,0.45);
}

.home-plans .plan--featured .plan-name {
  color: rgba(0,0,0,0.45);
}

.home-plans .plan-price-meta,
.home-plans .plan-for {
  color: #888;
}

.home-plans .plan--featured .plan-price-meta,
.home-plans .plan--featured .plan-for {
  color: #888;
}

.home-plans .plan-divider {
  border-top-color: #e8e8e8;
}

.home-plans .plan--featured .plan-divider {
  border-top-color: #e8e8e8;
}

.home-plans .plan-features li {
  border-bottom: none;
  color: #333;
}

.home-plans .plan--featured .plan-features li {
  border-bottom: none;
  color: #333;
}

.home-plans .plan-features li::before {
  content: "✓";
  color: #111;
  font-weight: 700;
  opacity: 1;
}

.home-plans .plan--featured .plan-features li::before {
  color: #111;
}

.home-plans .plan-cta {
  border-radius: 6px;
  background: #000;
  color: #fff;
  border-color: #000;
}

.home-plans .plan-cta:hover {
  background: transparent;
  color: #000;
}

.home-plans .plan--featured .plan-cta {
  background: #000;
  color: #fff;
  border-color: #000;
}

.home-plans .plan--featured .plan-cta:hover {
  background: transparent;
  color: #000;
}

/* Override plan-form styles in homepage context — both cards identical */
.home-plans .plan-form button[type="submit"],
.home-plans .plan--featured .plan-form button[type="submit"] {
  background: #000;
  color: #fff;
  border-color: #000;
  border-radius: 6px;
}

.home-plans .plan-form button[type="submit"]:hover,
.home-plans .plan--featured .plan-form button[type="submit"]:hover {
  background: #333;
  color: #fff;
}

.home-plans .plan--featured .plan-form input,
.home-plans .plan--featured .plan-form textarea {
  border-bottom-color: #d0d0d0;
  color: #000;
}

.home-plans .plan--featured .plan-form input:focus,
.home-plans .plan--featured .plan-form textarea:focus {
  border-bottom-color: #000;
}

.home-plans .plan--featured .plan-form input::placeholder,
.home-plans .plan--featured .plan-form textarea::placeholder {
  color: #bbb;
}

.plans-tabs {
  display: none;
}

@media (max-width: 768px) {
  .home-plans .plans-container {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .plans-tabs {
    display: flex;
    width: 100%;
    max-width: 560px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
  }

  .plans-tab {
    flex: 1;
    padding: 10px 8px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.06em;
    border-radius: 7px;
    transition: all 0.2s;
    font-family: 'Inter', Arial, sans-serif;
    text-align: center;
  }

  .plans-tab--active {
    background: #fff;
    color: #000;
  }

  .home-plans .plan {
    display: none;
    padding: 32px 24px;
  }

  .home-plans .plan.plan--active {
    display: flex;
  }
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Page content — middle section between header and footer */
.page-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

/* =============================================
   FAQ Page
   ============================================= */

.faq-page {
  background: #f5f5f5;
  padding: 60px 24px 100px;
}

.faq-intro {
  max-width: 760px;
  width: 100%;
  margin-bottom: 48px;
}

.faq-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.faq-subheading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0;
}

.faq-list {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid #ddd;
  padding: 40px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* =============================================
   Articles — listing page
   ============================================= */

.articles-page {
  background: #f5f5f5;
  padding: 60px 24px 100px;
}

.articles-page .faq-intro {
  max-width: 1100px;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  margin-top: 48px;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}

.article-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.article-card-img-wrap {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  background: #e8e8e8;
}

.article-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.article-card:hover .article-card-img {
  transform: scale(1.03);
}

.article-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
  margin: 0 0 12px;
  line-height: 1.35;
}

.article-card-title a {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
}

.article-card-title a:hover {
  color: #0066cc;
}

.article-card-summary {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 20px;
  flex: 1;
}

.article-card-link {
  font-size: 13px;
  font-weight: 600;
  color: #0066cc;
  text-decoration: none;
  border-bottom: none;
  letter-spacing: 0.01em;
}

.article-card-link:hover {
  text-decoration: underline;
}

/* =============================================
   Articles — single article page
   ============================================= */

.article-page {
  background: #f5f5f5;
  padding: 60px 24px 100px;
}

.article-back {
  max-width: 760px;
  width: 100%;
  margin-bottom: 32px;
}

.article-back a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  border-bottom: none;
}

.article-back a:hover {
  color: #0066cc;
}

.article-body {
  max-width: 760px;
  width: 100%;
}

.article-hero-img-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  background: #e8e8e8;
}

.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 32px;
  line-height: 1.2;
}

.article-body p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin: 0 0 24px;
}

/* Header and Footer */
.header a {
  border-bottom: none;
  padding-bottom: 0;
}

.header {
  padding: 40px 20px;
  width: 100%;
  order: -1;
  display: flex;
  justify-content: center;
}

.footer {
  padding: 40px 20px;
  width: 100%;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  background: #111;
  color: #888;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 200px;
}

.footer-world {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-world-label {
  font-size: 13px;
  color: #666;
}

.footer-world img {
  width: clamp(80px, 12vw, 180px);
}

.footer-left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  font-size: 12px;
}

.footer-links a,
.footer-contact a {
  color: inherit;
  border-bottom: none;
  font-size: inherit;
}

.footer-lang-select {
  display: block;
  background: #1c1c1c;
  color: #888;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 14px;
  padding: 4px 8px;
  cursor: pointer;
  margin-bottom: 12px;
  width: auto;
}

/* Links */
a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.6;
}

/* Typography */
h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 16px;
}

p {
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Buttons */
button, input[type="button"], input[type="submit"] {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background: #fff;
  color: #000;
}

/* Plans page */
.logo {
  width: clamp(100px, 20vw, 320px);
}

.plans-intro {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.plans-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 8px;
}

.plans-subheading {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}

.plans-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 800px;
  padding-top: 40px;
}

.plan {
  border: 1px solid #000;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.plan + .plan {
  border-left: none;
}

.plan--featured {
  background: #000;
  color: #fff;
}

.plan-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}

.plan-price {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.plan-netto {
  font-size: 22px;
  font-weight: 400;
  vertical-align: middle;
}

.plan-price-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 0;
}

.plan-for {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

.plan-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 28px 0;
}

.plan--featured .plan-divider {
  border-top-color: #2a2a2a;
}

.plan-features {
  flex: 1;
  font-size: 14px;
  margin-bottom: 32px;
}

.plan-features ul {
  list-style: none;
  padding: 0;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan--featured .plan-features li {
  border-bottom-color: #1e1e1e;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: "—";
  font-size: 12px;
  opacity: 0.4;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-features li details {
  flex: 1;
}

.plan-features details summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  outline: none;
}

.plan-features details summary::-webkit-details-marker {
  display: none;
}

.feature-langs {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.55;
  line-height: 1.8;
}

.plan-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  transition: all 0.2s;
  font-family: inherit;
}

.plan-cta:hover {
  background: #fff;
  color: #000;
}

.plan--featured .plan-cta {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.plan--featured .plan-cta:hover {
  background: transparent;
  color: #fff;
}

/* Plan form */
.plan-form-wrap {
  margin-top: auto;
}

.plan-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.plan-form input,
.plan-form textarea {
  width: 100%;
  padding: 11px 0;
  font-size: 13px;
  font-family: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  color: inherit;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.plan-form input:focus,
.plan-form textarea:focus {
  border-bottom-color: #000;
}

.plan-form input::placeholder,
.plan-form textarea::placeholder {
  color: #bbb;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.plan-form textarea {
  resize: none;
  height: 96px;
  line-height: 1.5;
}

.plan-form button[type="submit"] {
  width: 100%;
  margin-top: 20px;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: inherit;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-form button[type="submit"]:hover {
  background: #fff;
  color: #000;
}

/* Featured plan (black bg) — inverted form colors */
.plan--featured .plan-form input,
.plan--featured .plan-form textarea {
  border-bottom-color: #3a3a3a;
}

.plan--featured .plan-form input:focus,
.plan--featured .plan-form textarea:focus {
  border-bottom-color: #fff;
}

.plan--featured .plan-form input::placeholder,
.plan--featured .plan-form textarea::placeholder {
  color: #666;
}

.plan--featured .plan-form button[type="submit"] {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.plan--featured .plan-form button[type="submit"]:hover {
  background: transparent;
  color: #fff;
}

/* =============================================
   Character Strip
   ============================================= */

.character-strip {
  width: 100%;
  height: 80px;
  margin-top: 70px;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  pointer-events: none;
}

.strip-actor {
  position: absolute;
  bottom: 0;
  width: 38px;
  height: 56px;
}

.strip-actor .bubble {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 28px;
  background: #fff;
  color: #000;
  font: 13px/1.35 ui-monospace, Menlo, Consolas, monospace;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  max-width: 160px;
  white-space: normal;
  text-align: center;
}

.strip-actor .bubble::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #222;
  width: 0; height: 0;
}

.strip-actor .bubble::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  width: 0; height: 0;
}

.strip-actor .sprite {
  width: 38px;
  height: 56px;
  background-image: url('https://store.talknbuy.com/img/sprites.png');
  background-repeat: no-repeat;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* =============================================
   Homepage Features Section
   ============================================= */

.home-features {
  width: 100%;
  background: #f5f5f5;
  color: #111;
  padding: 80px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* --- Blok 1: Żywy sklep --- */
.features-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

.features-hero-text {
  flex: 1;
}

.features-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.features-hero-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #111;
}

.features-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.features-hero-image {
  flex: 1;
}

.features-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.features-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: #e8e8e8;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* --- Blok 2: Grid cech --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  width: 100%;
}

.features-item {
  padding: 16px 28px;
}

.features-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.features-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: -0.01em;
}

.features-item p {
  font-size: 13px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* --- Blok 3: Wsparcie --- */
.features-support {
  max-width: 1100px;
  width: 100%;
  padding: 40px 60px;
  text-align: center;
}

.features-support-heading {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #111;
}

.features-support-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}

.features-support-phone {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .features-hero {
    flex-direction: column;
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-support {
    padding: 40px 24px;
  }
}

/* Form feedback messages */
.form-success {
  font-size: 13px;
  padding: 16px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  letter-spacing: 0.02em;
}

.plan--featured .form-success {
  border-color: #2a2a2a;
}

.form-error {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}

/* Terms page */
.terms {
  max-width: 720px;
  width: 100%;
  line-height: 1.7;
}

.terms h1 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.terms-updated {
  font-size: 12px;
  color: #888;
  margin-bottom: 40px;
  text-align: center;
}

.terms h2 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
}

.terms p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  white-space: pre-line;
}

.terms p strong {
  font-weight: 600;
}

/* Tour page */
.tour {
  max-width: 900px;
  width: 100%;
}

.tour h1 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.tour-subheading {
  font-size: 14px;
  color: #888;
  text-align: center;
  margin-bottom: 60px;
}

.tour-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.tour-section--reverse {
  flex-direction: row-reverse;
}

.tour-text {
  flex: 1;
  min-width: 0;
}

.tour-text h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tour-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.tour-img {
  flex: 0 0 auto;
  min-width: 0;
}

.tour-img img {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.tour-demo {
  text-align: center;
  margin-top: 20px;
  padding-top: 60px;
  border-top: 1px solid #e8e8e8;
}

.tour-demo a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  border-bottom: none;
  padding: 14px 32px;
  border: 1px solid #000;
  border-radius: 6px;
  color: #000;
  transition: all 0.2s;
}

.tour-demo a:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  img {
    max-width: 90vw;
  }

  .plans-container {
    grid-template-columns: 1fr;
    padding: 24px 20px 40px;
  }

  .plan + .plan {
    border-left: 1px solid #000;
    border-top: none;
  }

  .logo {
    width: clamp(80px, 45vw, 240px);
  }

  .tour-section,
  .tour-section--reverse {
    flex-direction: column;
    gap: 20px;
  }

  .tour-section .tour-text {
    order: -1;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 20px;
  }

  .footer-left {
    flex-direction: column;
    gap: 24px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-company {
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo {
    width: 200px;
  }

  .footer-world {
    width: clamp(60px, 20vw, 100px);
  }
}
