/* ============================================================
   ACRONATIONTLV — home.css (Homepage v2, CRO redesign 2026-09)
   Loaded AFTER styles.css, homepage only.
   One conversion color: --wa-green. Secondary = text/outline.
   ============================================================ */

/* ── HERO overrides ──────────────────────────────────────── */
.home-v2 .hero {
  height: auto;
  min-height: 0;
  max-height: none;
  padding: calc(var(--nav-h) + 48px) 0 96px;
}
.home-v2 .hero-content {
  padding-top: 0;
  max-width: 1240px;
}
.home-v2 .hero-title {
  font-size: clamp(2.6rem, 4.6vw, 4rem); /* ~56-64px desktop */
  margin-bottom: 18px;
  max-width: 14ch;
}
.home-v2 .hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.2rem, 1.9vw, 1.55rem); /* 22-26px */
  font-weight: 400;
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.home-v2 .hero-support {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem); /* 17-19px */
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.home-v2 .hero-btns {
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}
.btn-hero {
  min-height: 54px;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 600;
}
.hero-secondary-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 12px 4px;
}
.hero-secondary-link:hover { color: #fff; }
.home-v2 .hero-trust {
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.home-v2 .hero-overlay {
  background:
    linear-gradient(to left, rgba(10,25,32,0.72) 0%, rgba(10,25,32,0.45) 45%, rgba(10,25,32,0.25) 100%),
    linear-gradient(to top, rgba(10,25,32,0.6) 0%, transparent 40%);
}
.home-v2 .hero-shape { height: 90px; }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip { padding: 10px 0 0; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 36px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26,156,176,0.12);
}
.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 400;
}
.trust-list li > span:first-child {
  color: var(--terra);
  font-weight: 700;
}
.trust-g {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.trust-g:hover { color: var(--terra); }

/* ── Section rhythm (shared) ─────────────────────────────── */
.routes, .beginner, .reviews, .steps, .svc, .gallery2 { padding: 72px 0; }
.home-v2 .section-head { margin-bottom: 48px; }
.home-v2 .section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }

/* ── ROUTES ──────────────────────────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.route-card {
  background: #fff;
  border: 1px solid rgba(26,156,176,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,156,176,0.3);
}
.route-link-wrap { display: flex; flex-direction: column; flex: 1; }
.route-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ice);
}
.route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.route-card:hover .route-img img { transform: scale(1.04); }
.route-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.route-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--charcoal);
}
.route-body p {
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.route-cta {
  color: var(--terra);
  font-weight: 600;
  font-size: 0.94rem;
  margin-top: 4px;
}
.route-sub-link {
  display: block;
  padding: 0 20px 16px;
  font-size: 0.85rem;
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
}
.route-sub-link:hover { opacity: 1; color: var(--terra); }

.routes-fallback {
  text-align: center;
  margin-top: 40px;
}
.routes-fallback p {
  font-size: 0.98rem;
  margin-bottom: 14px;
}

/* ── BEGINNER (first time) ───────────────────────────────── */
.beginner { background: var(--cream); }
.beginner-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.beginner-img img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.beginner-text { max-width: 580px; }
.beginner-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  margin-bottom: 16px;
  color: var(--charcoal);
}
.beginner-text > p { margin-bottom: 22px; }
.beginner-points {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.beginner-points li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--brown);
  font-size: 1rem;
}
.beginner-points li > span:first-child { color: var(--terra); font-weight: 700; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rev-more { text-align: center; margin-top: 24px; }
.rev-more a,
.gallery2-cta a,
.faq-cta a,
.definition-links a {
  color: var(--terra);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
  padding: 10px 6px;
}
.rev-cta {
  text-align: center;
  margin-top: 32px;
}
.rev-cta p { margin-bottom: 14px; font-size: 1.02rem; }

/* ── STEPS ───────────────────────────────────────────────── */
.steps { background: var(--ice); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  counter-reset: none;
}
.step-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26,156,176,0.1);
  color: var(--terra);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.step-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.step-card p { font-size: 0.94rem; }
.steps-cta { text-align: center; margin-top: 36px; }

