/* =============================================
   MERGED CSS — Base: CSS #1 (primary)
   Added from CSS #2: How it Works section only
   ============================================= */

/* ─── CSS VARIABLES (CSS #1 — нэн тэргүүнд) ─── */
:root {
  --navy: #0f386e;
  --navy-dark: #0a2a54;
  --navy-light: #1a4f96;
  --silver: #838993;
  --silver-light: #b0b5be;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --accent: #e8f0fb;
  --gold: #f0a500;
  --text: #1a1f2e;
  --text-muted: #6b7280;
  --border: #e2e6ef;
  --shadow: 0 4px 24px rgba(15,56,110,0.10);
  --shadow-lg: 0 12px 48px rgba(15,56,110,0.18);
  --radius: 16px;
  --radius-sm: 10px;

  /* CSS #2-оос авсан нэмэлт variables */
  --primary: #0f386e;
  --secondary: #838993;
  --bg-light: #f8f9fa;
  --accent-red: #ff6b6b;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-logo img { height: 44px; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text); font-weight: 500; font-size: .9rem;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px;
  background: var(--navy); transform:scaleX(0); transition:transform .25s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform:scaleX(1); }

.nav-cta {
  background: var(--navy); color: var(--white);
  border: none; border-radius: 50px; padding: 10px 24px;
  font-family: inherit; font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: background .2s, transform .2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image: linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .25;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: #4a90d9; top: -100px; right: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--silver); bottom: 0; left: 10%; animation-delay: -3s; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); border-radius: 50px; padding: 8px 18px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(8px);
  animation: fadeUp .6s ease both;
}
.hero-badge span { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white); line-height: 1.12; margin-bottom: 20px;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 em { font-style: italic; color: #93c5fd; }

.hero p {
  color: rgba(255,255,255,0.78); font-size: 1.15rem; line-height: 1.7;
  margin-bottom: 40px; max-width: 560px;
  animation: fadeUp .6s .2s ease both;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }

.btn-primary {
  background: var(--white); color: var(--navy);
  border: none; border-radius: 50px; padding: 14px 32px;
  font-family: inherit; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: .2s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4); border-radius: 50px; padding: 14px 32px;
  font-family: inherit; font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: .2s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

.hero-stats {
  position: absolute; bottom: 48px; right: 5%;
  display: flex; gap: 32px;
  animation: fadeUp .6s .4s ease both;
}
.stat { text-align: center; color: var(--white); }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; display: block; }
.stat-label { font-size: .78rem; opacity: .7; text-transform: uppercase; letter-spacing: .06em; }

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

/* ─── SECTIONS ─── */
section { padding: 100px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
}
.section-label::before { content:''; width:20px; height:2px; background: var(--navy); }
h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; max-width: 560px; }

/* ─── WHY CHOOSE ─── */
.why { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 56px; }

.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border); transition: .3s;
  position: relative; overflow: hidden;
}
.why-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--navy), var(--silver)); opacity:0; transition:.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity:1; }

.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.65; }

/* ─── HOW TO GUIDE (CSS #1 — email layout) ─── */
.how-header { max-width: 600px; }
.how-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 64px; }

.email-visual {
  background: var(--navy-dark);
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky; top: 88px;
}

