/* ============ DESIGN TOKENS ============ */
:root{
  --sapphire: #5C7183;
  --sapphire-dark: #3E4F5C;
  --sapphire-darker: #2E3B45;
  --aqua: #AEC0CB;
  --aqua-light: #DCE6EA;
  --oatmeal: #BFB2A0;
  --sand: #EDE2D3;
  --sand-light: #F4ECE1;
  --offwhite: #FAF6F0;
  --white: #FFFFFF;
  --ink: #2A2E32;
  --ink-soft: #565D63;

  --font-serif: 'Fraunces', serif;
  --font-sans: 'Inter', sans-serif;

  --container-width: 1180px;
  --container-narrow-width: 800px;

  --radius: 6px;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ RESET ============ */
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4{ font-family: var(--font-serif); font-weight: 500; line-height: 1.15; color: var(--sapphire-darker); }

/* ============ LANGUAGE TOGGLE LOGIC ============ */
html[data-lang="de"] .lang-en{ display: none; }
html[data-lang="en"] .lang-de{ display: none; }

/* ============ LAYOUT HELPERS ============ */
.container{
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow{ max-width: var(--container-narrow-width); }
.center{ text-align: center; }

.section{ padding: 120px 0; }
.section-light{ background: var(--offwhite); }
.section-sand{ background: var(--sand-light); }
.section-dark{ background: var(--sapphire-darker); color: var(--aqua-light); }
.section-sapphire{ background: var(--sapphire-dark); color: var(--aqua-light); }
.section-dark h2, .section-dark h3,
.section-sapphire h2, .section-sapphire h3{ color: var(--white); }

.eyebrow{
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sapphire);
  margin-bottom: 18px;
}
.eyebrow.light{ color: var(--aqua); }

.section-title{
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 760px;
  margin-bottom: 24px;
}
.section-title.center{ margin-left: auto; margin-right: auto; }
.section-title.light{ color: var(--white); }

.section-intro{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.75;
}
.section-intro.center{ margin-left: auto; margin-right: auto; }
.section-intro.light{ color: var(--aqua-light); }

/* ============ REVEAL ANIMATION ============ */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible{ transition-delay: 0.15s; }
.reveal-delay-2.is-visible{ transition-delay: 0.3s; }

.problem-grid .reveal:nth-child(1).is-visible{ transition-delay: 0s; }
.problem-grid .reveal:nth-child(2).is-visible{ transition-delay: 0.08s; }
.problem-grid .reveal:nth-child(3).is-visible{ transition-delay: 0.16s; }
.problem-grid .reveal:nth-child(4).is-visible{ transition-delay: 0.24s; }
.problem-grid .reveal:nth-child(5).is-visible{ transition-delay: 0.32s; }
.problem-grid .reveal:nth-child(6).is-visible{ transition-delay: 0.4s; }

.pricing-grid .reveal:nth-child(1).is-visible{ transition-delay: 0s; }
.pricing-grid .reveal:nth-child(2).is-visible{ transition-delay: 0.12s; }
.pricing-grid .reveal:nth-child(3).is-visible{ transition-delay: 0.24s; }

.method-list .reveal:nth-child(1).is-visible{ transition-delay: 0s; }
.method-list .reveal:nth-child(2).is-visible{ transition-delay: 0.08s; }
.method-list .reveal:nth-child(3).is-visible{ transition-delay: 0.16s; }
.method-list .reveal:nth-child(4).is-visible{ transition-delay: 0.24s; }
.method-list .reveal:nth-child(5).is-visible{ transition-delay: 0.32s; }

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--sapphire-darker);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(46,59,69,0.1);
}
.btn-primary:hover{
  background: var(--sapphire);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46,59,69,0.22);
}
.btn-ghost{
  background: transparent;
  color: var(--sapphire-darker);
  border: 1.5px solid var(--sapphire-darker);
}
.btn-ghost:hover{
  background: var(--sapphire-darker);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-small{ padding: 10px 20px; font-size: 13.5px; }
.btn-large{ padding: 19px 42px; font-size: 16px; }

.hero-actions{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 36px 0 22px;
}
.hero-actions.center{ justify-content: center; }

/* ============ NAV ============ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled{
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(46,59,69,0.08);
}
.nav-inner{
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo{
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--sapphire-darker);
}
.nav-links{
  display: flex;
  gap: 36px;
}
.nav-link{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sapphire-darker);
  position: relative;
  padding: 4px 0;
}
.nav-link::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 1.5px;
  background: var(--sapphire-darker);
  transition: width 0.35s ease;
}
.nav-link:hover::after{ width: 100%; }

.nav-right{ display: flex; align-items: center; gap: 18px; position: relative; z-index: 101; }

.lang-toggle{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--sapphire-darker);
}
.lang-toggle-option{
  padding: 4px 6px;
  border-radius: 4px;
  opacity: 0.45;
  transition: opacity 0.3s ease, background 0.3s ease;
}
.lang-toggle-option.active{
  opacity: 1;
  background: var(--sand);
}
.lang-toggle-divider{ opacity: 0.3; }

.nav-cta{ }
.nav-burger{
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.nav-burger span{
  display: block;
  height: 2px;
  width: 100%;
  background: var(--sapphire-darker);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============ HERO ============ */
.hero{
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sapphire-darker);
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.03);
  animation: hero-zoom 18s ease-out forwards;
}
@keyframes hero-zoom{
  from{ transform: scale(1.08); }
  to{ transform: scale(1); }
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(30,38,44,0.82) 0%, rgba(30,38,44,0.6) 30%, rgba(30,38,44,0.18) 58%, rgba(30,38,44,0.08) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 168px 32px 90px;
}
.hero-title{
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 640px;
}
.hero-sub{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.75;
}
.hero-sub.light{ color: rgba(255,255,255,0.88); }
.hero-note{
  font-size: 13.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.hero-note.light{ color: rgba(255,255,255,0.7); }
.btn-ghost-light{
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-ghost-light:hover{
  background: var(--white);
  color: var(--sapphire-darker);
  border-color: var(--white);
}

/* ============ PROBLEM ============ */
.problem-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.problem-card{
  background: var(--white);
  border: 1px solid rgba(46,59,69,0.08);
  border-radius: 10px;
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(46,59,69,0.18);
}
.problem-num{
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--aqua);
  font-weight: 500;
  margin-bottom: 18px;
}
.problem-card h3{
  font-size: 19px;
  margin-bottom: 12px;
}
.problem-card p{
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ CHECKLIST ============ */
.checklist{
  margin-top: 56px;
  display: grid;
  gap: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.checklist-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16.5px;
  color: var(--white);
}
.check-icon{
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(174, 192, 203, 0.18);
  color: var(--aqua-light);
  margin-top: 2px;
}

/* ============ METHOD ============ */
.method-list{
  margin-top: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.method-list::before{
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 27px;
  width: 1px;
  background: rgba(92,113,131,0.2);
}
.method-item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 26px 0;
  position: relative;
}
.method-num{
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--sapphire);
  background: var(--offwhite);
  z-index: 1;
}
.method-body h3{
  font-size: 22px;
  margin-bottom: 10px;
  font-style: italic;
}
.method-body p{
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 600px;
}

/* ============ ABOUT ============ */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image-frame{
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(46,59,69,0.25);
  position: relative;
}
.about-image-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transition: transform 8s cubic-bezier(0.16,1,0.3,1);
}
.about-image:hover .about-image-frame img{ transform: scale(1.06); }
.about-image-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,59,69,0.55) 0%, transparent 55%);
  border-radius: 10px;
}
.about-image-caption{
  position: absolute;
  bottom: 26px;
  left: 28px;
  right: 28px;
}
.about-image-name{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
}
.about-image-role{
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-light);
  margin-top: 4px;
}
.about-text .section-title{ max-width: 100%; }
.about-copy{ display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.about-copy p{ font-size: 16.5px; color: var(--ink-soft); line-height: 1.8; }

.about-meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(46,59,69,0.12);
}
.meta-label{
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sapphire);
  margin-bottom: 6px;
  font-weight: 600;
}
.meta-val{ font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }

/* ============ ANGEBOT / PRICING ============ */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: stretch;
}
.pricing-card{
  background: var(--white);
  border: 1px solid rgba(46,59,69,0.12);
  border-radius: 12px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover{
  border-color: var(--aqua);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(46,59,69,0.16);
}
.pricing-card-featured{
  background: var(--sapphire-darker);
  border-color: var(--sapphire-darker);
  color: var(--aqua-light);
  position: relative;
}
.pricing-card-featured:hover{ transform: translateY(-6px); border-color: var(--aqua); }
.pricing-badge{
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aqua);
  color: var(--sapphire-darker);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tag{
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sapphire);
  margin-bottom: 14px;
}
.pricing-card-featured .pricing-tag{ color: var(--aqua); }
.pricing-title{
  font-size: 26px;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.2;
}
.pricing-card-featured .pricing-title{ color: var(--white); }
.pricing-divider{
  width: 28px;
  height: 1.5px;
  background: var(--aqua);
  margin: 18px 0 20px;
}
.pricing-desc{
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 26px;
}
.pricing-card-featured .pricing-desc{ color: rgba(220,230,234,0.75); }
.pricing-features{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-features li{
  font-size: 13.5px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before{
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sapphire);
  font-size: 11px;
}
.pricing-card-featured .pricing-features li{ color: rgba(220,230,234,0.9); }
.pricing-card-featured .pricing-features li::before{ color: var(--aqua); }
.pricing-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sapphire-darker);
  border-bottom: 1px solid var(--sapphire-darker);
  padding-bottom: 3px;
  width: fit-content;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.pricing-link:hover{ color: var(--sapphire); border-color: var(--sapphire); }
.pricing-btn{ width: fit-content; }

