/* ===========================
   KAIZEN ANALYTICS — main.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --navy-deep:   #041245;
  --navy-main:   #0A2E71;
  --navy-mid:    #09215F;
  --navy-dark:   #000B17;
  --gold:        #C9A25D;
  --gold-dark:   #C3831C;
  --teal:        #1D3E49;
  --teal-light:  #93B8B8;
  --cream:       #E0D8CE;
  --bg:          #EFEFEF;
  --white:       #FFFFFF;
  --text:        #111827;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;

  --font-head: 'Lexend Exa', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(10,46,113,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; color: var(--navy-main); font-weight: 600; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--navy-dark); }
.section-navy { background: var(--navy-main); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-primary   { background: var(--navy-main); color: var(--white); border-color: var(--navy-main); }
.btn-primary:hover   { background: var(--navy-deep); border-color: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-gold      { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover      { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,162,93,.35); }
.btn-outline   { background: transparent; color: var(--navy-main); border-color: var(--navy-main); }
.btn-outline:hover   { background: var(--navy-main); color: var(--white); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.badge-gold { background: rgba(201,162,93,.12); color: var(--gold-dark); }
.badge-navy { background: rgba(10,46,113,.1); color: var(--navy-main); }
.badge-white { background: rgba(255,255,255,.15); color: var(--white); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 400;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all .15s;
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--navy-main); background: var(--bg); }
.nav-links a.active { color: var(--navy-main); font-weight: 600; }
.nav-cta { margin-left: 8px; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: default; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .82rem;
}
.nav-dropdown-menu a:hover { background: var(--bg); }
.nav-dropdown-menu a .icon { font-size: 1rem; }

/* Mobile Nav */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--navy-main); border-radius: 2px; transition: .2s; }

/* ── HERO ── */
.hero {
  padding: 88px 0 80px;
  background: var(--white);
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content:''; display:block; width:32px; height:2px; background: var(--gold); }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--gold-dark); }
.hero-sub { font-size: 1.1rem; max-width: 540px; margin-bottom: 36px; color: var(--text-muted); }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-trust { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); }
.hero-trust-label { font-family: var(--font-head); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.hero-trust-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.trust-logo { font-family: var(--font-head); font-size: .85rem; font-weight: 600; color: var(--text-muted); opacity: .6; }

/* ── STATS ── */
.stats-bar { background: var(--navy-main); padding: 48px 0; }
.stats-bar .grid-4 { text-align: center; }
.stat-item { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.stat-number { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-number span { color: var(--gold); }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.65); letter-spacing: .05em; text-transform: uppercase; font-family: var(--font-head); }
.stat-divider { width: 1px; background: rgba(255,255,255,.15); height: 48px; align-self: center; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all .25s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(10,46,113,.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.card-icon.gold { background: rgba(201,162,93,.1); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .9rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-main);
  letter-spacing: .02em;
  margin-top: 20px;
  transition: gap .2s;
}
.card-link:hover { gap: 10px; color: var(--gold-dark); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: all .25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.featured {
  background: var(--navy-main);
  border-color: var(--navy-main);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,.65); }
.pricing-price { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 8px; }
.pricing-currency { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--navy-main); margin-top: 8px; }
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.8); }
.pricing-amount { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--navy-main); line-height: 1; }
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-period { font-family: var(--font-head); font-size: .75rem; color: var(--text-muted); margin-top: 12px; align-self: flex-end; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.55); }
.pricing-desc { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.7); }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.15); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.85); }
.pricing-feature .check { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: 2px; }

