/* home2.css — clean Tilda carbon copy */
/* Manrope font, black/white palette, same layout as Tilda export */

/* ========== HOMEPAGE-SPECIFIC ========== */
/* resets, box-sizing, font-family, smoothing — all handled by brand.css */
body.tildont-page {
  --floating-base-bottom: max(18px, calc(env(safe-area-inset-bottom, 0px) + 18px));
  --floating-right: max(18px, calc(env(safe-area-inset-right, 0px) + 18px));
  --floating-cookie-offset: 170px;
}

/* iOS touch behavior — kill 300ms delay + blue flash */
.btn, .slider-arrow, .slider-dot, .faq-trigger, .burger,
.floating-btn, .floating-link, .cookie-btn, .cookie-close,
.nav-links a, .nav-lang-btn, .nav-lang-dropdown a,
.nav-lang-inline a, .footer-social a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* global rhythm: keep copy readable while trimming oversized vertical blocks */
:root {
  --space-section: clamp(56px, 7.2vw, 72px);
  --space-section-loose: clamp(60px, 8vw, 80px);
  --space-section-tight: clamp(44px, 6vw, 56px);
  --copy-regular: clamp(17px, 1.2vw, 19px);
  --copy-lead: clamp(18px, 1.6vw, 21px);
}

/* ========== LAYOUT ========== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.container-full { width: 100%; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 960px) { .container, .container-narrow { padding: 0 20px; } }

/* ========== TYPOGRAPHY ========== */
.title-xl { font-size: var(--text-hero); font-weight: 300; line-height: 0.95; letter-spacing: -0.04em; }
.title-lg { font-size: var(--text-display); font-weight: 300; line-height: 1.0; letter-spacing: -0.03em; }
.title-sm { font-size: var(--text-heading); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; }
.text-center { text-align: center; }


/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: inherit; font-size: 14px; font-weight: 600; line-height: 1; white-space: nowrap; border-radius: 100px; transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out; }
.btn-sm { height: 44px; padding: 0 30px; }
.btn-md { height: 60px; padding: 0 60px; font-size: 16px; }
.btn-primary { background: var(--ink); color: var(--white); border: none; }
.btn-primary:hover { opacity: 0.85; }
.btn-outline { background: transparent; color: var(--ink); border: 3px solid var(--ink); }
.btn-outline:hover { opacity: 0.7; }
.btn-white { background: var(--white); color: var(--ink); border: none; border-radius: 30px; }
.btn-white:hover { opacity: 0.85; }
.btn-outline-white { background: transparent; color: var(--white); border: 3px solid var(--white); }
.btn-outline-white:hover { opacity: 0.7; }
.btn-outline-sm { border-width: 1px; }

