/* =============================================
   AITMAC SaaS Theme — Main Stylesheet v1.0.2
   ============================================= */

/* ── WordPress Core Reset (prevent WP theme styles from leaking in) ── */
.navbar a, .site-footer a, .hero a, .btn { text-decoration: none !important; }
button, input, select, textarea { font-family: inherit; }
/* Ensure sections are always visible regardless of WP block editor wrappers */
section, .section, .hero, .logos-strip, .site-footer {
  display: block !important;
  visibility: visible !important;
}
img { max-width: 100%; height: auto; }

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

:root {
  --primary:    #6366f1;
  --primary-dk: #4f46e5;
  --accent:     #06b6d4;
  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-3:     #334155;
  --light:      #f8fafc;
  --muted:      #94a3b8;
  --white:      #ffffff;
  --gradient:   linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12);
  --shadow-md:  0 4px 20px rgba(0,0,0,.15);
  --shadow-lg:  0 10px 40px rgba(99,102,241,.25);
  --radius:     12px;
  --radius-lg:  20px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: all .2s; }
a:hover { color: var(--accent); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { color: var(--muted); line-height: 1.75; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  background: rgba(99,102,241,.15);
  color: var(--primary);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(99,102,241,.4); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(99,102,241,.08); }

.btn-light {
  background: var(--white);
  color: var(--dark);
}
.btn-light:hover { background: var(--light); transform: translateY(-2px); color: var(--dark); }

.btn-sm { padding: 10px 22px; font-size: .85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all .3s;
}
.navbar.scrolled {
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,.35) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(6,182,212,.2) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content { position: relative; text-align: center; max-width: 860px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { margin-bottom: 24px; }
.hero .subtitle { font-size: 1.2rem; max-width: 620px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* --- Logos Strip --- */
.logos-strip {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.logos-strip p { text-align: center; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 28px; }
.logos-grid { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.logo-item { color: rgba(255,255,255,.3); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(99,102,241,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border: 1px solid rgba(99,102,241,.2);
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { font-size: .9rem; }

/* --- How It Works --- */
.how-bg { background: rgba(255,255,255,.02); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(99,102,241,.3) 50%, transparent 95%);
}
.step-card { text-align: center; padding: 24px; position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(99,102,241,.12);
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .9rem; max-width: 240px; margin: 0 auto; }

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all .3s;
}
.pricing-card.popular {
  background: linear-gradient(135deg, rgba(99,102,241,.15) 0%, rgba(6,182,212,.08) 100%);
  border-color: rgba(99,102,241,.4);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--muted); font-weight: 500; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount { font-size: 3.2rem; font-weight: 800; color: var(--white); }
.price-period { color: var(--muted); font-size: .9rem; }
.price-desc { font-size: .85rem; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.pricing-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--muted); }
.pricing-features li.disabled::before { content: '✕'; color: var(--dark-3); }
.pricing-card .btn { width: 100%; justify-content: center; }

/* --- Testimonials --- */
.testimonials-bg { background: rgba(255,255,255,.015); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all .3s;
}
.testimonial-card:hover { border-color: rgba(99,102,241,.25); transform: translateY(-3px); }
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: .9rem; }
.reviewer-role { font-size: .8rem; color: var(--muted); }

/* --- FAQ Section --- */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.faq-question {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white) !important;
  gap: 16px;
  background: none !important;
  border: none !important;
  width: 100%;
  text-align: left;
  user-select: none;
  -webkit-user-select: none;
}
.faq-icon { font-size: 1.2rem; color: var(--primary); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: .9rem; }

/* --- CTA Section --- */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.2) 0%, rgba(6,182,212,.15) 100%);
  border-top: 1px solid rgba(99,102,241,.2);
  border-bottom: 1px solid rgba(99,102,241,.2);
}
.cta-content { position: relative; max-width: 680px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 20px; }
.cta-content p { margin-bottom: 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.site-footer {
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: .85rem; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: var(--muted);
  transition: all .2s;
}
.social-link:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .875rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8rem;
  color: var(--muted);
}

/* --- Interior Pages --- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(99,102,241,.25) 0%, transparent 65%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- About Page --- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story .content h2 { margin-bottom: 20px; }
.about-story .content p { margin-bottom: 16px; }
.about-visual {
  background: linear-gradient(135deg, rgba(99,102,241,.15) 0%, rgba(6,182,212,.1) 100%);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.about-visual .big-num { font-size: 5rem; font-weight: 900; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: .85rem; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: .85rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px; }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { font-size: .85rem; }

/* --- Services Page --- */
.services-hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.service-card-big {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: all .3s;
}
.service-card-big:hover { border-color: rgba(99,102,241,.3); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2.5rem; margin-bottom: 24px; }
.service-card-big h3 { font-size: 1.3rem; margin-bottom: 14px; }
.service-card-big p { margin-bottom: 20px; }
.service-features-list { list-style: none; }
.service-features-list li { padding: 6px 0; font-size: .875rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px; }
.service-features-list li::before { content: '→'; color: var(--primary); }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 4px; }
.contact-item-text span { color: rgba(255,255,255,.85); font-size: .9rem; }
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font);
  font-size: .9rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary); background: rgba(99,102,241,.08); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* --- Blog Page --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.post-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}
.post-card:hover { border-color: rgba(99,102,241,.25); transform: translateY(-3px); }
.post-thumb { height: 200px; background: linear-gradient(135deg, rgba(99,102,241,.2), rgba(6,182,212,.2)); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.post-content { padding: 28px; }
.post-meta { display: flex; gap: 12px; font-size: .78rem; color: var(--muted); margin-bottom: 12px; }
.post-tag { color: var(--primary); font-weight: 600; }
.post-content h3 { margin-bottom: 10px; font-size: 1.1rem; }
.post-content h3 a { color: var(--white); }
.post-content h3 a:hover { color: var(--primary); }
.post-content p { font-size: .875rem; margin-bottom: 20px; }
.read-more { font-size: .85rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* --- Legal Pages --- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin: 48px 0 16px; font-size: 1.4rem; }
.legal-content h3 { margin: 32px 0 12px; font-size: 1.1rem; color: rgba(255,255,255,.85); }
.legal-content p { margin-bottom: 16px; font-size: .93rem; }
.legal-content ul,
.legal-content ol { margin: 0 0 16px 24px; }
.legal-content li { font-size: .93rem; color: var(--muted); margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--primary); }
.legal-meta { background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.2); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 48px; font-size: .85rem; }
.legal-meta strong { color: var(--white); }

/* --- Animations --- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 48px 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(15,23,42,.97);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-cta .btn:first-child { display: none; }
  .pricing-card.popular { transform: none; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 28px; }
  .about-story { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