.email-topbar {
  background: rgba(255,255,255,0.06);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.email-dot { width: 10px; height: 10px; border-radius: 50%; }
.email-dot.r { background: #ff5f57; }
.email-dot.y { background: #febc2e; }
.email-dot.g { background: #28c840; }
.email-title { color: rgba(255,255,255,0.5); font-size: .82rem; margin-left: 8px; }

.email-body { padding: 28px; }

.email-field {
  margin-bottom: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; overflow: hidden;
}
.email-field-label {
  padding: 8px 16px 0;
  font-size: .72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: .08em;
}
.email-field-value {
  padding: 4px 16px 10px;
  font-size: .9rem; color: var(--white);
}
.email-field-value.address { color: #93c5fd; }
.email-field-value.subject-code {
  font-weight: 700; font-size: 1rem; letter-spacing: .04em;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.code-tag {
  background: var(--navy-light); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; padding: 2px 10px; font-size: .82rem; color: #93c5fd;
  cursor: pointer; transition: .2s;
}
.code-tag.active { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.attach-area {
  background: rgba(255,255,255,0.03);
  border: 1.5px dashed rgba(255,255,255,0.2);
  border-radius: 12px; padding: 20px;
  text-align: center; margin: 18px 0;
  transition: .3s; cursor: pointer;
}
.attach-area:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); }
.attach-icon { font-size: 2rem; margin-bottom: 8px; }
.attach-text { color: rgba(255,255,255,0.6); font-size: .85rem; }
.attach-text strong { color: var(--white); }

.email-send-btn {
  width: 100%; background: linear-gradient(135deg, #2563eb, var(--navy-light));
  color: var(--white); border: none; border-radius: 10px; padding: 14px;
  font-family: inherit; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.email-send-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Steps (CSS #1 — sidebar steps) */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 24px; align-items: flex-start; padding-bottom: 40px; position: relative; }
.step:not(:last-child)::after {
  content:''; position:absolute; left:22px; top:52px; bottom:0; width:2px;
  background: linear-gradient(var(--border), transparent);
}
.step-num {
  width: 46px; height: 46px; min-width: 46px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; position: relative; z-index: 1;
}
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-content p { color: var(--text-muted); font-size: .92rem; line-height: 1.65; }

/* Color Swatches */
.color-results {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.color-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: .3s;
}
.color-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.color-preview { height: 90px; position: relative; }
.color-label-overlay {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.55); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: .06em;
}
.color-info { padding: 12px 14px; }
.color-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.color-desc { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

.preview-sunrise { background: linear-gradient(180deg, #0f0c29 0%, #302b63 30%, #ff6b35 60%, #ffd700 80%, #fff9c4 100%); }
.preview-midday  { background: linear-gradient(180deg, #56ccf2 0%, #2f80ed 40%, #f9f871 80%, #fffde4 100%); }
.preview-sunset  { background: linear-gradient(180deg, #f7971e 0%, #ffd200 30%, #ff512f 60%, #dd2476 100%); }
.preview-pro     { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 70%, #e94560 100%); }

/* ─── PRICING ─── */
.pricing { background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.price-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--border); padding: 36px 32px;
  position: relative; transition: .3s; text-align: center;
}
.price-card.featured {
  background: var(--navy); border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card:hover:not(.featured) { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy-light); }

.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-dark);
  font-size: .75rem; font-weight: 800; padding: 4px 16px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}

.price-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--silver); margin-bottom: 8px; }
.price-card.featured .price-name { color: rgba(255,255,255,0.6); }

.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem; color: var(--text); line-height: 1;
  margin-bottom: 4px;
}
.price-card.featured .price-amount { color: var(--white); }

.price-period { font-size: .85rem; color: var(--text-muted); margin-bottom: 24px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.55); }

.price-credits {
  background: var(--off-white); border-radius: 12px;
  padding: 14px; margin-bottom: 28px;
  font-weight: 700; font-size: 1.1rem; color: var(--navy);
}
.price-card.featured .price-credits { background: rgba(255,255,255,0.12); color: var(--white); }

.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text-muted);
}
.price-card.featured .price-features li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.price-features li::before { content:'✓'; color: #22c55e; font-weight: 800; }
.price-card.featured .price-features li::before { color: #4ade80; }

.price-btn {
  width: 100%; padding: 14px; border-radius: 12px;
  font-family: inherit; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: .2s; border: none;
}
.price-btn-default { background: var(--accent); color: var(--navy); }
.price-btn-default:hover { background: var(--navy); color: var(--white); }
.price-btn-featured { background: var(--white); color: var(--navy); }
.price-btn-featured:hover { background: #e0e9f8; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark); color: var(--white);
  padding: 64px 5% 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: .9rem; line-height: 1.7; }

.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.45); font-size: .82rem; flex-wrap: wrap; gap: 12px;
}

/* ─── SUB PAGES ─── */
.page { display: none; }
.page.active { display: block; }
#page-home { display: block; }

.subpage {
  padding: 120px 5% 80px;
  min-height: 100vh;
}
.subpage h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); margin-bottom: 8px;
}
.subpage .lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

.subpage h2 { font-size: 1.3rem; color: var(--navy); margin: 36px 0 14px; font-family: 'Plus Jakarta Sans', sans-serif; }
.subpage p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-info p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; }

.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px; border-radius: var(--radius-sm);
  background: var(--off-white); margin-bottom: 14px;
}
.contact-icon { font-size: 1.5rem; }
.contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--silver); font-weight: 600; }
.contact-value { font-weight: 600; color: var(--text); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem;
  color: var(--text); background: var(--white); transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  background: var(--navy); color: var(--white); border: none;
  border-radius: var(--radius-sm); padding: 14px;
  font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: .2s;
}
.form-submit:hover { background: var(--navy-light); }