/* ========== NAV ========== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 990; background: var(--white); border-bottom: 1px solid transparent; min-height: 80px; transition: border-color 0.3s; }
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; min-height: 80px; padding: 0 40px; gap: 32px; }
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { width: 24px; height: auto; }
.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-links a { font-size: 16px; font-weight: 400; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--muted); }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-info { font-size: 14px; line-height: 1.4; }
.nav-info strong { font-weight: 700; }
.nav-buttons { display: flex; gap: 8px; }
.nav-lang { position: relative; }
.nav-lang-btn { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; text-transform: uppercase; background: none; border: none; cursor: pointer; }
.nav-lang-btn svg { width: 17px; height: 17px; }
.nav-lang-dropdown { display: none; position: absolute; top: 100%; right: 0; background: var(--white); border: 1px solid #eee; border-radius: 4px; box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15); padding: 8px 0; min-width: 60px; z-index: 10; }
.nav-lang-dropdown.open { display: block; }
.nav-lang-dropdown a { display: flex; align-items: center; min-height: 44px; padding: 0 16px; font-size: 14px; font-weight: 600; text-transform: uppercase; transition: color 0.3s ease; }
.nav-lang-dropdown a:hover { color: var(--muted); }
.nav-lang-dropdown a.active { opacity: 0.5; font-weight: 300; pointer-events: none; }

/* Mobile nav */
.nav-mobile-bar { display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 990; background: var(--white); border-bottom: 1px solid var(--border); min-height: 64px; padding: 0 20px; align-items: center; justify-content: space-between; }
.nav-mobile-bar .nav-logo img { width: 24px; }
.burger { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 44px; min-height: 44px; padding: 4px 0; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 989; overflow-y: auto; padding: 40px 20px; flex-direction: column; gap: 45px; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu .nav-links { flex-direction: column; gap: 20px; }
.nav-mobile-menu .nav-links a { font-size: 20px; min-height: 44px; display: flex; align-items: center; }
.nav-mobile-menu .nav-info { font-size: 16px; }
.nav-mobile-menu .nav-buttons { flex-direction: column; gap: 12px; }
.nav-mobile-menu .nav-buttons .btn { width: 100%; }
.nav-mobile-menu .nav-lang-inline { display: flex; gap: 16px; }
.nav-mobile-menu .nav-lang-inline a { font-size: 16px; font-weight: 600; text-transform: uppercase; min-height: 44px; display: flex; align-items: center; }
.nav-mobile-menu .nav-lang-inline a.active { opacity: 0.5; font-weight: 300; pointer-events: none; }

@media (max-width: 960px) {
  .nav { display: none; }
  .nav-mobile-bar { display: flex; }
}
@media (min-width: 961px) {
  .nav-mobile-bar, .nav-mobile-menu { display: none !important; }
}

/* ========== HERO ========== */
.hero { position: relative; height: calc(100vh - 80px); height: calc(100svh - 80px); min-height: 620px; overflow: hidden; margin-top: 80px; background: var(--dark-bg); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 38%; background-repeat: no-repeat; }
.hero-bg.desktop { display: block; background-image: url('https://img.monomo.space/tildont/hero.webp'); }
.hero-bg.mobile { display: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.16), rgba(0,0,0,0.52)); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 40px clamp(88px, 11vh, 128px); display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.hero-title { color: var(--white); max-width: 10ch; text-wrap: balance; }
.hero-cta { flex-shrink: 0; }

@media (max-width: 960px) {
  body.tildont-page {
    --floating-base-bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 12px));
    --floating-right: max(12px, calc(env(safe-area-inset-right, 0px) + 12px));
    --floating-cookie-offset: 184px;
  }

  .hero { margin-top: 64px; height: calc(100vh - 64px); height: calc(100svh - 64px); min-height: 540px; }
  .hero-content { padding: 0 20px clamp(102px, 17vw, 132px); flex-direction: column; gap: 18px; align-items: flex-start; justify-content: flex-end; }
  body.tildont-page.has-cookie-banner .hero-content { padding-bottom: clamp(176px, 24vw, 208px); }
  .hero-title { max-width: 9.5ch; }
}
@media (max-width: 480px) {
  .hero { min-height: 500px; }
  .hero-bg.desktop { display: none; background-image: none; }
  .hero-bg.mobile { display: block; background-position: center 28%; background-size: cover; background-repeat: no-repeat; background-image: url('https://img.monomo.space/tildont/hero-mobile.webp'); }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.56)); }
}

/* ========== TAGLINE ========== */
.tagline { background: var(--paper); padding: clamp(80px, 12vw, 140px) 40px; text-align: center; }
.tagline .title-lg { letter-spacing: -0.03em; }
.tagline p { font-size: inherit; line-height: inherit; }
@media (max-width: 960px) { .tagline { padding: clamp(56px, 10vw, 100px) 20px; } }
@media (max-width: 480px) { .tagline { padding: 48px 20px; } }

/* ========== SLIDERS ========== */
.slider-section { background: var(--dark-bg); position: relative; overflow: hidden; }
.slider-section.portrait { }
.slider-section.studio { }

/* Mobile slider (full-bleed, touch-swipe) */
.slider-mobile { display: none; height: 90vh; height: 86svh; min-height: 520px; position: relative; }
.slider-mobile .slides { display: flex; height: 100%; transition: transform 0.3s ease; }
.slider-mobile .slide { min-width: 100%; height: 100%; background-size: contain; background-position: center center; background-repeat: no-repeat; flex-shrink: 0; }

/* Desktop slider */
.slider-desktop { display: block; padding: 0; position: relative; }
.slider-desktop .slides-track { position: relative; max-width: none; margin: 0 auto; overflow: hidden; }
.slider-desktop .slides { display: flex; transition: transform 0.3s ease; }
.slider-desktop .slide { min-width: 100%; display: flex; justify-content: center; flex-shrink: 0; }
.slider-desktop .slide-img { width: 100%; height: 100vh; height: 100svh; min-height: 620px; background-size: contain; background-repeat: no-repeat; background-position: center center; }

