/* =============================================
   BuzzDAO — IP Camera Landing Page
   Premium Minimalist Light Style
   ============================================= */

/* --- TOKENS --- */
:root {
  --navy: #0A1628;
  --navy-80: rgba(10, 22, 40, 0.8);
  --navy-60: rgba(10, 22, 40, 0.6);
  --navy-20: rgba(10, 22, 40, 0.2);
  --gold: #C9A84C;
  --gold-light: rgba(201, 168, 76, 0.15);
  --white: #F8F7F4;
  --grey-light: #E8EEF5;
  --grey-mid: #9AA5B4;
  --grey-text: #4A5568;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }

/* --- LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow--light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 48px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: transparent;
  color: var(--navy);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  justify-content: center;
}
.btn-gold:hover {
  background: #b8952e;
  border-color: #b8952e;
}

.btn-full { width: 100%; }


/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(248, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--navy-20);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.logo--light .logo-text { color: var(--white); }

.pub-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  border: 1px solid var(--grey-mid);
  padding: 4px 10px;
  border-radius: 2px;
}


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.75) 0%,
    rgba(10, 22, 40, 0.35) 60%,
    rgba(10, 22, 40, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero-title em {
  font-style: italic;
  color: rgba(248, 247, 244, 0.85);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(248, 247, 244, 0.8);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.hero-content .btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(248, 247, 244, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* =============================================
   STORY
   ============================================= */
.story { background: var(--white); }

.story-chapter { padding: 100px 0; }

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-layout--reverse { direction: rtl; }
.story-layout--reverse > * { direction: ltr; }

.chapter-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 20px;
}
.chapter-num--light { color: rgba(248, 247, 244, 0.25); }

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}
.story-heading--light { color: var(--white); }

.story-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-text);
  margin-bottom: 16px;
}
.story-text p:last-child { margin-bottom: 0; }

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.story-img-wrap:hover .story-img { transform: scale(1.03); }

.story-img-focus .story-img {
  filter: brightness(0.92);
}

.zoom-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 22, 40, 0.85);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

/* Full-bleed story chapter */
.story-full-bg {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.story-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.88) 40%, rgba(10,22,40,0.2) 100%);
}

.story-full-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.story-full-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(248,247,244,0.8);
  margin-top: 16px;
  line-height: 1.6;
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  background: var(--navy);
  border-radius: 36px;
  padding: 16px;
  box-shadow:
    0 40px 80px rgba(10,22,40,0.2),
    0 0 0 1px rgba(10,22,40,0.08),
    inset 0 0 0 2px rgba(255,255,255,0.06);
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-ui-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 35%, transparent 70%, rgba(0,0,0,0.6) 100%);
}

.phone-ui-top {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF3B30;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.live-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

.phone-ui-bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Story revelation */
.story-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0;
}

.revelation-icon {
  margin-bottom: 32px;
}

.revelation-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}

.revelation-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--grey-text);
  margin-bottom: 40px;
}

.chapter-5 { background: var(--grey-light); }


/* =============================================
   BENEFITS
   ============================================= */
.benefits {
  padding: 120px 0;
  background: var(--white);
}

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

.benefit-card {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10,22,40,0.08);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-text);
}


/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 120px 0;
  background: var(--navy);
}

.how-it-works .section-eyebrow { color: var(--gold); }
.how-it-works .section-title { color: var(--white); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(248,247,244,0.6);
}

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: rgba(201,168,76,0.3);
  margin-top: 26px;
}


/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.about-img-wrap:hover .about-img { transform: scale(1.03); }

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text > p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-text);
  margin-bottom: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--grey-mid);
  font-weight: 500;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-text);
}


/* =============================================
   WHERE TO INSTALL
   ============================================= */
.where {
  padding: 120px 0;
  background: var(--grey-light);
}

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

.where-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: default;
}

.where-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.where-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.where-card:hover .where-img-wrap img { transform: scale(1.08); }

.where-label {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 20px;
  text-align: center;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey-text);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-loc {
  font-size: 0.78rem;
  color: var(--grey-mid);
}


/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 24px;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--grey-text);
}


/* =============================================
   CTA / FORM
   ============================================= */
.cta-section {
  padding: 120px 0;
  background: var(--navy);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(248,247,244,0.7);
  margin-bottom: 36px;
}

.cta-reassure {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-reassure li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(248,247,244,0.85);
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-text);
}

.form-group input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--grey-light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-group input::placeholder { color: var(--grey-mid); }

.form-group input:focus {
  background: var(--white);
  border-color: var(--gold);
}

.form-group input.error { border-color: #E53E3E; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--grey-mid);
  text-align: center;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--gold);
  text-decoration: underline;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon { margin-bottom: 20px; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--grey-text);
  line-height: 1.7;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060e1a;
  padding: 60px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand .logo--light {
  margin-bottom: 16px;
}

.logo--light .logo-text, .logo--light span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-company {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(248,247,244,0.45);
}

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

.footer-links a {
  font-size: 0.8rem;
  color: rgba(248,247,244,0.5);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(248,247,244,0.3);
  padding-top: 24px;
  border-top: 1px solid rgba(248,247,244,0.08);
}


/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.82rem;
  color: rgba(248,247,244,0.7);
  line-height: 1.6;
}

.cookie-inner a { color: var(--gold); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-decline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(248,247,244,0.6);
  padding: 10px 20px;
  border: 1px solid rgba(248,247,244,0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(248,247,244,0.5); color: var(--white); }

.btn-cookie-accept {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-accept:hover { background: #b8952e; }


/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .step { flex-direction: row; text-align: left; }
  .step-connector {
    width: 2px;
    height: 30px;
    margin: 0 0 0 25px;
  }
  .where-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .story-layout,
  .story-layout--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .story-img { height: 300px; }
  .story-chapter { padding: 64px 0; }

  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 320px; }

  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-card { padding: 32px 24px; }

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

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .stat-num { font-size: 1.5rem; }

  .story-full-bg { height: 420px; }

  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 32px; }

  .hero-scroll-hint { display: none; }

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

@media (max-width: 480px) {
  .where-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; text-align: left; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .step { align-items: flex-start; }
  .phone-frame { width: 200px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
