/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  animation: navIn .55s cubic-bezier(.22, 1, .36, 1) both;
}

body.nav-open {
  overflow: hidden;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.nav-logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a {
  font-size: .84rem;
  color: var(--fg-muted);
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  font-size: .82rem !important;
}

/* Theme Switcher */
.theme-switcher {
  display: flex;
  background: var(--bg-alt);
  padding: 4px;
  border-radius: 30px;
  gap: 2px;
}

.theme-switcher button {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--fg-muted);
  transition: all .2s;
}

.theme-switcher button:hover {
  color: var(--teal);
}

.theme-switcher button.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(61, 122, 112, 0.2);
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* ── HERO ────────────────────────────────────── */
#hero {
  width: 100%;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero-heading em {
  font-style: italic;
  color: var(--teal);
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 8px;
  line-height: 1.3;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin: 24px 0 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  font-size: .82rem;
  color: var(--fg-muted);
}

.hero-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── SPLIT / ABOUT ───────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
  display: block;
}

/* ── ACCORDION ───────────────────────────────── */
.method-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  border: 1px solid var(--border-lt);
  overflow: hidden;
  transition: border-color .3s;
}

.accordion-item:hover {
  border-color: rgba(61, 122, 112, .3);
}

.accordion-item.active {
  border-left: 4px solid var(--teal);
  border-color: var(--border);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.acc-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--teal);
  opacity: .5;
  line-height: 1;
  transition: opacity .3s;
}

.accordion-item.active .acc-num {
  opacity: 1;
}

.acc-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fg);
}

.acc-icon {
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  transition: transform .3s ease;
}

.accordion-item.active .acc-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.acc-inner {
  padding: 0 32px 32px 84px;
}

.acc-inner p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0 0 8px;
}

/* ── OFFERS ──────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  box-shadow: 0 4px 24px rgba(28, 28, 26, .06);
  transform: translateY(-3px);
}

.offer-card.popular {
  border-color: var(--teal);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--teal);
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 16px 0 16px;
}

.offer-card-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.offer-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}

.offer-price-block {
  margin: 18px 0;
}

.offer-price {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 500;
  color: var(--teal);
}

.offer-price-note {
  font-size: .82rem;
  color: var(--fg-muted);
}

.offer-desc {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.offer-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.4, 0, .2, 1), opacity .5s ease;
  opacity: 0;
}

.offer-details.expanded {
  opacity: 1;
  margin-top: 15px;
}

.offer-expand-btn {
  background: none;
  border: none;
  color: var(--teal);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px dashed var(--teal);
}

.offer-expand-btn svg {
  transition: transform .3s ease;
}

.offer-expand-btn.expanded svg {
  transform: rotate(180deg);
}

.offer-bottom {
  margin-top: auto;
}

.offer-for {
  font-size: .82rem;
  color: var(--fg-muted);
  margin: 24px 0 20px;
  padding: 12px 16px;
  background: var(--teal-lt);
  border-radius: var(--radius);
}

.offer-for strong {
  color: var(--teal);
  font-weight: 500;
}

.offer-cta {
  padding-top: 0;
}

/* ── RESOURCES ───────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.res-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.res-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.res-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  min-height: 2.6rem;
}

.res-body {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.res-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.res-list li {
  font-size: .9rem;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-alt);
  line-height: 1.5;
}

.res-list li:last-child {
  border-bottom: none;
}

.res-list li strong {
  color: var(--teal);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.res-coming {
  margin-top: auto;
  border-top: 1px solid rgba(28, 28, 26, .08);
  padding-top: 16px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testi-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 24px;
  margin-top: 56px;
  padding-bottom: 24px;
}

.testi-grid::-webkit-scrollbar {
  height: 8px;
}

.testi-grid::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: 4px;
}

.testi-grid::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  min-width: min(340px, 85vw);
  max-width: 400px;
  flex: 0 0 min(340px, 85vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}

.testi-source {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.testi-quote-wrap {
  margin: 0;
  flex: 1;
}

.testi-quote {
  font-family: var(--sans);
  font-size: .98rem;
  color: var(--fg);
  line-height: 1.72;
  margin: 0;
}

/* Facebook-style recommendations */
.testi-card--facebook {
  border-top: 3px solid #1877f2;
}

.testi-card--facebook .testi-quote-wrap {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 18px 20px;
}