/* Studio slider slides use contain (png images with transparent bg) */
.slider-section.studio .slider-desktop .slide-img { background-size: contain; }

/* Slider arrows */
.slider-arrows { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 20px; pointer-events: none; z-index: 5; }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: all; cursor: pointer; transition: opacity 0.2s; background: transparent; }
.slider-arrow:hover { opacity: 0.7; }
.slider-arrow.dark { background: transparent; }
.slider-arrow.light { background: transparent; }
.slider-arrow svg { width: 7px; display: block; }
.slider-arrow.prev svg { transform: rotate(180deg); }

/* Slider dots */
.slider-dots { display: flex; justify-content: center; gap: 8px; padding: 16px 0; position: relative; z-index: 5; margin-top: -48px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--white); background: transparent; cursor: pointer; transition: background 0.2s; position: relative; }
.slider-dot::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; }
.slider-dot.active { background: var(--white); }

/* all slides: full image, no cropping, no zooming — contain handles this globally */

@media (max-width: 480px) {
  .slider-mobile { min-height: 440px; }
  .slider-mobile { display: block; }
  .slider-desktop { display: none; }
}
@media (min-width: 481px) {
  .slider-mobile { display: none; }
  .slider-desktop { display: block; }
}

/* ========== BIG TEXT ========== */
.big-text { background: var(--paper); padding: clamp(72px, 10vw, 120px) 40px; text-align: left; }
.big-text .title-lg { font-weight: 400; letter-spacing: -0.05em; line-height: 1.1; max-width: 820px; }
.big-text p { font-size: inherit; line-height: inherit; }
.big-text .title-lg p:nth-child(4) { margin-top: 0.35em; }
@media (max-width: 960px) { .big-text { padding: clamp(56px, 9vw, 80px) 20px; } }
@media (max-width: 640px) { .big-text { text-align: center; } .big-text .title-lg { max-width: none; } }
@media (max-width: 480px) { .big-text { padding: 48px 20px; } }

/* ========== SECTION HEADINGS ========== */
.section-heading {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.section-heading::after {
  display: block;
  content: '';
  width: 32px;
  height: 1.5px;
  background: rgba(0,0,0,0.2);
  margin: 12px auto 0;
}

/* ========== COVER SECTIONS (what you get / why people come) ========== */
.cover-section { position: relative; }
.cover-section.short { min-height: clamp(520px, 68svh, 760px); }
.cover-section.tall { min-height: clamp(600px, 82svh, 920px); }
.cover-bg { position: absolute; inset: 0; background-size: cover; background-position: center 60%; }
.cover-section.tall .cover-bg { background-position: center 40%; }
.cover-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.82), rgba(0,0,0,0.35)); }
.cover-content { position: relative; z-index: 1; padding: 64px 40px 44px; display: flex; align-items: center; min-height: inherit; }
.cover-text { max-width: 66%; color: #fff; }
.cover-text .section-heading { font-size: clamp(26px, 4vw, 36px); font-weight: 300; letter-spacing: -0.02em; color: #fff; margin-bottom: 20px; }
.cover-text .section-heading::after { display: block; content: ''; width: 32px; height: 1.5px; background: rgba(255,255,255,0.3); margin: 10px 0 0; }
.cover-text .section-body { font-size: var(--copy-regular); line-height: 1.65; }
.cover-points { display: flex; flex-direction: column; gap: 18px; }
.cover-point { position: relative; padding-left: 32px; }
.cover-point::before { content: ''; position: absolute; left: 0; top: 13px; width: 20px; height: 1.5px; border-radius: 0; background: rgba(255,255,255,0.5); }
.cover-point strong { display: block; font-size: 20px; font-weight: 500; line-height: 1.32; letter-spacing: 0.005em; margin-bottom: 4px; }
.cover-point span { display: block; font-size: var(--copy-regular); line-height: 1.6; color: rgba(255,255,255,0.95); }
.cover-cta { margin-top: 28px; }

@media (max-width: 960px) {
  .cover-text .section-heading { font-size: clamp(24px, 3.5vw, 30px); }
  .cover-content { padding: 52px 20px 44px; }
  .cover-text { max-width: 100%; }
  .cover-points { gap: 16px; }
  .cover-point { padding-left: 28px; }
  .cover-point::before { top: 11px; width: 18px; }
  .cover-point strong { font-size: 17px; }
  .cover-point span { font-size: 16px; line-height: 1.58; }
  .cover-cta { margin-top: 24px; }
}

@media (max-width: 640px) {
  .cover-text .section-heading { font-size: 26px; }
  .cover-point strong { font-size: 16px; }
  .cover-point span { font-size: 15px; }
}

/* ========== STEPS (how it happens) ========== */
.steps-section { background: var(--surface); padding: var(--space-section) 0 var(--space-section-loose); position: relative; }
.steps-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); opacity: 0.025; background-size: 256px 256px; }
.steps-section .section-heading { text-align: center; margin-bottom: 48px; }
.steps-list { max-width: 960px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.step { display: flex; flex-direction: column; gap: 0; padding: 40px 32px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.07); }
.step:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.07); }
.step:nth-child(n+3) { border-bottom: none; }
.step-indicator { display: flex; flex-direction: column; align-items: flex-start; width: auto; flex-shrink: 0; }
.step-circle { width: auto; height: auto; border-radius: 0; border: none; background: transparent; display: flex; align-items: center; justify-content: flex-start; flex-shrink: 0; }
.step-number { color: rgba(0,0,0,0.07); font-size: 72px; font-weight: 300; line-height: 0.85; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.step-line { display: none; }
.step:last-child .step-line { display: none; }
.step-content { padding-top: 12px; }
.step-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; line-height: 1.32; letter-spacing: -0.02em; }
.step-desc { font-size: var(--copy-regular); line-height: 1.55; color: var(--muted); margin-bottom: 0; }