/* ==============================================
   CSS #2 — HOW IT WORKS SECTION (нэмэлт)
   Зөвхөн давхардахгүй, өвөрмөц хэсгүүд
   ============================================== */

.how-it-works {
  padding: 80px 5%;
  background-color: var(--white);
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 50px;
  font-weight: 800;
}

.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* CSS #2-ийн .step нь CSS #1-ийнхтэй зөрчилдөхгүй байхын тулд
   .how-it-works доторх .step-д тусгайлан хэрэглэнэ */
.how-it-works .step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: left;
  /* CSS #1-ийн sidebar step properties-ийг override */
  display: block;
  gap: unset;
  align-items: unset;
  padding-bottom: 0;
  position: static;
}

.how-it-works .step::after {
  display: none;
}

.step-number {
  width: 50px; height: 50px;
  background: var(--navy); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; margin-bottom: 20px;
}

.how-it-works .step h4 {
  font-size: 20px; margin-bottom: 15px; color: var(--navy);
}

.how-it-works .step p {
  font-size: 15px; color: var(--text-muted); margin-bottom: 10px;
}

.magic-codes {
  background: var(--off-white);
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid var(--navy);
}

.magic-codes div {
  margin-bottom: 12px; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}

/* CSS #2-ийн .code-tag нь CSS #1-ийнхтэй зөрчилдөж болзошгүй —
   .magic-codes дотор тусгайлан override хийнэ */
.magic-codes .code-tag {
  background: var(--navy); color: var(--white);
  border: none;
  padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 13px;
  cursor: default;
}

/* CSS #2-ийн pricing table — CSS #1-ийн .pricing-grid-тэй давхардахгүй,
   тусдаа .pricing-table class ашигладаг учир аюулгүй */
.pricing-section { padding: 80px 5%; text-align: center; }

.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th { background: var(--navy); color: var(--white); padding: 20px; font-size: 18px; }
.pricing-table td {
  padding: 20px; border-bottom: 1px solid #eee;
  color: var(--text-muted); font-size: 16px; font-weight: 600;
}
.pricing-table tr:last-child td { border-bottom: none; }
.price-val { color: var(--navy); font-weight: 800; font-size: 18px; }

/* CSS #2-ийн benefit cards — CSS #1-ийн .why-card-тай давхардахгүй */
.benefits {
  padding: 60px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: -40px;
}

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}
.benefit-card:hover { transform: translateY(-10px); }
.benefit-card i { font-size: 40px; color: var(--navy); margin-bottom: 15px; }
.benefit-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.benefit-card p { font-size: 14px; color: var(--text-muted); }


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .how-layout { grid-template-columns: 1fr; }
  .email-visual { position: static; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); padding: 24px; box-shadow: var(--shadow); gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open + .nav-cta { display: block; position: fixed; top: 68px; right: 0; }
  .hero-stats { position: relative; bottom: auto; right: auto; margin-top: 40px; flex-wrap: wrap; }
  .color-results { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  /* CSS #2 mobile */
  .steps-container { flex-direction: column; align-items: center; }
  .pricing-table td, .pricing-table th { padding: 15px 10px; font-size: 14px; }
}

@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .color-results { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