/* WhatsApp-style bubbles */
.testi-card--whatsapp .testi-quote-wrap {
  background: #e7f5ef;
  border-radius: 18px 18px 18px 6px;
  padding: 16px 18px;
  border: 1px solid rgba(61, 122, 112, .12);
}
.testi-card--whatsapp .testi-quote {
  color: #10201c;
}

[data-theme="dark"] .testi-card--whatsapp .testi-quote-wrap {
  background: #1e2e28;
  border-color: rgba(255, 255, 255, .08);
}
[data-theme="dark"] .testi-card--whatsapp .testi-quote {
  color: #e5e7eb;
}

/* iMessage-style bubbles */
.testi-card--imessage .testi-quote-wrap {
  background: #ececee;
  border-radius: 18px 18px 6px 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, .06);
}
.testi-card--imessage .testi-quote {
  color: #1b1b1d;
}

[data-theme="dark"] .testi-card--imessage .testi-quote-wrap {
  background: #2c2c2e;
  border-color: rgba(255, 255, 255, .08);
}
[data-theme="dark"] .testi-card--imessage .testi-quote {
  color: #e5e7eb;
}

.testi-author {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E0DFDB;
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--teal);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.testi-name {
  font-size: .95rem;
  font-weight: 500;
  color: var(--fg);
}

/* ── CONTACT ─────────────────────────────────── */
#contact {
  padding-top: 88px;
  padding-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.contact-info-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--teal-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FORMS ───────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  position: relative;
}

.form-field label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--fg);
}

.form-field input,
.form-field textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--fg);
  transition: border-color .2s;
  resize: none;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
}

.form-field input.invalid,
.form-field textarea.invalid {
  border-color: var(--error) !important;
}

.form-field textarea {
  min-height: 104px;
}

.error-msg {
  color: var(--error);
  font-size: .8rem;
  display: none;
  margin-top: 2px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  position: relative;
}

.checkbox-group-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-group input {
  margin-top: 3px;
  accent-color: var(--teal);
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: .85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-group input.invalid {
  outline: 1px solid var(--error);
  outline-offset: 2px;
}

/* ── MODAL ───────────────────────────────────── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--card);
  width: 100%;
  max-width: 860px;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  transform: translateY(20px);
  transition: transform .3s ease;
  box-shadow: var(--shadow);
  display: flex;
  gap: 48px;
  align-items: center;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--fg-muted);
  transition: color .2s;
  line-height: 1;
  z-index: 10;
}

.modal-close:hover {
  color: var(--teal);
}

.modal-img-col {
  flex: 0 0 40%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.modal-img-col img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-form-col {
  flex: 1;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  padding: 48px 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--fg);
}

.footer-logo span {
  color: var(--teal);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: .85rem;
  color: var(--fg-muted);
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-copy {
  font-size: .78rem;
  opacity: .4;
}

/* ── BLOG ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.blog-card:hover {
  box-shadow: 0 4px 24px rgba(28, 28, 26, .08);
  transform: translateY(-3px);
}

.blog-card-date {
  font-size: .78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--fg);
}

.blog-card-excerpt {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--teal);
  border-bottom: 1px solid rgba(61, 122, 112, .3);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color .2s;
}

.blog-card-link:hover {
  border-color: var(--teal);
}

.blog-post-header {
  max-width: 740px;
  margin: 0 auto;
  padding: 80px 32px 48px;
}

.blog-post-meta {
  font-size: .82rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.blog-post-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.blog-post-body h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 48px 0 16px;
  color: var(--fg);
}

.blog-post-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 32px 0 12px;
  color: var(--fg);
}

.blog-post-body p {
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.blog-post-body ul,
.blog-post-body ol {
  color: var(--fg-muted);
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.blog-post-body a {
  color: var(--teal);
  border-bottom: 1px solid rgba(61, 122, 112, .3);
}

/* ── POLICY PAGE ─────────────────────────────── */
.policy-content h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--teal);
  margin: 40px 0 16px;
  font-weight: 500;
}

.policy-content p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.8;
}

.policy-content ul {
  color: var(--fg-muted);
  margin-bottom: 24px;
  padding-left: 24px;
  font-size: .95rem;
  line-height: 1.8;
}