@media (max-width: 960px) {
  .steps-section { padding: var(--space-section-tight) 0 clamp(50px, 8vw, 58px); }
  .steps-section .section-heading { margin-bottom: 36px; }
  .steps-list { padding: 0 20px; }
  .step { padding: 28px 22px; }
  .step-title { font-size: 19px; }
  .step-desc { font-size: 16px; }
}
@media (max-width: 640px) {
  .steps-section {
    padding: 44px 0 46px;
  }

  .steps-section .section-heading {
    margin-bottom: 24px;
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .step {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 16px 14px;
    min-height: 0;
  }

  .step:nth-child(odd) {
    border-right: 1px solid rgba(0,0,0,0.08);
  }

  .step:nth-child(n+3) {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .step-content {
    padding-top: 6px;
  }

  .step-number {
    font-size: 38px;
  }

  .step-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 14px;
    line-height: 1.45;
  }
}

@media (max-width: 480px) {
  .steps-list {
    gap: 10px;
  }

  .step {
    padding: 14px 12px;
  }

  .step-number {
    font-size: 34px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-desc {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ========== PRICING ========== */
.pricing-section { background: var(--paper); padding: var(--space-section) 0 0; }
.pricing-section .section-heading { text-align: center; margin-bottom: 48px; }
.pricing-list { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; margin-bottom: 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.pricing-row:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.pricing-label { font-size: var(--copy-regular); font-weight: 400; color: var(--muted-light); line-height: 1.4; }
.pricing-price { font-size: clamp(36px, 5vw, 48px); font-weight: 600; letter-spacing: -0.03em; white-space: nowrap; line-height: 1; }
.pricing-cta { background: var(--paper); padding: 30px 0 0; text-align: center; }

@media (max-width: 960px) {
  .pricing-cta { padding-top: 28px; }
}

@media (max-width: 960px) {
  .pricing-section { padding: 50px 0 0; }
  .pricing-section .section-heading { margin-bottom: 36px; }
  .pricing-list { padding: 0 20px; }
}
@media (max-width: 480px) {
  .pricing-row { flex-direction: column; gap: 4px; align-items: flex-start; padding: 24px 0; }
  .pricing-label { font-size: 13px; }
  .pricing-price { font-size: 36px; }
}

/* ========== GIVE MONOMO ========== */
.gift-section {
  background: var(--white);
  padding: 150px 0;
}
.gift-section .section-heading {
  color: var(--ink);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.23;
  margin-bottom: 105px;
  text-align: center;
}
.gift-section .section-heading::after { display: none; }
.gift-grid {
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 0;
}
.gift-img,
.gift-text {
  flex: 0 0 50%;
  max-width: 50%;
}
.gift-img {
  padding-right: 20px;
}
.gift-img img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.gift-text {
  color: var(--ink);
  max-width: 50%;
  padding-left: 20px;
  text-align: center;
}
.gift-text .gift-desc {
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 560px;
}
.gift-cta-btn {
  border-radius: 30px;
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .gift-section .section-heading { font-size: 38px; }
  .gift-cta-btn {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media (max-width: 960px) {
  .gift-section { padding: 90px 0; }
  .gift-section .section-heading { margin-bottom: 60px; }
  .gift-grid { flex-direction: column; padding: 0 20px; }
  .gift-img,
  .gift-text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gift-img {
    margin: 0 0 45px;
    max-width: none;
    padding-right: 0;
  }
  .gift-text {
    padding-left: 0;
  }
  .gift-cta-btn { margin-top: 45px; }
}

@media (max-width: 640px) {
  .gift-section .section-heading { font-size: 30px; }
  .gift-cta-btn { width: 100%; }
}

/* ========== FAQ ========== */
.faq-section { background: var(--paper); padding: var(--space-section) 0; }
.faq-section .section-heading { text-align: center; margin-bottom: 34px; }
.faq-list { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.faq-item { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-trigger { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 24px 0; text-align: left; font-size: 21px; line-height: 1.4; font-weight: 400; letter-spacing: -0.01em; cursor: pointer; gap: 16px; }
.faq-icon { width: 20px; height: 20px; border-radius: 0; background: transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: #999; transition: transform 0.3s ease-in-out; }
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-trigger:hover .faq-icon { background: none; }
.faq-trigger:hover .faq-icon::before, .faq-trigger:hover .faq-icon::after { background: var(--ink); }
.faq-answer { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out; }
.faq-item.open .faq-answer { opacity: 1; }
.faq-answer-inner { padding: 0 0 24px; font-size: var(--copy-regular); line-height: 1.65; color: var(--muted); }

@media (max-width: 960px) {
  .faq-section { padding: 50px 0; }
  .faq-section .section-heading { margin-bottom: 28px; }
  .faq-list { padding: 0 20px; }
  .faq-trigger { padding: 20px 0; font-size: 18px; }
  .faq-icon { width: 18px; height: 18px; }
  .faq-icon::before { width: 12px; }
  .faq-icon::after { height: 12px; }
  .faq-answer-inner { font-size: 16px; line-height: 1.58; padding: 0 0 20px; }
}
@media (max-width: 640px) {
  .faq-trigger { padding-top: 18px; padding-bottom: 18px; font-size: 18px; }
}

/* ========== FINAL CTA ========== */
.final-cta { background: var(--white); color: var(--ink); padding: clamp(80px, 12vw, 140px) 0; text-align: center; position: relative; }
.final-cta .cta-title { margin-bottom: 40px; line-height: 1.15; }
.final-cta .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 960px) { .final-cta { padding: clamp(64px, 10vw, 100px) 0; } .final-cta .cta-title { margin-bottom: 32px; } }
@media (max-width: 640px) {
  .final-cta .cta-buttons { flex-direction: column; align-items: center; }
  .final-cta .cta-buttons .btn { width: 100%; }
}

/* ========== FOOTER ========== */
.footer { background: var(--dark-bg); color: var(--dark-text); padding: 64px 0; text-align: center; }
.footer-logo { margin: 0 auto 32px; max-width: 200px; }
.footer-logo img { width: 100%; }
.footer-text { font-size: var(--copy-regular); line-height: 1.65; margin-bottom: 30px; }
.footer-social { display: flex; justify-content: center; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.footer-social svg { width: 30px; height: 30px; }

/* ========== FLOATING WIDGET ========== */
.floating-widget { position: fixed; bottom: var(--floating-base-bottom, 50px); right: var(--floating-right, 65px); z-index: 900; transition: opacity 0.28s ease, transform 0.28s ease, bottom 0.28s ease; }
body.tildont-page .floating-widget { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(22px); }
body.tildont-page .floating-widget.is-active,
body.tildont-page .floating-widget.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
body.tildont-page.has-cookie-banner .floating-widget.is-active,
body.tildont-page.has-cookie-banner .floating-widget.open { bottom: var(--floating-cookie-offset); }
.floating-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; z-index: 2; box-shadow: 0 0 20px 0 rgba(0,0,0,0.3); animation: widget-pulse 2s ease-in-out infinite; }
@keyframes widget-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.floating-btn svg { fill: none; }
.floating-btn .icon-chat { display: block; }
.floating-btn .icon-close { display: none; }
.floating-widget.open .floating-btn .icon-chat { display: none; }
.floating-widget.open .floating-btn .icon-close { display: block; }
.floating-widget.open .floating-btn { animation: none; }

.floating-links { position: absolute; bottom: 70px; right: 0; display: flex; flex-direction: column; gap: 12px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.2s, visibility 0.2s, transform 0.2s; }
.floating-widget.open .floating-links { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-link { display: flex; align-items: center; gap: 10px; white-space: nowrap; text-decoration: none; }
.floating-link-label { font-size: 15px; font-weight: 600; color: var(--white); background: var(--ink); padding: 6px 12px; border-radius: 3px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.floating-link-icon { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.floating-link-icon svg { width: 50px; height: 50px; }
/* ========== COOKIE BANNER ========== */
.cookie-banner { position: fixed; left: 50%; right: auto; bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 12px)); z-index: 800; width: min(calc(100% - 24px), 420px); background: rgba(255,255,255,0.94); border: 1px solid rgba(22,22,22,0.08); border-radius: 18px; box-shadow: 0 24px 60px -28px rgba(0,0,0,0.35); padding: 14px 54px 14px 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-50%) translateY(12px); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease; backdrop-filter: blur(16px); }
.cookie-banner.show { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.cookie-banner .cookie-text { flex: 1 1 220px; font-size: 13px; font-weight: 600; line-height: 1.5; }
.cookie-banner .cookie-btn { background: var(--ink); color: var(--white); font-size: 12px; font-weight: 600; text-transform: uppercase; border-radius: 999px; padding: 0 16px; min-height: 44px; white-space: nowrap; flex-shrink: 0; }
.cookie-banner .cookie-close { position: absolute; top: 0; right: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.cookie-banner .cookie-close svg { width: 10px; height: 10px; }

@media (min-width: 961px) {
  .cookie-banner { left: 30px; bottom: 30px; width: min(420px, calc(100vw - 170px)); transform: translateY(12px); }
  .cookie-banner.show { transform: translateY(0); }
}

@media (max-width: 480px) {
  .cookie-banner { width: min(calc(100% - 20px), 360px); padding: 12px 48px 12px 14px; }
  .cookie-banner .cookie-text { font-size: 12px; }
  .cookie-banner .cookie-btn { min-height: 40px; padding: 0 14px; }
}

/* ========== ACCESSIBILITY ========== */

/* Focus-visible — editorial outline, adapts to light/dark context */
.btn:focus-visible,
.faq-trigger:focus-visible,
.burger:focus-visible,
.slider-arrow:focus-visible,
.slider-dot:focus-visible,
.nav-links a:focus-visible,
.nav-lang-btn:focus-visible,
.nav-lang-dropdown a:focus-visible,
.nav-lang-inline a:focus-visible,
.floating-btn:focus-visible,
.floating-link:focus-visible,
.cookie-btn:focus-visible,
.cookie-close:focus-visible,
.footer-social a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Reduced motion — kill choreography, keep layout */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .slider-mobile .slides,
  .slider-desktop .slides { transition: none; }
  .floating-btn { animation: none; }
  .faq-answer { transition: none; }
  .floating-links { transition: none; }
}

/* ========== WIDE SCREENS ========== */
@media (min-width: 1728px) {
  .container { max-width: 1320px; }
  .gift-grid { max-width: 1320px; }
  .steps-list { max-width: 1060px; }
}

/* ========== UTILITIES ========== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.sr-only:focus-visible { position: fixed; top: 12px; left: 12px; width: auto; height: auto; padding: 8px 16px; margin: 0; overflow: visible; clip: auto; background: var(--ink); color: var(--white); border-radius: 6px; font-size: 14px; z-index: 10000; }
.body-no-scroll { overflow: hidden; }
