/* =========================================================
   THE CV ARCHITECT — Neo-Grotesque Premium v4
   Font: Satoshi · Palette: Parchment · Ink · Emerald
   ========================================================= */

:root {
  /* ── Brand ─────────────────────────────────────── */
  --primary:        #064E3B;
  --primary-mid:    #065F46;
  --primary-hover:  #047857;
  --primary-light:  #D1FAE5;
  --primary-xlight: #ECFDF5;

  /* ── Ink scale ──────────────────────────────────── */
  --ink:    #13110D;
  --ink-2:  #55514A;
  --ink-3:  #9E9A93;

  /* Backward-compat */
  --dark:       #13110D;
  --text:       #13110D;
  --text-muted: #55514A;
  --text-light: #9E9A93;
  --gray:       #55514A;
  --gray-light: #9E9A93;
  --white:      #FFFFFF;

  /* ── Paper scale ────────────────────────────────── */
  --paper:     #F7F4EF;
  --surface:   #FFFFFF;
  --surface-2: #F0EDE7;

  /* Backward-compat */
  --bg:      #F7F4EF;
  --bg-card: #FFFFFF;

  /* ── Borders ─────────────────────────────────────── */
  --rule:   rgba(19,17,13,0.09);
  --rule-2: rgba(19,17,13,0.15);
  --rule-3: rgba(19,17,13,0.24);

  /* Backward-compat */
  --border:        rgba(19,17,13,0.09);
  --border-mid:    rgba(19,17,13,0.15);
  --border-strong: rgba(19,17,13,0.24);

  /* ── Radius — minimal ────────────────────────────── */
  --r-xs:  3px;
  --r-sm:  6px;
  --r:     8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-full:9999px;

  /* Backward-compat */
  --radius:    8px;
  --radius-sm: 6px;

  /* ── Motion ─────────────────────────────────────── */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t:        0.24s;
  --t-slow:   0.40s;
  --transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Shadows ─────────────────────────────────────── */
  --shadow:    0 1px 4px rgba(19,17,13,0.07);
  --shadow-md: 0 4px 20px rgba(19,17,13,0.08);
  --shadow-lg: 0 12px 48px rgba(19,17,13,0.10);

  /* ── Typography ──────────────────────────────────── */
  --font: 'Satoshi', 'DM Sans', system-ui, -apple-system, sans-serif;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
figure { margin: 0; }

/* =====================================================
   TYPOGRAPHY — Satoshi, Neo-Grotesque
   ===================================================== */
h1 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}
h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
h4 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* Italic accent — Satoshi italic */
.italic-accent {
  font-style: italic;
  color: var(--primary);
}

/* =====================================================
   BUTTONS — Flat, 6 px radius, ink/emerald
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition:
    background    var(--t) var(--ease),
    border-color  var(--t) var(--ease),
    color         var(--t) var(--ease),
    opacity       var(--t) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  outline: none;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.btn:active { opacity: 0.78; }

.btn-primary  { background: var(--ink);  color: var(--paper); border-color: var(--ink);  }
.btn-primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.btn-outline  { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn-outline:hover { border-color: var(--ink); }

.btn-ghost    { background: transparent; color: var(--ink-2); border-color: transparent; }
.btn-ghost:hover { color: var(--ink); }

.btn-white    { background: rgba(255,255,255,0.95); color: var(--ink); border-color: rgba(255,255,255,0.25); }
.btn-white:hover { background: #fff; }

.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-sm  { padding: 8px 16px;  font-size: 13px; }
.btn-xs  { padding: 5px 12px;  font-size: 12px; }

/* =====================================================
   NAVBAR — Minimal glass
   ===================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(247, 244, 239, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(247, 244, 239, 0.97);
  border-bottom-color: var(--rule);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.navbar-inner img{
  max-width: 160px; margin: 0 auto;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 17px;
  color: var(--ink); letter-spacing: -0.02em;
  transition: opacity var(--t) var(--ease);
}
.navbar-logo:hover { opacity: 0.6; }
.navbar-logo-icon {
  width: 28px; height: 28px; background: var(--ink);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-size: 11px; font-weight: 700; letter-spacing: 0;
}
.navbar-links { display: flex; align-items: center; gap: 40px; }
.navbar-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color var(--t) var(--ease); position: relative;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--ink);
  transition: width var(--t) var(--ease);
}
.navbar-links a:hover { color: var(--ink); }
.navbar-links a:hover::after { width: 100%; }
.navbar-cta { display: flex; align-items: center; gap: 10px; }

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 112px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: currentColor; flex-shrink: 0;
}

.section-title {
  font-family: var(--font); font-weight: 700;
  font-size: clamp(28px, 3.8vw, 48px);
  text-align: center; margin-bottom: 14px;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1.12;
}
.section-subtitle {
  text-align: center; color: var(--ink-2);
  font-size: 17px; line-height: 1.7;
  margin-bottom: 72px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  padding: 152px 0 96px; background: var(--paper);
  overflow: hidden; position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: currentColor; flex-shrink: 0;
}

/* Heading */
.hero-title {
  font-family: var(--font); font-weight: 900;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.04; letter-spacing: -0.04em; color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--primary); }