.policy-content li {
  margin-bottom: 8px;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .offer-grid,
  .resources-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100dvh;
    background: var(--bg);
    padding: 96px 24px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-burger {
    display: flex;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .modal-box {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    max-width: 480px;
  }

  .modal-img-col {
    display: none;
  }
}

@media (max-width: 600px) {
  .accordion-header {
    padding: 20px;
  }

  .acc-title-wrap {
    gap: 16px;
  }

  .acc-inner {
    padding: 0 20px 24px 20px;
  }

  .testi-card {
    flex: 0 0 85%;
  }

  .trust-strip-inner {
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .trust-strip-label {
    width: 100%;
  }

  footer {
    padding: 24px 16px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 0;
  }

  .footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    font-size: .55rem;
    line-height: 1;
  }

  .footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin: 0;
  }

  .footer-links a {
    font-size: inherit;
    line-height: 1;
  }

  .footer-inner .footer-copy {
    font-size: inherit;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.7;
    margin: 0;
    line-height: 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 20px;
  }

  .footer-bottom .footer-copy {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    font-size: .72rem;
    line-height: 1.4;
    opacity: 0.7;
    margin: 0;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .copy-extra {
    display: none;
  }

  .footer-logo {
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
    margin: 0;
  }

  .testi-grid::-webkit-scrollbar {
    display: none;
  }

  .testi-grid {
    scroll-snap-type: x mandatory;
  }

  .testi-card {
    scroll-snap-align: center;
  }
}

/* ═══════════════════════════════════════════════
   UX IMPROVEMENTS — 5 ZMIAN
   ═══════════════════════════════════════════════ */

/* ── 1. TRUST STRIP (under hero) ────────────────── */
.trust-strip-wrap {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-lt);
  padding: 20px 32px;
}

.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-strip-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: .78rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.trust-stars {
  color: #E9A24B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.trust-strip-cards {
  display: flex;
  gap: 16px;
  flex: 1;
  overflow: hidden;
}

.trust-card {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
}

.trust-card-quote {
  font-size: .88rem;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 8px;
  font-style: italic;
}

.trust-card-author {
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal);
}

.trust-strip-more {
  font-size: .82rem;
  color: var(--teal);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid rgba(61, 122, 112, .3);
  padding-bottom: 1px;
  flex-shrink: 0;
  transition: border-color .2s;
}

.trust-strip-more:hover {
  border-color: var(--teal);
}

/* simplified trust strip (no testimonials) */
.trust-strip-simple {
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  font-size: .88rem;
  color: var(--fg-muted);
}
.trust-strip-item {
  font-weight: 500;
  color: var(--fg);
}
.trust-strip-sep {
  color: var(--border);
}
@media (max-width: 640px) {
  .trust-strip-sep { display: none; }
  .trust-strip-simple { flex-direction: column; gap: 6px; }
}

/* ── 2. POPULAR CARD — elevated ─────────────────── */
.offer-card.popular-elevated {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(61, 122, 112, .18);
  z-index: 1;
}

.offer-card.popular-elevated:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 48px rgba(61, 122, 112, .22);
}

.popular-header {
  background: var(--teal-lt);
  margin: -36px -36px 20px -36px;
  padding: 10px 36px 10px;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(61, 122, 112, .15);
}

/* ── 3. NOTIFY FORM (resources) ─────────────────── */
.notify-form {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-lt);
}

.notify-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.notify-row {
  display: flex;
  gap: 8px;
}

.notify-input {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--fg);
  outline: none;
  transition: border-color .2s;
}

.notify-input:focus {
  border-color: var(--teal);
}

.notify-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}

.notify-btn:hover {
  background: var(--teal-dk);
}

.notify-ok {
  font-size: .85rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 8px;
}

/* ── 4. MOBILE STICKY CTA ────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--teal);
  color: #fff;
  padding: 14px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(28, 28, 26, .15);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-text {
  font-size: .82rem;
  opacity: .9;
}

.mobile-sticky-btn {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s;
  border: 1px solid rgba(255, 255, 255, .3);
}

.mobile-sticky-btn:hover {
  opacity: .85;
}

@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: flex;
  }

  /* Add bottom padding so sticky bar doesn't cover contact form */
  body {
    padding-bottom: 68px;
  }

  /* Trust strip — stack on mobile */
  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-strip-cards {
    flex-direction: column;
    width: 100%;
  }

  .trust-card:nth-child(3) {
    display: none;
  }

  .trust-strip-more {
    align-self: flex-end;
  }
}

@media (max-width: 600px) {
  .popular-header {
    margin: -36px -24px 20px -24px;
    padding: 10px 24px;
  }
}

/* ═══════════════════════════════════════════════
   FAZA 1 — NOWE SEKCJE
   ═══════════════════════════════════════════════ */

