/* =============================================
   Quantix Marketing Site — Unified Stylesheet
   Brand: #FF6B1A (orange) | #1a2f6e (blue)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────── */
:root {
  --orange:        #FF6B1A;
  --orange-hover:  #e85c0e;
  --orange-light:  rgba(255,107,26,.12);
  --blue-dark:     #1a2f6e;
  --blue-mid:      #2a4494;
  --blue-light:    #3a5bc4;
  --blue-xlight:   #eef2ff;
  --white:         #ffffff;
  --off-white:     #f8f9fa;
  --card-bg:       #f1f3f5;
  --text-dark:     #1a1a2e;
  --text-gray:     #6c757d;
  --border:        #e0e0e0;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.14);
  --radius:        12px;
  --radius-sm:     6px;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset & Base ──────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* ─── Utility ───────────────────────────────── */
.container { max-width:1160px; margin:0 auto; padding:0 24px; }
.section-tag {
  display:inline-block;
  background:var(--orange-light);
  color:var(--orange);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:4px 14px;
  border-radius:20px;
  margin-bottom:16px;
}
.section-title {
  font-size:clamp(28px,4vw,44px);
  font-weight:800;
  line-height:1.2;
  color:var(--text-dark);
  margin-bottom:14px;
}
.section-sub {
  font-size:17px;
  color:var(--text-gray);
  max-width:560px;
  margin:0 auto 56px;
  text-align:center;
}
.text-center { text-align:center; }
.highlight { color:var(--orange); }

/* ─── Buttons ───────────────────────────────── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:inherit;
  font-weight:600;
  font-size:15px;
  border-radius:var(--radius-sm);
  padding:12px 28px;
  cursor:pointer;
  border:none;
  transition:all var(--transition);
  white-space:nowrap;
}
.btn-primary {
  background:var(--orange);
  color:var(--white);
}
.btn-primary:hover {
  background:var(--orange-hover);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(255,107,26,.35);
}
.btn-outline {
  background:transparent;
  color:var(--white);
  border:2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background:var(--white);
  color:var(--blue-dark);
  border-color:var(--white);
}
.btn-outline-dark {
  background:transparent;
  color:var(--blue-dark);
  border:2px solid var(--blue-dark);
}
.btn-outline-dark:hover {
  background:var(--blue-dark);
  color:var(--white);
}
.btn-lg { font-size:16px; padding:15px 34px; }
.btn-sm { font-size:13px; padding:9px 20px; }
.btn-wa {
  background:#25D366;
  color:var(--white);
}
.btn-wa:hover {
  background:#1db954;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(37,211,102,.35);
}

/* ─── Navbar ────────────────────────────────── */
.navbar {
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:0 0;
  background:rgba(26,47,110,.95);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow:0 4px 24px rgba(0,0,0,.18);
  background:rgba(26,47,110,.98);
}
.nav-inner {
  max-width:1160px;
  margin:0 auto;
  padding:0 24px;
  height:68px;
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-logo {
  font-size:26px;
  font-weight:800;
  letter-spacing:-.5px;
  flex-shrink:0;
}
.nav-logo .lo { color:var(--white); }
.nav-logo .lo-o { color:var(--orange); }
.nav-links {
  display:flex;
  align-items:center;
  gap:4px;
  flex:1;
}
.nav-links a {
  color:rgba(255,255,255,.8);
  font-size:14px;
  font-weight:500;
  padding:6px 14px;
  border-radius:var(--radius-sm);
  transition:all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color:var(--white);
  background:rgba(255,255,255,.1);
}
.nav-actions {
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.nav-actions .btn { padding:9px 22px; font-size:14px; }
/* hamburger */
.hamburger {
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:36px;
  height:36px;
  cursor:pointer;
  padding:4px;
  border-radius:6px;
  transition:background var(--transition);
  margin-left:auto;
}
.hamburger:hover { background:rgba(255,255,255,.1); }
.hamburger span {
  display:block;
  height:2px;
  background:var(--white);
  border-radius:2px;
  transition:all var(--transition);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
/* mobile drawer */
.mobile-drawer {
  display:none;
  position:fixed;
  top:68px; left:0; right:0; bottom:0;
  background:rgba(26,47,110,.97);
  backdrop-filter:blur(12px);
  z-index:999;
  flex-direction:column;
  padding:32px 24px;
  gap:8px;
  overflow-y:auto;
  transform:translateX(100%);
  transition:transform var(--transition);
}
.mobile-drawer.open {
  display:flex;
  transform:translateX(0);
}
.mobile-drawer a {
  color:rgba(255,255,255,.85);
  font-size:17px;
  font-weight:600;
  padding:14px 16px;
  border-radius:8px;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:all var(--transition);
}
.mobile-drawer a:hover { color:var(--white); background:rgba(255,255,255,.08); }
.mobile-drawer .mob-actions {
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-drawer .mob-actions .btn { width:100%; justify-content:center; }

/* ─── Hero ──────────────────────────────────── */
.hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 55%, var(--blue-light) 100%);
  overflow:hidden;
  padding-top:68px;
}
.hero-particles {
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}
.hero-particles span {
  position:absolute;
  width:2px; height:2px;
  background:rgba(255,255,255,.4);
  border-radius:50%;
  animation:float linear infinite;
}
@keyframes float {
  0%   { transform:translateY(100vh) scale(0); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:.6; }
  100% { transform:translateY(-10vh) scale(1.5); opacity:0; }
}
/* grid overlay */
.hero::before {
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.hero-inner {
  position:relative;
  z-index:1;
  width:100%;
  max-width:1160px;
  margin:0 auto;
  padding:80px 24px 80px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.hero-content {}
.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  color:rgba(255,255,255,.9);
  font-size:13px;
  font-weight:600;
  padding:6px 16px;
  border-radius:20px;
  margin-bottom:24px;
}
.hero-badge .dot {
  width:7px; height:7px;
  background:var(--orange);
  border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.hero h1 {
  font-size:clamp(36px,5vw,60px);
  font-weight:800;
  color:var(--white);
  line-height:1.1;
  margin-bottom:20px;
  letter-spacing:-.02em;
}
.hero h1 em {
  font-style:normal;
  color:var(--orange);
}
.hero-desc {
  font-size:18px;
  color:rgba(255,255,255,.8);
  margin-bottom:36px;
  max-width:480px;
  line-height:1.7;
}
.hero-btns {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:44px;
}
.hero-trust {
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,.6);
  font-size:13px;
}
.hero-trust-avatars {
  display:flex;
}
.hero-trust-avatars span {
  width:30px; height:30px;
  border-radius:50%;
  background:var(--blue-mid);
  border:2px solid rgba(255,255,255,.4);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
  color:var(--white);
  margin-right:-8px;
}
/* chart illustration */
.hero-visual {
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-chart {
  width:100%;
  max-width:480px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:28px;
  backdrop-filter:blur(8px);
}
.chart-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}
.chart-title { color:rgba(255,255,255,.7); font-size:13px; font-weight:600; }
.chart-value { color:var(--white); font-size:22px; font-weight:800; }
.chart-badge {
  background:rgba(72,199,120,.2);
  color:#48c778;
  font-size:12px;
  font-weight:700;
  padding:4px 10px;
  border-radius:20px;
}
.chart-svg { width:100%; height:140px; }
.chart-stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
}
.chart-stat-label { color:rgba(255,255,255,.5); font-size:11px; margin-bottom:4px; }
.chart-stat-val {
  color:var(--white);
  font-size:16px;
  font-weight:700;
}
.chart-stat-val.up { color:#48c778; }
.chart-stat-val.down { color:#fc8181; }
/* floating badge */
.hero-float-badge {
  position:absolute;
  background:var(--white);
  border-radius:12px;
  padding:12px 18px;
  box-shadow:var(--shadow-lg);
  animation:bob 3s ease-in-out infinite;
}
.hero-float-badge.f1 { top:8%; right:-4%; }
.hero-float-badge.f2 { bottom:12%; left:-6%; }
@keyframes bob {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-8px); }
}
.hfb-label { color:var(--text-gray); font-size:11px; margin-bottom:3px; }
.hfb-val { color:var(--text-dark); font-size:15px; font-weight:800; }
.hfb-val.green { color:#22c55e; }

/* ─── Trust Bar ─────────────────────────────── */
.trust-bar {
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:36px 0;
}
.trust-bar-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:32px;
}
.trust-label {
  font-size:13px;
  color:var(--text-gray);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.trust-stats {
  display:flex;
  gap:48px;
  flex-wrap:wrap;
}
.trust-stat {}
.trust-num {
  font-size:28px;
  font-weight:800;
  color:var(--text-dark);
  line-height:1;
}
.trust-num span { color:var(--orange); }
.trust-desc {
  font-size:13px;
  color:var(--text-gray);
  margin-top:3px;
}
.trust-mo {
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 20px;
  border:2px solid var(--border);
  border-radius:8px;
}
.trust-mo-icon { font-size:24px; }
.trust-mo-text { font-size:13px; font-weight:600; color:var(--text-dark); }

/* ─── Section Wrappers ──────────────────────── */
.section { padding:96px 0; }
.section-alt { background:var(--off-white); }
.section-dark {
  background:linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color:var(--white);
}
.section-dark .section-title { color:var(--white); }
.section-dark .section-sub { color:rgba(255,255,255,.7); }

/* ─── Feature Cards ─────────────────────────── */
.features-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.feature-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  transition:all var(--transition);
  position:relative;
  overflow:hidden;
}
.feature-card::before {
  content:'';
  position:absolute;
  left:0; top:0; bottom:0;
  width:3px;
  background:var(--orange);
  transform:scaleY(0);
  transition:transform var(--transition);
  transform-origin:bottom;
}
.feature-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.feature-card:hover::before { transform:scaleY(1); }
.feat-icon {
  font-size:40px;
  margin-bottom:18px;
  display:block;
}
.feature-card h3 {
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--text-dark);
}
.feature-card p {
  font-size:14px;
  color:var(--text-gray);
  line-height:1.7;
}

/* ─── How It Works ──────────────────────────── */
.steps-row {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
}
.steps-row::before {
  content:'';
  position:absolute;
  top:40px; left:calc(50%/3); right:calc(50%/3);
  height:2px;
  background:linear-gradient(90deg, var(--orange), var(--blue-light));
  z-index:0;
}
.step-item { text-align:center; padding:0 24px; position:relative; z-index:1; }
.step-circle {
  width:80px; height:80px;
  background:linear-gradient(135deg, var(--orange), #ff9a4a);
  color:var(--white);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
  margin:0 auto 24px;
  box-shadow:0 8px 24px rgba(255,107,26,.35);
  position:relative;
}
.step-circle .step-icon {
  font-size:32px;
  position:absolute;
  top:-12px; right:-12px;
  background:var(--white);
  border-radius:50%;
  width:36px; height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow:var(--shadow-sm);
}
.step-item h3 {
  font-size:19px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--text-dark);
}
.step-item p { font-size:14px; color:var(--text-gray); line-height:1.7; }

/* ─── Why Quantix ───────────────────────────── */
.why-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.why-left h2 {
  font-size:clamp(28px,3.5vw,40px);
  font-weight:800;
  color:var(--white);
  margin-bottom:18px;
  line-height:1.2;
}
.why-left p {
  color:rgba(255,255,255,.7);
  font-size:16px;
  margin-bottom:32px;
}
.why-benefits {
  display:flex;
  flex-direction:column;
  gap:18px;
}
.why-benefit {
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.why-check {
  width:28px; height:28px;
  background:var(--orange);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:13px;
  color:var(--white);
  font-weight:800;
}
.why-benefit-text h4 { font-size:15px; font-weight:700; color:var(--white); margin-bottom:3px; }
.why-benefit-text p { font-size:13px; color:rgba(255,255,255,.6); line-height:1.5; }
.why-image {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;
  padding:36px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.why-stat-card {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:20px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.why-stat-label { color:rgba(255,255,255,.6); font-size:13px; }
.why-stat-val { color:var(--white); font-size:22px; font-weight:800; }
.why-stat-val.pos { color:#48c778; }

/* ─── Testimonials ──────────────────────────── */
.carousel-wrap { position:relative; overflow:hidden; }
.carousel-track {
  display:flex;
  gap:24px;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}
.testimonial-card {
  flex:0 0 calc(33.333% - 16px);
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow-sm);
  transition:all var(--transition);
}
.testimonial-card:hover {
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}
.tcard-stars { color:var(--orange); font-size:18px; margin-bottom:14px; letter-spacing:2px; }
.tcard-quote { font-size:14px; color:#444; line-height:1.75; margin-bottom:20px; font-style:italic; }
.tcard-footer { display:flex; align-items:center; gap:12px; }
.tcard-avatar {
  width:44px; height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:700;
  color:var(--white);
  flex-shrink:0;
}
.tcard-name { font-size:14px; font-weight:700; color:var(--text-dark); }
.tcard-role { font-size:12px; color:var(--text-gray); }
.tcard-badge {
  display:inline-flex;
  align-items:center;
  gap:5px;
  background:var(--orange-light);
  color:var(--orange);
  font-size:11px;
  font-weight:600;
  padding:3px 10px;
  border-radius:20px;
  margin-top:6px;
}
.carousel-dots {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:36px;
}
.carousel-dot {
  width:8px; height:8px;
  border-radius:50%;
  background:var(--border);
  cursor:pointer;
  transition:all var(--transition);
  border:none;
}
.carousel-dot.active { background:var(--orange); width:24px; border-radius:4px; }
.carousel-nav {
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:20px;
}
.carousel-btn {
  width:40px; height:40px;
  border-radius:50%;
  border:2px solid var(--border);
  background:var(--white);
  cursor:pointer;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all var(--transition);
}
.carousel-btn:hover {
  border-color:var(--orange);
  color:var(--orange);
  box-shadow:0 4px 12px rgba(255,107,26,.2);
}

/* ─── FAQ ───────────────────────────────────── */
.faq-list { max-width:780px; margin:0 auto; }
.faq-item {
  border:1px solid var(--border);
  border-radius:var(--radius);
  margin-bottom:12px;
  overflow:hidden;
  transition:border-color var(--transition), box-shadow var(--transition);
  background:var(--white);
}
.faq-item:hover { border-color:var(--blue-mid); box-shadow:var(--shadow-sm); }
.faq-item.open { border-color:var(--orange); }
.faq-q {
  width:100%;
  padding:20px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:inherit;
  font-size:15px;
  font-weight:600;
  color:var(--text-dark);
  gap:16px;
}
.faq-arrow {
  width:28px; height:28px;
  border-radius:50%;
  background:var(--off-white);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:all var(--transition);
  color:var(--orange);
  font-size:14px;
}
.faq-item.open .faq-arrow { background:var(--orange); color:var(--white); transform:rotate(180deg); }
.faq-body {
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
}
.faq-body-inner {
  padding:0 24px 20px;
  font-size:14px;
  color:var(--text-gray);
  line-height:1.75;
  border-top:1px solid var(--border);
  padding-top:16px;
}
.faq-item.open .faq-body { max-height:400px; }

/* ─── Contact ───────────────────────────────── */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:60px;
  align-items:start;
}
.contact-info {}
.contact-info h2 {
  font-size:clamp(26px,3vw,38px);
  font-weight:800;
  margin-bottom:14px;
}
.contact-info > p { color:var(--text-gray); font-size:15px; margin-bottom:32px; line-height:1.7; }
.contact-methods { display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.contact-method {
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:18px;
  background:var(--off-white);
  border-radius:var(--radius);
  border:1px solid var(--border);
  transition:all var(--transition);
}
.contact-method:hover { border-color:var(--orange); box-shadow:var(--shadow-sm); }
.cm-icon {
  width:44px; height:44px;
  background:var(--orange-light);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}
.cm-label { font-size:12px; color:var(--text-gray); margin-bottom:2px; font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.cm-val { font-size:15px; font-weight:700; color:var(--text-dark); }
.cm-link { font-size:12px; color:var(--orange); font-weight:600; margin-top:4px; display:block; }
.support-topics h4 { font-size:14px; font-weight:700; margin-bottom:12px; }
.topic-list { display:flex; flex-wrap:wrap; gap:8px; }
.topic-pill {
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--off-white);
  border:1px solid var(--border);
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  color:var(--text-dark);
}
.topic-pill::before { content:'✓'; color:var(--orange); }
/* Contact form */
.contact-form-wrap {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  padding:40px;
  box-shadow:var(--shadow-sm);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { margin-bottom:20px; }
.form-group label {
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--text-dark);
  margin-bottom:8px;
}
.form-group label .req { color:#ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%;
  padding:12px 16px;
  border:2px solid var(--border);
  border-radius:8px;
  font-size:14px;
  font-family:inherit;
  color:var(--text-dark);
  background:var(--white);
  transition:all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none;
  border-color:var(--blue-mid);
  box-shadow:0 0 0 3px rgba(42,68,148,.1);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-notice {
  text-align:center;
  margin-top:16px;
  font-size:13px;
  color:var(--text-gray);
}
.form-notice a { color:var(--orange); font-weight:600; }
.form-feedback {
  padding:14px 18px;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  margin-bottom:20px;
  display:none;
}
.form-feedback.success { background:#dcfce7; color:#166534; border:1px solid #bbf7d0; display:block; }
.form-feedback.error   { background:#fef2f2; color:#991b1b; border:1px solid #fecaca; display:block; }

/* ─── Pricing ───────────────────────────────── */
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  align-items:start;
}
.price-card {
  background:var(--white);
  border:2px solid var(--border);
  border-radius:20px;
  padding:36px 28px;
  position:relative;
  transition:all var(--transition);
}
.price-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.price-card.featured {
  border-color:var(--orange);
  box-shadow:0 12px 40px rgba(255,107,26,.18);
  transform:scale(1.03);
}
.price-card.featured:hover { transform:scale(1.03) translateY(-4px); }
.price-badge {
  position:absolute;
  top:-14px; left:50%;
  transform:translateX(-50%);
  background:var(--orange);
  color:var(--white);
  font-size:12px;
  font-weight:700;
  padding:5px 18px;
  border-radius:20px;
  white-space:nowrap;
  letter-spacing:.04em;
}
.price-tier { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--text-gray); margin-bottom:8px; }
.price-name { font-size:22px; font-weight:800; color:var(--text-dark); margin-bottom:8px; }
.price-amount {
  display:flex;
  align-items:baseline;
  gap:4px;
  margin:20px 0 24px;
}
.price-currency { font-size:22px; font-weight:700; color:var(--text-dark); }
.price-num { font-size:48px; font-weight:800; color:var(--text-dark); line-height:1; }
.price-num.featured-num { color:var(--orange); }
.price-period { font-size:14px; color:var(--text-gray); }
.price-desc { font-size:13px; color:var(--text-gray); margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--border); line-height:1.6; }
.price-features { list-style:none; margin-bottom:32px; display:flex; flex-direction:column; gap:12px; }
.price-features li {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:var(--text-dark);
}
.price-features li .fi {
  width:20px; height:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:800;
  flex-shrink:0;
}
.price-features li .fi.yes { background:#dcfce7; color:#16a34a; }
.price-features li .fi.no  { background:#f1f5f9; color:#94a3b8; }
.price-features li.no-feat { color:var(--text-gray); }
.price-card .btn { width:100%; justify-content:center; }

/* Pricing extras */
.pricing-includes {
  margin-top:64px;
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px;
}
.pricing-includes h3 { font-size:16px; font-weight:700; margin-bottom:24px; text-align:center; }
.includes-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.include-item { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--text-dark); }
.include-item::before { content:'✓'; color:var(--orange); font-weight:800; font-size:15px; }
.risk-notice {
  margin-top:24px;
  padding:16px 20px;
  background:#fefce8;
  border:1px solid #fde047;
  border-radius:8px;
  font-size:13px;
  color:#713f12;
  text-align:center;
}

/* ─── About Page ─────────────────────────────── */
.about-hero {
  background:linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding:140px 0 80px;
  text-align:center;
  color:var(--white);
}
.about-hero h1 { font-size:clamp(32px,5vw,56px); font-weight:800; margin-bottom:16px; }
.about-hero p { font-size:18px; color:rgba(255,255,255,.75); max-width:560px; margin:0 auto; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-img-wrap {
  background:linear-gradient(135deg, var(--blue-xlight), #e0e7ff);
  border-radius:20px;
  aspect-ratio:1;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:96px;
  position:relative;
  overflow:hidden;
}
.about-img-wrap::after {
  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='%23667eea' fill-opacity='0.08'%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");
}
.about-text h2 { font-size:clamp(24px,3vw,36px); font-weight:800; margin-bottom:16px; }
.about-text p { font-size:15px; color:var(--text-gray); line-height:1.8; margin-bottom:14px; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px 22px;
  text-align:center;
  transition:all var(--transition);
}
.value-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--orange); }
.value-icon { font-size:40px; margin-bottom:14px; }
.value-card h3 { font-size:17px; font-weight:700; margin-bottom:8px; }
.value-card p { font-size:13px; color:var(--text-gray); line-height:1.7; }
.tech-list { display:flex; flex-direction:column; gap:14px; }
.tech-item {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  background:var(--off-white);
  border-radius:10px;
  font-size:14px;
  color:var(--text-dark);
  font-weight:500;
}
.tech-item::before { content:'→'; color:var(--orange); font-weight:800; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.team-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px;
  text-align:center;
  transition:all var(--transition);
}
.team-card:hover { box-shadow:var(--shadow-md); border-color:var(--blue-mid); }
.team-avatar {
  width:80px; height:80px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:800;
  color:var(--white);
}
.team-name { font-size:17px; font-weight:700; margin-bottom:4px; }
.team-role { font-size:13px; color:var(--orange); font-weight:600; margin-bottom:10px; }
.team-bio { font-size:13px; color:var(--text-gray); line-height:1.6; }

/* ─── Page Hero (non-home) ──────────────────── */
.page-hero {
  background:linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding:140px 0 72px;
  text-align:center;
  color:var(--white);
}
.page-hero h1 { font-size:clamp(30px,5vw,52px); font-weight:800; margin-bottom:14px; }
.page-hero p { font-size:17px; color:rgba(255,255,255,.75); max-width:540px; margin:0 auto; }

/* ─── CTA Banner ─────────────────────────────── */
.cta-banner {
  background:linear-gradient(135deg, var(--orange) 0%, #ff9a4a 100%);
  padding:72px 0;
  text-align:center;
}
.cta-banner h2 { font-size:clamp(26px,3.5vw,40px); font-weight:800; color:var(--white); margin-bottom:12px; }
.cta-banner p { color:rgba(255,255,255,.85); font-size:16px; margin-bottom:32px; }
.cta-banner .btn-outline { border-color:rgba(255,255,255,.7); }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ─── Footer ─────────────────────────────────── */
.footer {
  background:var(--blue-dark);
  color:var(--white);
  padding:72px 0 0;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:48px;
  margin-bottom:56px;
}
.footer-brand .footer-logo { font-size:26px; font-weight:800; margin-bottom:12px; }
.footer-brand .footer-logo .lo-o { color:var(--orange); }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.55); line-height:1.7; max-width:240px; margin-bottom:20px; }
.footer-socials { display:flex; gap:10px; }
.footer-social {
  width:36px; height:36px;
  border-radius:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  transition:all var(--transition);
  cursor:pointer;
}
.footer-social:hover { background:var(--orange); border-color:var(--orange); }
.footer-col h4 {
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.5);
  margin-bottom:20px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a {
  color:rgba(255,255,255,.65);
  font-size:13px;
  transition:color var(--transition);
}
.footer-col ul li a:hover { color:var(--white); }
.footer-contact-item {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
  font-size:13px;
  color:rgba(255,255,255,.65);
}
.footer-contact-item .fci-icon { font-size:16px; margin-top:1px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom p { font-size:12px; color:rgba(255,255,255,.4); }

/* ─── Scroll Animations ─────────────────────── */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity:1; transform:none; }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity:1; transform:none; }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity:1; transform:none; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width:1024px) {
  .features-grid    { grid-template-columns:repeat(2,1fr); }
  .footer-grid      { grid-template-columns:1fr 1fr; }
  .pricing-grid     { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .price-card.featured { transform:none; }
  .includes-grid    { grid-template-columns:repeat(2,1fr); }
  .why-inner        { grid-template-columns:1fr; }
  .why-image        { display:none; }
}
@media (max-width:768px) {
  .section { padding:64px 0; }
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }
  .mobile-drawer { display:flex; transform:translateX(100%); }
  .mobile-drawer.open { transform:translateX(0); }
  .hero-inner { grid-template-columns:1fr; padding-top:48px; }
  .hero-visual { display:none; }
  .trust-bar-inner { flex-direction:column; text-align:center; }
  .trust-stats { justify-content:center; gap:28px; }
  .steps-row { grid-template-columns:1fr; }
  .steps-row::before { display:none; }
  .step-item { margin-bottom:32px; }
  .features-grid { grid-template-columns:1fr; }
  .testimonial-card { flex:0 0 100%; }
  .contact-grid { grid-template-columns:1fr; }
  .about-grid  { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .team-grid   { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .form-row    { grid-template-columns:1fr; }
  .contact-form-wrap { padding:24px; }
}
@media (max-width:480px) {
  .footer-grid { grid-template-columns:1fr; }
  .trust-stats { flex-direction:column; gap:20px; }
  .hero-btns   { flex-direction:column; }
  .hero-btns .btn { width:100%; justify-content:center; }
  .cta-btns    { flex-direction:column; align-items:center; }
}