/* ── SERVICES (grouped) ──────────────────────────────────── */
.svc-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}
.svc-group {
  background: #fff;
  border: 1px solid rgba(26,156,176,0.1);
  border-radius: var(--r-lg);
  padding: 6px 22px 18px;
  box-shadow: var(--shadow-sm);
}
.svc-group summary {
  cursor: default;
  list-style: none;
  padding: 16px 0 10px;
}
.svc-group summary::-webkit-details-marker { display: none; }
.svc-group summary h3 {
  display: inline;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.svc-group ul { display: grid; gap: 2px; }
.svc-group ul a {
  display: block;
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--brown);
  border-radius: 8px;
  transition: color 0.15s ease;
}
.svc-group ul a:hover { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }

/* ── GALLERY (grid, no carousel) ─────────────────────────── */
.gallery2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.g2-item {
  border-radius: var(--r);
  overflow: hidden;
  margin: 0;
}
.g2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.g2-item:hover img { transform: scale(1.03); }
.gallery2-cta { text-align: center; margin-top: 28px; }

/* ── DEFINITION (SEO block) ──────────────────────────────── */
.home-v2 .definition-block { padding: 64px 0 40px; }
.definition-links { margin-top: 18px; }
.definition-links-inline {
  margin-top: 8px;
  font-size: 0.95rem;
}
.definition-links-inline a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 2px;
  display: inline-block;
}
.definition-links-inline a:hover { color: var(--terra); }

