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

/* ── TOKENS ── */
:root {
  --ink:      #0A0A0A;
  --ink2:     #2E2E2E;
  --ink3:     #666;
  --ink4:     #999;
  --ink5:     #C4C4C4;
  --bg:       #FFFFFF;
  --bg2:      #F7F7F5;
  --bg3:      #F0EFEC;
  --line:     #E5E5E2;
  --line2:    #EFEFED;
  --accent:   #1A1A2E;
  --red:      #D63031;
  --red-bg:   #FEF2F2;
  --green:    #0B7A5C;
  --green-bg: #F0FAF6;
  --green-bd: #A8DFCA;
  --teal:     #0D7377;
  --gold:     #C8973A;
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── DOT GRID BG ── */
.dot-grid::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle, #D4D4D0 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 40px;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.3px;
}
.nav-mark {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.nav-mark span {
  display: block; width: 10px; height: 10px;
  background: white; border-radius: 2.5px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--ink3);
  padding: 6px 12px; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg2); color: var(--ink); }
.nav-cta {
  background: var(--ink); color: white !important;
  padding: 8px 18px !important; border-radius: 10px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #222 !important; color: white !important; }

@media (max-width: 700px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
}

/* ── DEAL BANNER ── */
.deal-bar {
  background: var(--ink);
  color: white;
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  letter-spacing: 0.2px;
}
.deal-bar .tag {
  background: var(--red); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 9px; border-radius: 4px;
}
.deal-bar .blink-dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #FFD166;
  animation: blink 1.1s ease-in-out infinite; margin-right: 4px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.deal-bar .timer { color: #FFD166; font-weight: 700; font-variant-numeric: tabular-nums; }
.deal-bar .sep { opacity: 0.25; }

/* ── MAIN WRAPPER ── */
.page-wrap {
  position: relative; z-index: 1;
  max-width: 1080px; margin: 0 auto;
  padding: 0 32px 100px;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ink5);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; margin-top: 72px;
}
.section-label::after { content:''; flex:1; height:1px; background:var(--line); }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 40px 32px;
  background: var(--bg2);
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; margin-bottom: 10px;
}
.footer-tagline { font-size: 13px; color: var(--ink3); font-weight: 300; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink5); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--ink3); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1080px; margin: 28px auto 0;
  padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink5); flex-wrap: wrap; gap: 8px;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 32px 24px; }
  .page-wrap { padding: 0 20px 80px; }
}

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 11px; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.15s; text-decoration: none; letter-spacing: 0.1px; }
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: white; box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.btn-dark:hover { background: #222; box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink2); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-red { background: var(--red); color: white; box-shadow: 0 2px 12px rgba(214,48,49,0.2); }
.btn-red:hover { background: #b02525; }

/* ── CARDS ── */
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); }

/* ── PRICE STRIKETHROUGH ── */
.price-was { font-size: 14px; color: var(--ink5); text-decoration: line-through; font-weight: 400; }
.off-chip { background: var(--red); color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.5px; }

/* ── UTILS ── */
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-muted { color: var(--ink3); }
.fw-300 { font-weight: 300; }
.italic { font-style: italic; }

/* ── LANGUAGE BUTTON ── */
#langBtn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--line);
  color: var(--ink2); font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500; padding: 5px 14px;
  border-radius: 100px; cursor: pointer;
  transition: all 0.15s; white-space: nowrap; flex-shrink: 0;
}
#langBtn:hover { border-color: var(--ink); color: var(--ink); }

/* ── MOBILE NAV HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 4px;
  cursor: pointer; padding: 8px; border: none;
  background: transparent; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none; position: absolute; top: 60px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--line);
  padding: 12px 20px; z-index: 190; flex-direction: column; gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px; color: var(--ink2); padding: 10px 12px;
  border-radius: 8px; text-decoration: none; font-weight: 400;
  transition: background 0.15s;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--ink); }
.mobile-menu .nav-cta {
  background: var(--ink) !important; color: white !important;
  font-weight: 600 !important; margin-top: 6px;
}

@media (max-width: 700px) {
  .nav { padding: 0 16px; position: relative; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .deal-bar { font-size: 11px; gap: 8px; padding: 8px 12px; }
  .deal-bar .sep { display: none; }

  .page-wrap { padding: 0 16px 64px; }

  .section-label { margin-top: 48px; }

  .packages-grid,
  .pkg-grid,
  .ai-grid,
  .services-grid,
  .steps-grid,
  .trust-grid,
  .vals-grid,
  .services-list,
  .urgency-row,
  .contact-grid,
  .about-grid,
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .addons-grid { grid-template-columns: 1fr !important; }

  .hero { grid-template-columns: 1fr !important; gap: 32px; padding: 48px 0 36px; }
  .hero h1 { font-size: 42px !important; }

  .pricing-header h1 { font-size: 36px !important; }
  .page-header h1 { font-size: 36px !important; }

  .bottom-cta, .cta-section { padding: 40px 24px !important; }

  .footer { padding: 32px 16px 24px; }
  .footer-inner { gap: 20px !important; }

  .hbadges { justify-content: center; }

  .ai-strip { grid-template-columns: 1fr !important; gap: 20px; }
  .ai-feature-box { grid-template-columns: 1fr !important; }

  .contact-grid { grid-template-columns: 1fr !important; }
  .field-row { grid-template-columns: 1fr !important; }

  .hero-stats { gap: 16px; }

  .pkg-grid { border-radius: 12px; }
  .pkg { padding: 24px 20px; }
}

/* ── 503 / FONT FALLBACK ── */
/* If Google Fonts fails to load, fall back gracefully */
h1, h2, .pkg-name, .ai-name, .addon-price,
.stat-num, .trust-val, .urg-val, .ai-price,
.now-num, .big-price, .sc-title, .form-title,
.footer-logo, .page-header h1, .pricing-header h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}
body, .btn, .pkg-btn, .cta-btn, input, select, textarea, button {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* ── LANG BUTTON ── */
.lang-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink3);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-btn:hover { border-color: var(--ink); color: var(--ink); }

/* ── BLINK ANIMATION (used in deal bar) ── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