/* ── HERO BULLETS ───────────────────────────── */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--fg-muted);
}

.hero-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── PROBLEM LIST ───────────────────────────── */
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
}

.problem-list li {
  font-size: .95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  padding: 12px 0 12px 18px;
  border-left: 3px solid var(--teal);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}

.problem-card:hover {
  box-shadow: 0 4px 20px rgba(28, 28, 26, .06);
  transform: translateY(-2px);
}

.problem-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── SPEAKING ───────────────────────────────── */
.speaking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.speaking-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .97rem;
  color: var(--fg);
  line-height: 1.4;
}

.speaking-list li:first-child {
  border-top: 1px solid var(--border);
}

.speaking-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-lt);
  border: 1.5px solid rgba(61,122,112,.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%233d7a70' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.speaking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.speaking-chip {
  background: var(--teal-lt);
  color: var(--teal-dk);
  border: 1px solid rgba(61, 122, 112, .2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 500;
}

/* ── BETWEEN LESSONS ────────────────────────── */
.between-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.between-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}

.between-card:hover {
  box-shadow: 0 4px 20px rgba(61, 122, 112, .1);
  transform: translateY(-3px);
  border-color: rgba(61, 122, 112, .3);
}

.between-card--wide {
  grid-column: 1 / -1;
  max-width: 560px;
  justify-self: center;
  width: 100%;
}

.between-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}

.between-body {
  font-size: .88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── LINGOLOGY APP ──────────────────────────── */
.app-section-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 64px;
  align-items: center;
}

.app-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.app-cta-note {
  width: 100%;
  margin: 14px 0 0;
  font-size: .82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.app-cta-note a {
  color: var(--teal);
  border-bottom: 1px solid rgba(61, 122, 112, .35);
}

.app-cta-row--on-dark {
  justify-content: center;
}

.btn-on-dark-primary {
  background: #fff !important;
  color: var(--teal) !important;
  font-weight: 500;
  border: none !important;
}

.btn-on-dark-primary:hover {
  background: #f0f7f5 !important;
}

.btn-on-dark-secondary {
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, .4) !important;
}

.btn-on-dark-secondary:hover {
  background: rgba(255, 255, 255, .22) !important;
}

.app-cta-note--on-dark,
.app-cta-row--on-dark + .app-cta-note--on-dark {
  color: rgba(255, 255, 255, .65);
  text-align: center;
}

.app-cta-note--on-dark a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .45);
}

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-feature-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.app-feature-tile:hover {
  border-color: rgba(61, 122, 112, .35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
  transform: translateY(-2px);
}

.app-feature-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-bottom: 14px;
}

.app-feature-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--fg);
  margin: 0 0 10px;
  line-height: 1.25;
}

.app-feature-desc {
  font-size: .88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
}

/* App preview — real screenshot in device frame */
.app-showcase {
  display: flex;
  justify-content: center;
}

.app-device {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.app-device:hover {
  transform: translateY(-6px);
}

.app-device-frame {
  background: #f4f6f5;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(45, 96, 88, .04),
    0 24px 56px rgba(45, 96, 88, .14),
    0 0 0 1px rgba(255, 255, 255, .6) inset;
}

.app-device-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #ebece8;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.app-device-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d5db;
}

.app-device-dot:first-child { background: #f87171; }
.app-device-dot:nth-child(2) { background: #fbbf24; }
.app-device-dot:nth-child(3) { background: #4ade80; }

.app-device-url {
  flex: 1;
  text-align: center;
  font-size: .68rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: .02em;
}

.app-device-screen {
  background: #f5f5f0;
  line-height: 0;
  max-height: min(72vh, 620px);
  overflow: hidden;
  position: relative;
}

.app-device-screen::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(to top, rgba(245, 245, 240, .95), transparent);
  pointer-events: none;
}

.app-device-screen img {
  width: calc(100% + 14px);
  max-width: none;
  height: auto;
  display: block;
  margin: -7px 0 0 -7px;
  object-fit: cover;
  object-position: top center;
}

.app-device-cta {
  display: block;
  text-align: center;
  padding: 14px 16px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-lt);
  border: 1px solid rgba(61, 122, 112, .2);
  border-top: none;
  border-radius: 0 0 22px 22px;
  margin-top: -1px;
  transition: background .2s, color .2s;
}

.app-device:hover .app-device-cta {
  background: var(--teal);
  color: #fff;
}

.app-flow-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}

.app-flow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: appflow;
}