/* ── BLOG ── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.blog-card-img {
  height: 200px;
  background: var(--navy-main);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-body { padding: 28px 28px 32px; }
.blog-category {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy-main); line-height: 1.4; }
.blog-card-body p { font-size: .875rem; margin-bottom: 16px; }
.blog-meta { font-family: var(--font-head); font-size: .72rem; color: var(--text-muted); display: flex; gap: 16px; }

/* ── BLOG ARTICLE ── */
.article-header { background: var(--navy-main); padding: 80px 0 60px; }
.article-header h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.article-meta { display: flex; gap: 24px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.article-meta span { font-family: var(--font-head); font-size: .75rem; color: rgba(255,255,255,.65); letter-spacing: .05em; }
.article-content { max-width: 720px; margin: 64px auto; padding: 0 24px; }
.article-content h2 { color: var(--navy-main); margin: 48px 0 16px; font-size: 1.5rem; }
.article-content h3 { color: var(--navy-main); margin: 32px 0 12px; font-size: 1.15rem; }
.article-content p { color: var(--text); margin-bottom: 20px; font-size: 1rem; line-height: 1.85; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
.article-content li { color: var(--text); margin-bottom: 8px; line-height: 1.75; font-size: 1rem; }
.article-cta { background: var(--bg); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin: 56px 0; }
.article-cta h3 { color: var(--navy-main); margin-bottom: 12px; }
.article-cta p { margin-bottom: 24px; }

/* ── CONTACT FORM ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-family: var(--font-head); font-size: .75rem; font-weight: 600; color: var(--navy-main); letter-spacing: .05em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color .15s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--navy-main); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--navy-main); margin-bottom: 8px; }
.form-success p { font-size: .9rem; }

/* ── HERO FORM (inline) ── */
.hero-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
}
.hero-form h3 { font-size: 1.1rem; color: var(--navy-main); margin-bottom: 6px; }
.hero-form p { font-size: .83rem; color: var(--text-muted); margin-bottom: 24px; }
.hero-form .form-group { margin-bottom: 14px; }
.ai-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .75rem;
  color: var(--text-muted);
  font-family: var(--font-head);
}
.ai-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h3 { color: var(--navy-main); margin-bottom: 8px; }
.step-content p { font-size: .9rem; }

/* ── SERVICE PAGE HERO ── */
.service-hero { background: var(--navy-main); padding: 96px 0 80px; }
.service-hero h1 { color: var(--white); margin-bottom: 20px; }
.service-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; }
.service-hero .hero-actions { margin-top: 36px; }

/* ── FEATURE LIST ── */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-check {
  width: 28px;
  height: 28px;
  background: rgba(10,46,113,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--navy-main);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h4 { font-family: var(--font-head); font-size: .95rem; color: var(--navy-main); margin-bottom: 4px; }
.feature-item p { font-size: .875rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy-main);
  padding: 88px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-family: var(--font-head); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); font-family: var(--font-head); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .15s; font-family: var(--font-head); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── BREADCRUMB ── */
.breadcrumb { font-family: var(--font-head); font-size: .75rem; color: var(--text-muted); margin-bottom: 32px; display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--navy-main); }
.breadcrumb span { color: var(--text-muted); opacity: .5; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(201,162,93,.08);
  border: 1px solid rgba(201,162,93,.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.highlight-box h4 { color: var(--navy-main); font-family: var(--font-head); margin-bottom: 8px; }
.highlight-box p { font-size: .9rem; color: var(--text); }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.testimonial-quote { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-main); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-family: var(--font-head); font-size: .875rem; font-weight: 600; color: var(--navy-main); }
.testimonial-role { font-size: .8rem; color: var(--text-muted); }

/* ── DASHBOARD VISUAL ── */
.dashboard-mockup {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.dash-header { display: flex; align-items: center; gap: 12px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-title { font-family: var(--font-head); font-size: .75rem; color: rgba(255,255,255,.4); }
.dash-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.dash-kpi { background: rgba(255,255,255,.05); border-radius: 8px; padding: 14px; }
.dash-kpi-val { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.dash-kpi-lbl { font-family: var(--font-head); font-size: .6rem; color: rgba(255,255,255,.4); margin-top: 4px; }
.dash-kpi-trend { font-family: var(--font-head); font-size: .65rem; color: #4ade80; margin-top: 4px; }
.dash-body { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; flex: 1; }
.dash-chart { background: rgba(255,255,255,.04); border-radius: 8px; padding: 14px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; }
.dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.dash-bar { flex: 1; border-radius: 3px 3px 0 0; }
.dash-panel { display: flex; flex-direction: column; gap: 10px; }
.dash-item { background: rgba(255,255,255,.04); border-radius: 8px; padding: 12px; flex: 1; }
.dash-item-label { font-family: var(--font-head); font-size: .6rem; color: rgba(255,255,255,.4); margin-bottom: 6px; }

/* ── UTILS ── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.full-width { width: 100%; }
.color-gold { color: var(--gold-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-3px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 56px 0; }
  .hero-form { max-width: 100%; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  .stats-bar .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .form-card { padding: 28px 20px; }
  .hero-form { padding: 28px 24px; }
}