.hero-desc {
  font-size: 17px; color: var(--ink-2); line-height: 1.78;
  max-width: 440px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

/* Social proof */
.hero-social-proof {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px; border-top: 1px solid var(--rule);
}
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--paper); margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; overflow: hidden;
}
.avatar:first-child { margin-left: 0; }
.social-proof-text { font-size: 13px; color: var(--ink-2); }
.social-proof-text strong { color: var(--ink); }

/* Hero photo */
.hero-visual { position: relative; }
.hero-photo-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.hero-photo-frame:hover img { transform: scale(1.03); }

.hero-stat-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.96); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 14px 20px;
  backdrop-filter: blur(12px);
}
.hero-stat-n {
  display: block; font-family: var(--font); font-weight: 900;
  font-size: 26px; color: var(--ink); line-height: 1; margin-bottom: 2px;
  letter-spacing: -0.03em;
}
.hero-stat-l { font-size: 12px; color: var(--ink-2); font-weight: 500; }
.mockup-float { display: none; }

/* =====================================================
   STATS BAR — Dark band
   ===================================================== */
.stats-bar { background: var(--ink); padding: 0; border: none; }
.stats-grid { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item {
  text-align: center; padding: 44px 64px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex: 1; min-width: 200px;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font); font-weight: 900;
  font-size: 40px; color: #fff; display: block;
  letter-spacing: -0.04em; margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.42); }

/* =====================================================
   ADSENSE
   ===================================================== */
.adsense-wrap {
  text-align: center; padding: 20px 0;
  background: var(--surface-2);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.adsense-label {
  font-size: 10px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.adsense-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px dashed var(--rule-2);
  border-radius: var(--r-sm); color: var(--ink-3); font-size: 12px; margin: 0 auto;
}
.adsense-leaderboard { width: 728px; height: 90px; max-width: 100%; }
.adsense-rectangle   { width: 300px; height: 250px; }
.adsense-banner-responsive { width: 100%; height: 90px; }

/* =====================================================
   FEATURES — Cards with real photo headers
   ===================================================== */
.features { background: var(--surface); }

.features-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 48px;
  margin-bottom: 72px; padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.features-header-left .section-title { text-align: left; margin-bottom: 0; }
.features-header-right { max-width: 320px; flex-shrink: 0; }
.features-header-right p { font-size: 16px; color: var(--ink-2); line-height: 1.7; margin: 0; }

/* 3-col grid of photo cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Reset bento nth-child overrides from prev version */
.feature-card:nth-child(1),
.feature-card:nth-child(4) { grid-column: span 1; display: flex; flex-direction: column; }
.feature-card:nth-child(1) .feature-icon,
.feature-card:nth-child(4) .feature-icon { margin-bottom: 0; grid-row: auto; margin-top: 0; }
.feature-card:nth-child(1) .feature-title,
.feature-card:nth-child(4) .feature-title { font-size: 18px; }

/* Photo card structure */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
  position: relative;
}
.feature-card::after { display: none; }
.feature-card:hover {
  border-color: var(--rule-2);
  transform: translateY(-3px);
}

/* Photo portion */
.feature-photo {
  width: 100%; height: 200px; overflow: hidden; flex-shrink: 0;
}
.feature-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease);
}
.feature-card:hover .feature-photo img { transform: scale(1.06); }

/* Legacy icon (hidden when photo exists) */
.feature-icon { display: none; }

/* Text body */
.feature-body { padding: 24px 26px; flex: 1; }
.feature-title {
  font-family: var(--font); font-size: 17px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em;
}
.feature-desc { font-size: 14px; color: var(--ink-2); line-height: 1.7; }

/* =====================================================
   HOW IT WORKS — Bordered editorial columns
   ===================================================== */
.how-it-works { background: var(--paper); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  position: static;
}
.steps-grid::before { display: none; }
.step-card {
  padding: 44px 36px; text-align: left;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: static; z-index: auto;
}
/* Editorial step number (override circle) */
.step-number {
  width: auto; height: auto;
  background: transparent; color: var(--primary);
  border: none; border-radius: 0; box-shadow: none; outline: none;
  display: block; font-family: var(--font);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 20px 0; animation: none;
}
.step-card:hover .step-number { transform: none; background: transparent; outline: none; }
@keyframes pulse-dot { 0%,100%{} }