.app-flow-steps li {
  position: relative;
  padding-left: 36px;
  font-size: .95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.app-flow-steps li::before {
  counter-increment: appflow;
  content: counter(appflow);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-lt);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-teacher-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}

.learn-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.learn-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.learn-check {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* App mock cards */
.app-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.app-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.app-card-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--fg);
  flex: 1;
}
.app-card-badge {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--teal-lt);
  color: var(--teal);
}
.app-card-badge.new {
  background: #fef3c7;
  color: #b45309;
}
.app-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-plan-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--fg-muted);
}
.app-plan-item.done { color: var(--fg); text-decoration: line-through; opacity: .55; }
.app-plan-item.active { color: var(--teal); font-weight: 500; }
.app-plan-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.app-plan-dot.done { background: var(--teal); opacity: .5; }
.app-plan-dot.active { background: var(--teal); box-shadow: 0 0 0 3px var(--teal-lt); }
.app-plan-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.app-plan-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.app-plan-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
}
.app-plan-pct {
  font-size: .75rem;
  color: var(--fg-muted);
  white-space: nowrap;
}
.app-phrases-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-phrases-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: var(--bg-alt);
  border-radius: 8px;
}
.app-phrase-en {
  font-size: .82rem;
  font-weight: 500;
  color: var(--fg);
}
.app-phrase-pl {
  font-size: .78rem;
  color: var(--fg-muted);
}

/* ── DIAGNOSIS ──────────────────────────────── */
.blockers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blocker-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 16px 16px 0;
  padding: 12px 16px;
  font-size: .92rem;
  color: var(--fg-muted);
}

/* ── HOW IT WORKS ───────────────────────────── */
.steps-timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  counter-reset: timeline-step;
}

.step-timeline-item {
  position: relative;
  padding: 0 0 36px 52px;
  border-left: 2px solid var(--border);
}

.step-timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.step-timeline-item::before {
  counter-increment: timeline-step;
  content: counter(timeline-step);
  position: absolute;
  left: -19px;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

.step-timeline-item .step-title {
  margin-bottom: 8px;
}

.step-timeline-item .step-body {
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--fg);
}

.step-body {
  font-size: .9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FOR WHOM ───────────────────────────────── */
.for-whom-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.for-whom-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.for-whom-icon {
  width: 32px;
  height: 32px;
  background: var(--teal-lt);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.for-whom-icon-no {
  background: rgba(179, 90, 90, .1);
  color: var(--error);
}

.for-whom-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.3;
}

.for-whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.for-whom-list li {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.for-whom-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── TESTS ──────────────────────────────────── */
.tests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.test-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.test-card-featured {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(61, 122, 112, .12);
}

.test-icon {
  margin-bottom: 4px;
}

.test-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}

.test-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fg);
}

.test-body {
  font-size: .92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex: 1;
}

/* ── FINAL CTA ──────────────────────────────── */
.final-cta-section {
  background:
    linear-gradient(rgba(45, 96, 88, .88), rgba(45, 96, 88, .92)),
    url('/img/marketing/study-laptop-evening.png') center / cover no-repeat;
  padding: var(--gap) 0;
}

.final-cta-section .tag {
  color: rgba(255, 255, 255, .7);
}

/* ── NAV DROPDOWN ───────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: .84rem;
  color: var(--fg-muted);
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color .2s;
}

.nav-dropdown-btn:hover {
  color: var(--teal);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 200;
}

.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .88rem;
  color: var(--fg-muted);
  transition: color .15s, background .15s;
}

.nav-dropdown-menu a:hover {
  color: var(--teal);
  background: var(--teal-lt);
}

/* ── FOOTER REDESIGN ────────────────────────── */
.footer-top {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
}

.footer-bottom {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: .78rem;
  color: var(--fg-muted);
  transition: color .2s;
}

.footer-legal-links a:hover {
  color: var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-col-brand .footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 16px;
  display: block;
}

.footer-col-brand .footer-logo span {
  color: var(--teal);
}