/* ── FAQ extras ──────────────────────────────────────────── */
.faq-cta { text-align: center; margin-top: 28px; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 110px 24px;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,25,32,0.62), rgba(10,25,32,0.72));
}
.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 16px;
}
.final-cta-content > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  margin-bottom: 30px;
}
.btn-final {
  min-height: 56px;
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 600;
}
.final-cta-micro {
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

/* ── STICKY MOBILE CTA ───────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,248,240,0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 24px rgba(10,25,32,0.12);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  font-size: 1.02rem;
  font-weight: 600;
}
body.menu-open .sticky-cta { transform: translateY(110%); }

/* Hide the old floating FAB on the new homepage (replaced by sticky bar) */
.home-v2 .wa-fab { display: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-groups { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-third { display: none; }
  .beginner-inner { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .home-v2 .hero {
    padding: calc(var(--nav-h) + 28px) 0 64px;
    min-height: calc(100svh - 60px);
    display: flex;
    align-items: flex-end;
  }
  .home-v2 .hero-title { font-size: clamp(2.4rem, 10.5vw, 2.65rem); line-height: 1.05; }
  .home-v2 .hero-sub { font-size: 1.08rem; }
  .home-v2 .hero-support { font-size: 1rem; margin-bottom: 22px; }
  .home-v2 .hero-btns { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-hero { width: 100%; justify-content: center; min-height: 56px; }
  .hero-secondary-link { text-align: center; }
  .home-v2 .hero-trust { font-size: 0.82rem; text-align: center; }
  .home-v2 .hero-shape { height: 56px; }
  .home-v2 .hero-overlay {
    background: linear-gradient(to top, rgba(10,25,32,0.85) 0%, rgba(10,25,32,0.55) 55%, rgba(10,25,32,0.3) 100%);
  }

  /* Hide language toggle in the bar; English lives in the drawer */
  .home-v2 .lang-toggle { display: none; }

  .trust-list { gap: 8px 0; display: grid; grid-template-columns: 1fr 1fr; }
  .trust-list li { font-size: 0.88rem; }

  .routes, .beginner, .reviews, .steps, .svc, .gallery2 { padding: 56px 0; }
  .home-v2 .section-head { margin-bottom: 32px; }

  .routes-grid { gap: 12px; }
  .route-img { aspect-ratio: 16 / 10; }
  .route-body { padding: 12px 14px 14px; gap: 6px; }
  .route-body h3 { font-size: 1.02rem; }
  .route-body p { font-size: 0.92rem; line-height: 1.5; }
  .route-cta { font-size: 0.9rem; }
  .route-sub-link { padding: 0 14px 12px; }

  .beginner-inner { grid-template-columns: 1fr; gap: 28px; }
  .beginner-img img { max-height: 340px; }
  .beginner-text .btn { width: 100%; justify-content: center; }

  .rev-grid { grid-template-columns: 1fr; gap: 16px; }
  .rev-third { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { display: grid; grid-template-columns: 44px 1fr; text-align: start; column-gap: 16px; padding: 20px; }
  .step-n { grid-row: 1 / 3; margin-bottom: 0; }
  .steps-cta .btn { width: 100%; justify-content: center; }

  /* Services become an accordion (JS closes all but the first) */
  .svc-groups { grid-template-columns: 1fr; gap: 12px; }
  .svc-group { padding: 2px 18px 8px; }
  .svc-group summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 8px 0;
  }
  .svc-group summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--terra);
    font-weight: 400;
  }
  .svc-group[open] summary::after { content: "−"; }
  .svc-group ul { padding-bottom: 10px; }
  .svc-group ul a { min-height: 44px; display: flex; align-items: center; }

  .gallery2-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
  .g2-desktop { display: none; }

  .final-cta { padding: 80px 20px; }
  .btn-final { width: 100%; max-width: 420px; justify-content: center; }

  .sticky-cta { display: block; }

  /* Keep the NagishLi accessibility button above the sticky CTA bar */
  .home-v2 #NagishLiBar { bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important; }

  /* Leave room above sticky bar + NagishLi */
  .footer-bottom { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 380px) {
  .routes-grid { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr 1fr; }
}

/* Desktop: services groups always open, summaries not clickable */
@media (min-width: 769px) {
  .svc-group summary { pointer-events: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
  .route-card, .route-img img, .g2-item img { transition: none; }
}

/* ============================================================
   v2 — THREE WORLDS (brand flagship), footer statement
   ============================================================ */

/* ── THREE WORLDS ────────────────────────────────────────── */
.worlds {
  background: var(--charcoal);
  color: #fff;
  padding: 96px 0 72px;
}
.worlds-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.worlds-head h2 {
  color: #fff;
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.worlds-line { display: block; }
.worlds-head p {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}
.worlds-panels {
  display: grid;
  gap: 0;
}
.world-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.world-panel--flip .world-img { order: 2; }
.world-panel--flip .world-text { order: 1; }
.world-img {
  overflow: hidden;
  height: 520px;
}
.world-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.6s var(--ease-out);
}
.world-panel:hover .world-img img { transform: scale(1.03); }
.world-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(32px, 6vw, 96px);
}
.world-eyebrow {
  color: var(--terra-light);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}
.world-text h3 {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.world-copy {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 22px;
}
.world-cta {
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--terra-light);
  align-self: flex-start;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.world-cta:hover { color: var(--terra-light); }

.world-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
}

.world-img-link { position: relative; display: block; }
.world-img-tag {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: rgba(255,255,255,0.94);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(10,25,32,0.25);
  transition: transform 0.25s var(--ease-out), background 0.25s ease;
}
.world-img-link:hover .world-img-tag {
  transform: translateY(-3px);
  background: #fff;
}
@media (max-width: 768px) {
  .world-img-tag { bottom: 16px; right: 16px; font-size: 0.9rem; padding: 12px 18px; }
}

.worlds-bridge {
  text-align: center;
  padding-top: 72px;
}
.worlds-bridge-title {
  font-family: var(--font-head);
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 12px;
}
.worlds-bridge-copy {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── FINAL CTA sub line ──────────────────────────────────── */
.final-cta-sub {
  font-family: var(--font-head);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 28px;
}

/* ── Worlds responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .world-text { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .worlds { padding: 64px 0 56px; }
  .worlds-head { margin-bottom: 40px; padding: 0 20px; }
  .world-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .world-panel--flip .world-img { order: 0; }
  .world-panel--flip .world-text { order: 1; }
  .world-img {
    height: 62vw;
    max-height: 420px;
    min-height: 0;
  }
  .world-text {
    padding: 26px 20px 40px;
  }
  .world-text h3 { font-size: 2.2rem; }
  .world-copy { font-size: 0.98rem; margin-bottom: 16px; }
  .worlds-bridge { padding-top: 48px; }
}