.step-title {
  font-family: var(--font); font-size: 18px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.02em;
}
.step-desc { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* =====================================================
   TEMPLATES SECTION — Gallery
   ===================================================== */
.templates-section { background: var(--surface); }
.templates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.template-card {
  border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden;
  cursor: pointer; background: var(--surface);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.template-card:hover { border-color: var(--rule-2); transform: translateY(-4px); }
.template-thumb { height: 220px; overflow: hidden; position: relative; }
.template-thumb-inner { width: 100%; height: 100%; overflow: hidden; }
.template-overlay {
  position: absolute; inset: 0;
  background: rgba(19,17,13,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t) var(--ease); backdrop-filter: blur(2px);
}
.template-card:hover .template-overlay { opacity: 1; }
.template-info {
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--rule);
}
.template-name { font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
.template-badge {
  font-size: 11px; padding: 3px 10px; border-radius: var(--r-full);
  background: var(--surface-2); color: var(--ink-2);
  font-weight: 600; border: 1px solid var(--rule);
}

/* ── CV Thumbnail mini-renders ─────────────────── */
.cvt {
  width: 100%; height: 100%;
  background: #fff; overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 0;
}
.cvt-line { display: block; border-radius: 1px; }
.cvt-circle { border-radius: 50%; }

/* =====================================================
   FEATURE SPLIT — Real photo
   ===================================================== */
.laptop-section { background: var(--paper); overflow: hidden; }
.laptop-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.laptop-visual {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3;
}
.laptop-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.laptop-visual:hover img { transform: scale(1.03); }
.laptop-visual-placeholder {
  border-radius: var(--r-lg); overflow: hidden; height: 380px;
  background: var(--surface-2); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-size: 64px;
}
.laptop-content-title {
  font-family: var(--font); font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--ink); margin-bottom: 20px; letter-spacing: -0.03em; line-height: 1.15;
}
.laptop-features { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.laptop-feature { display: flex; align-items: flex-start; gap: 14px; }
.laptop-feature-icon {
  width: 20px; height: 20px; background: var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-size: 9px; flex-shrink: 0; margin-top: 2px;
}
.laptop-feature-text { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

/* =====================================================
   CTA — Full dark
   ===================================================== */
.cta-section {
  background: var(--ink); padding: 112px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 0%, rgba(6,78,59,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-title {
  color: rgba(247,244,239,0.96); position: relative; z-index: 1; margin-bottom: 14px;
}
.cta-section .section-subtitle {
  color: rgba(247,244,239,0.46); margin-bottom: 48px; position: relative; z-index: 1;
}

/* =====================================================
   TESTIMONIALS — Editorial grid
   ===================================================== */
.testimonials { background: var(--surface); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.testimonial-card {
  padding: 48px 40px; background: transparent;
  border: none; border-radius: 0;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  transition: background var(--t) var(--ease);
}
.testimonial-card:hover { background: var(--paper); }
.stars { font-size: 11px; color: var(--ink); letter-spacing: 4px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 28px;
  font-style: italic; position: relative;
}
.testimonial-text::before {
  content: '\201C'; font-family: var(--font); font-weight: 900;
  font-size: 60px; line-height: 0.8; color: var(--rule-2);
  display: block; margin-bottom: 12px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--ink-2); font-size: 12px;
}
.t-name  { font-weight: 700; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
.t-role  { font-size: 12px; color: var(--ink-3); margin-top: 1px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--ink); color: rgba(247,244,239,0.42); padding: 80px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .navbar-logo { color: rgba(247,244,239,0.90); margin-bottom: 18px; }
.footer-desc { font-size: 14px; line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font); color: rgba(247,244,239,0.88);
  font-size: 11px; font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(247,244,239,0.40);
  margin-bottom: 12px; transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: rgba(247,244,239,0.88); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; font-size: 13px;
}

/* =====================================================
   HAMBURGER
   ===================================================== */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: all var(--t) var(--ease);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-up { animation: fade-in-up 0.55s ease both; }
.animate-fade-in { animation: fade-in 0.55s ease both; }

[data-aos="fade-up"]    { opacity:0; transform:translateY(32px); transition:opacity .6s ease,transform .6s ease; }
[data-aos="fade-up"].aos-animate { opacity:1; transform:translateY(0); }
[data-aos="fade-right"] { opacity:0; transform:translateX(-32px); transition:opacity .6s ease,transform .6s ease; }
[data-aos="fade-right"].aos-animate { opacity:1; transform:translateX(0); }
[data-aos="fade-left"]  { opacity:0; transform:translateX(32px); transition:opacity .6s ease,transform .6s ease; }
[data-aos="fade-left"].aos-animate { opacity:1; transform:translateX(0); }
[data-aos="zoom-in"]    { opacity:0; transform:scale(0.90); transition:opacity .6s ease,transform .6s ease; }
[data-aos="zoom-in"].aos-animate { opacity:1; transform:scale(1); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .container, .navbar-inner { padding-left: 32px; padding-right: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .features-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .features-header-right { max-width: 100%; }
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .laptop-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 120px 0 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .adsense-leaderboard { display: none; }
  .section { padding: 72px 0; }
  .stat-item { padding: 32px 40px; }
  .container { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 540px) {
  .templates-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .testimonials-grid { border-left: none; }
  .testimonial-card { border-right: none; }
}