.footer-tagline {
  font-size: .88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-contact-info {
  font-size: .85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.footer-contact-info a {
  color: var(--teal);
  transition: opacity .2s;
}

.footer-contact-info a:hover {
  opacity: .8;
}

.footer-col-title {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 16px;
}

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

.footer-links-list a {
  font-size: .85rem;
  color: var(--fg-muted);
  transition: color .2s;
}

.footer-links-list a:hover {
  color: var(--teal);
}

.footer-summary {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-summary li {
  font-size: .82rem;
  color: var(--fg-muted);
  line-height: 1.55;
  padding-left: 12px;
  position: relative;
}

.footer-summary li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ── FORM IMPROVEMENTS ──────────────────────── */
.form-select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--fg);
  transition: border-color .2s;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: auto;
}

.form-select:focus {
  border-color: var(--teal);
}

.form-select.invalid {
  border-color: var(--error) !important;
}

.form-hint {
  font-size: .78rem;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* ── ABOUT SECTION ID ───────────────────────── */
#about {
  scroll-margin-top: 80px;
}
#about h2 { /* target the h2 directly in about for rename */
  /* kept as-is, styled by .heading */
}

/* ── RESPONSIVE — NEW SECTIONS ──────────────── */
@media (max-width: 1200px) {
  .nav-links {
    gap: 12px;
  }
  .nav-cta {
    padding: 8px 16px !important;
  }
}

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

  .between-card--wide {
    max-width: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .problem-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .speaking-layout,
  .learn-layout,
  .diagnosis-layout,
  .app-section-grid,
  .app-flow-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .app-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .for-whom-layout {
    grid-template-columns: 1fr !important;
  }
  .tests-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown-menu.open {
    transform: none;
  }
  .nav-dropdown-btn {
    font-size: 1rem;
    color: var(--fg-muted);
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .between-grid {
    grid-template-columns: 1fr;
  }
  .app-features-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-top {
    padding: 48px 0 32px;
  }
  .footer-bottom-inner {
    padding: 0 24px;
  }
}

/* ── BREADCRUMB ───────────────────────────────── */
.breadcrumb {
  position: sticky;
  top: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  z-index: 90;
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .85rem;
  color: var(--fg-muted);
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb-list li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--border);
}
.breadcrumb-list a {
  color: var(--teal);
  text-decoration: none;
}
.breadcrumb-list a:hover {
  text-decoration: underline;
}

/* ── SUBPAGE HERO ─────────────────────────────── */
.subpage-hero {
  padding-top: 64px;
  padding-bottom: 64px;
}
.subpage-hero-inner {
  max-width: 760px;
}

.subpage-hero-inner > .tag {
  margin-bottom: 16px;
}

.subpage-hero-inner > .heading {
  margin-top: 0;
}

.subpage-hero-inner > .divider {
  margin: 20px 0 28px;
}

.body-text--wide {
  max-width: none;
}

.speaking-layout .body-text,
.app-flow-grid .body-text {
  max-width: none;
}

/* ── SUMMARY LIST ─────────────────────────────── */
.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-list li {
  padding-left: 20px;
  position: relative;
  color: var(--fg-body);
  line-height: 1.6;
}
.summary-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 500;
}

/* ── CONTACT LAYOUT ───────────────────────────── */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
  }
  .learn-layout {
    grid-template-columns: 1fr !important;
  }
}

/* ── POPUPS ───────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-overlay[hidden] {
  display: none !important;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}
.popup-box {
  position: relative;
  z-index: 1;
  background: var(--bg, #fff);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 480px;
  width: calc(100% - 32px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-muted);
  padding: 4px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.popup-close:hover {
  color: var(--fg);
}
.popup-tag {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.popup-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--fg);
}
.popup-body {
  font-size: .95rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.popup-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.popup-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  color: var(--fg-muted);
  padding: 4px 0;
  text-decoration: underline;
}
.popup-dismiss:hover {
  color: var(--fg);
}

@media (max-width: 900px) {
  .popup-box {
    display: none;
  }
  .popup-sheet {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9001;
    border-radius: 16px 16px 0 0;
    padding: 28px 24px 32px;
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 901px) {
  .popup-sheet {
    display: block;
  }
}

/* ── FAQ HOME GRID ──────────────────────────── */
.faq-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-home-group-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.faq-home-group .method-accordion {
  max-width: none;
  margin: 0;
  gap: 8px;
}

.faq-home-group .accordion-item {
  box-shadow: none;
  border-radius: 10px;
}

.faq-home-group .accordion-header {
  padding: 14px 20px;
}

.faq-home-group .acc-inner {
  padding: 0 20px 16px;
}

@media (max-width: 860px) {
  .faq-home-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Back link — subpage navigation */
.back-link {
  display: block;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  margin-bottom: 20px;
  opacity: .75;
  transition: opacity .18s, gap .18s;
  letter-spacing: .01em;
}
.back-link:hover {
  opacity: 1;
  gap: 10px;
}