.pricing-footnote{
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 48px auto 0;
  line-height: 1.7;
}

/* ============ FAQ ============ */
.faq-list{ margin-top: 56px; border-top: 1px solid rgba(46,59,69,0.12); }
.faq-item{ border-bottom: 1px solid rgba(46,59,69,0.12); }
.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  color: var(--sapphire-darker);
}
.faq-icon{
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.faq-icon::before, .faq-icon::after{
  content: '';
  position: absolute;
  background: var(--sapphire-darker);
  transition: transform 0.35s ease;
}
.faq-icon::before{ top: 9px; left: 0; width: 20px; height: 1.5px; }
.faq-icon::after{ top: 0; left: 9px; width: 1.5px; height: 20px; }
.faq-item.open .faq-icon::after{ transform: rotate(90deg); opacity: 0; }

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1);
}
.faq-answer p{
  padding: 0 4px 26px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 680px;
}

/* ============ FOOTER ============ */
.footer{
  background: var(--sapphire-darker);
  color: var(--aqua-light);
  padding: 80px 0 0;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo{ color: var(--white); }
.footer-tagline{
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--aqua-light);
  max-width: 320px;
  line-height: 1.65;
  opacity: 0.85;
}
.footer-links, .footer-contact{ display: flex; flex-direction: column; gap: 12px; }
.footer-links h4, .footer-contact h4{
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 6px;
  font-weight: 600;
}
.footer-icon-link{
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-icon{
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.footer-icon-link:hover .footer-icon{ transform: translateY(-1px); }
.footer-links a, .footer-contact a{
  font-size: 14.5px;
  color: var(--aqua-light);
  opacity: 0.85;
  transition: opacity 0.3s ease;
  width: fit-content;
}
.footer-links a:hover, .footer-contact a:hover{ opacity: 1; }
.footer-bottom{
  padding: 26px 32px 32px;
  text-align: center;
  font-size: 13px;
  color: var(--aqua-light);
  opacity: 0.6;
}
.footer-legal{ margin-top: 10px; }
.footer-legal a{ opacity: 1; }
.footer-legal a:hover{ text-decoration: underline; }
.footer-legal-divider{ margin: 0 8px; }

/* ============ LEGAL PAGES ============ */
.legal-hero{
  padding: 168px 0 40px;
  background: var(--sand-light);
}
.legal-hero .eyebrow{ margin-bottom: 14px; }
.legal-hero h1{
  font-size: clamp(30px, 4vw, 44px);
}
.legal-content{
  padding: 72px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2{
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-content h2:first-child{ margin-top: 0; }
.legal-content h3{
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-style: italic;
}
.legal-content p{
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul{
  margin: 0 0 14px;
  padding-left: 20px;
  list-style: disc;
}
.legal-content li{
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a{ color: var(--sapphire); text-decoration: underline; }
.legal-placeholder{
  background: var(--sand-light);
  border: 1px dashed var(--oatmeal);
  border-radius: 8px;
  padding: 3px 8px;
  font-style: italic;
}
.legal-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sapphire-darker);
  margin-bottom: 24px;
}
.legal-back:hover{ text-decoration: underline; }

/* ============ COOKIE BANNER ============ */
.cookie-banner{
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  background: var(--sapphire-darker);
  color: var(--aqua-light);
  border-radius: 12px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.35);
  transform: translateY(140%);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.visible{ transform: translateY(0); }
.cookie-text{
  font-size: 13px;
  line-height: 1.6;
  color: var(--aqua-light);
  opacity: 0.9;
}
.cookie-text a{ color: var(--white); text-decoration: underline; opacity: 1; }
.cookie-accept{ flex-shrink: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero{ min-height: 80vh; }
  .hero-content{ padding-top: 140px; }
  .problem-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-image{ max-width: 480px; margin: 0 auto; }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card-featured{ order: -1; }
  .footer-inner{ grid-template-columns: 1fr; gap: 36px; }
  .cookie-banner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px){
  .section{ padding: 80px 0; }
  .nav-links{
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--offwhite);
    flex-direction: column;
    padding: 100px 36px 36px;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  }
  .nav-links.open{ right: 0; }
  .nav-cta{ display: none; }
  .nav-burger{ display: flex; }
  .nav-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2){ opacity: 0; }
  .nav-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .hero{ min-height: 100vh; }
  .hero-bg{ object-position: 68% center; }
  .hero-overlay{ background: linear-gradient(180deg, rgba(30,38,44,0.35) 0%, rgba(30,38,44,0.55) 55%, rgba(30,38,44,0.88) 100%); }
  .hero-content{ padding: 120px 24px 56px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 100vh; }
  .problem-grid{ grid-template-columns: 1fr; }
  .about-meta{ grid-template-columns: 1fr 1fr; }
  .method-item{ grid-template-columns: 40px 1fr; gap: 18px; }
  .method-list::before{ left: 19px; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ text-align: center; }
  .pricing-footnote{ padding: 0 8px; }
  .cookie-banner{ left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}
