@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Root Tokens */
:root {
  --navy:    #0F172A;
  --slate:   #1E293B;
  --indigo:  #6366F1;
  --indigo-light: #818CF8;
  --amber:   #F59E0B;
  --amber-dark: #D97706;
  --surface: #F8FAFC;
  --border:  #E2E8F0;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --white: #FFFFFF;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Dot-Grid Matrix Pattern (Signature Element) */
.matrix-bg {
  background-color: var(--navy);
  background-image: radial-gradient(circle, rgba(99,102,241,0.25) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
}
.matrix-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.0) 0%, rgba(15,23,42,0.7) 100%);
  pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99,102,241,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--indigo);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
  padding: 7px;
}
.logo-mark span {
  background: white;
  border-radius: 1px;
  display: block;
}
.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}
.logo-text em {
  color: var(--amber);
  font-style: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(99,102,241,0.15);
  color: var(--indigo-light);
}
.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--slate);
  border-top: 1px solid rgba(99,102,241,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(99,102,241,0.1); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--indigo);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.btn-primary:hover { background: #4F52D8; box-shadow: 0 6px 20px rgba(99,102,241,0.45); }
.btn-amber {
  background: var(--amber);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}
.btn-amber:hover { background: var(--amber-dark); }
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-ghost {
  background: transparent;
  color: var(--indigo);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.btn-ghost:hover { background: rgba(99,102,241,0.08); }

/* Section Wrapper */
.section {
  padding: 5rem 1.5rem;
}
.section-sm { padding: 3rem 1.5rem; }
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(68px + 3.5rem) 1.5rem 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 .accent { color: var(--amber); }
.hero h1 .accent-indigo { color: var(--indigo-light); }

.hero-sub-muted {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: clamp(1.35rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-top: 0.15em;
}

.hero-sub {
  color: rgba(255,255,255,0.74);
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  max-width: 520px;
  margin: 1.35rem 0 1.75rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .eyebrow-pill {
  margin-bottom: 1.25rem;
}

/* Cards */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,0.1);
  transform: translateY(-3px);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block;
  background: rgba(99,102,241,0.1);
  color: var(--indigo);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--indigo);
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.6rem; }

/* Comparison Table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  background: var(--navy);
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  text-align: left;
}
.compare-table th:first-child { border-radius: 10px 0 0 0; }
.compare-table th:last-child { border-radius: 0 10px 0 0; }
.compare-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--slate);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #F1F5F9; }
.compare-table tr:hover td { background: rgba(99,102,241,0.04); }
.check { color: #22C55E; font-size: 0.95rem; }
.cross { color: #EF4444; font-size: 0.95rem; }
.partial { color: var(--amber); font-size: 0.95rem; }

/* Feature Grid */
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  background: rgba(99,102,241,0.1);
  color: var(--indigo);
}
.feature-icon.amber { background: rgba(245,158,11,0.1); color: var(--amber-dark); }
.feature-icon.green { background: rgba(34,197,94,0.1); color: #16A34A; }

.feature-block {
  text-align: center;
  padding: 2rem 1.5rem;
}
.feature-block.bordered {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.feature-block h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-block p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Icon Chips & Boxes */
.icon-chip {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: rgba(99,102,241,0.1);
  color: var(--indigo);
}
.icon-chip.amber { background: rgba(245,158,11,0.1); color: var(--amber-dark); }
.icon-chip.green { background: rgba(34,197,94,0.1); color: #16A34A; }

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.icon-row strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.icon-row span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.group-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-divider {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  border-bottom: 2px solid var(--indigo);
  padding-bottom: 0.6rem;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Value Pillars (replaces stat counters) */
.value-bar {
  background: var(--indigo);
  padding: 3rem 1.5rem;
}
.pillar-item {
  text-align: center;
  padding: 0 1rem;
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--amber);
  font-size: 1.1rem;
}
.pillar-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
}
.pillar-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* Philosophy / Info Bar */
.philosophy-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.philosophy-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.philosophy-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--slate);
}
.philosophy-item i { color: var(--amber); }
.philosophy-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* Dark Cards */
.dark-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}
.dark-card i {
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}
.dark-card h4 {
  color: white;
  font-family: 'Sora', sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.dark-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  line-height: 1.6;
}

.name-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}
.name-card i {
  font-size: 1.75rem;
  color: var(--indigo);
  margin-bottom: 1rem;
  display: block;
}
.name-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.name-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Process Steps */
.process-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 14px;
  padding: 1.75rem;
}
.step-badge {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  margin-bottom: 1rem;
}
.step-badge.indigo { background: var(--indigo); }
.step-badge.amber { background: var(--amber); color: var(--navy); }
.step-badge.green { background: #22C55E; }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99,102,241,0.1);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--indigo); }
.note-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--indigo);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
}
.note-box h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.note-box h4 i { color: var(--indigo); }
.note-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.contact-links a {
  font-size: 0.875rem;
  color: var(--indigo);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-links a:hover { color: var(--amber-dark); }
.form-submit { width: 100%; justify-content: center; }

/* Brand Showdown Cards */
.brand-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.brand-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,0.1);
  transform: translateY(-3px);
}
.brand-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.brand-card-body { padding: 1.5rem; }
.brand-vs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.brand-vs .vs-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.criteria-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.criteria-list li i {
  color: var(--indigo);
  font-size: 0.65rem;
}

/* Hero Float Card */
.hero-float {
  position: relative;
  width: 100%;
  max-width: 340px;
  background: rgba(30,41,59,0.92);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(15,23,42,0.35);
}

.hero-float::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99,102,241,0.35), rgba(245,158,11,0.15));
  z-index: -1;
  opacity: 0.6;
}

.hero-float-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--indigo-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-float-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.hero-float-cell {
  height: 7px;
  border-radius: 3px;
}

.hero-float-cell.indigo { background: var(--indigo); }
.hero-float-cell.amber { background: var(--amber); }
.hero-float-cell.green { background: #22C55E; }
.hero-float-cell.muted { background: rgba(255,255,255,0.15); }

.hero-float-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-float-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.hero-float-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
}

.hero-float-list i {
  color: var(--amber);
  font-size: 0.7rem;
}

/* Eyebrow Variants */
.eyebrow-pill {
  color: var(--amber-dark);
  background: rgba(245,158,11,0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}
.eyebrow-pill::before { display: none; }
.eyebrow.amber { color: var(--amber); }
.eyebrow.amber::before { background: var(--indigo-light); }

.section-head.text-center p {
  margin-left: auto;
  margin-right: auto;
}
.section-head.light h2 { color: white; }
.section-head.light p { color: rgba(255,255,255,0.7); }

.bg-white { background: white; }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy); position: relative; overflow: hidden; }
.bg-navy-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.relative-z { position: relative; z-index: 1; }

.filter-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 68px;
  z-index: 50;
}
.filter-bar-inner {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.use-case-label i { color: var(--amber); font-size: 0.7rem; }

.compare-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

/* Tag Cloud */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--slate);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.tag:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: rgba(99,102,241,0.05);
}

/* Split / 50-50 */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 420px;
}

/* stats bar */
.stats-bar {
  background: var(--indigo);
  padding: 3rem 1.5rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--indigo);
  font-size: 0.75rem;
  transition: background 0.2s, transform 0.3s, color 0.2s;
}
.faq-item.open .faq-icon {
  background: var(--indigo);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 0.9rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1060 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-banner h2 { color: white; font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 460px; margin: 0 auto 2rem; }

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.1rem;
  letter-spacing: 0.03em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: calc(68px + 3.5rem) 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--indigo-light); }
.breadcrumb a:hover { color: var(--amber); }

/* Dark surface */
.dark-surface {
  background: var(--slate);
  color: white;
  border-radius: 14px;
  padding: 2rem;
}

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.section-head { margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--navy); }
.section-head p { color: var(--text-muted); font-size: 1rem; max-width: 580px; line-height: 1.7; margin-top: 0.75rem; }

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(245,158,11,0.06) 100%);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px;
  padding: 1.75rem;
}

/* Best Pick Badge */
.best-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Table Wrapper */
.table-wrap { overflow-x: auto; border-radius: 12px; box-shadow: 0 2px 12px rgba(15,23,42,0.07); }

/* Contact Form */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.12); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split { gap: 2.5rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .hero-float {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero {
    min-height: auto;
    padding: calc(68px + 2.25rem) 1.25rem 3rem;
  }
  .hero-br { display: none; }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
  .hero-sub-muted {
    font-size: clamp(1.15rem, 5vw, 1.5rem);
  }
  .hero-sub {
    margin: 1rem 0 1.5rem;
  }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 280px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .feature-block.bordered { border: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-divider { display: none; }
  .name-card + .name-card { border-top: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(68px + 1.75rem) 1rem 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-float {
    padding: 1.25rem;
  }
  .hero-float-list li {
    font-size: 0.78rem;
  }
  .btn { width: 100%; justify-content: center; }
}

html,
body {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

.feature-block{
    text-align:center;
}

.feature-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    font-size:28px;
    background:#eef4ff;
    color:#2563eb;
}

.feature-icon.amber{
    background:#fff7e8;
    color:#d97706;
}

.feature-icon.green{
    background:#ecfdf5;
    color:#16a34a;
}

.feature-block h3{
    margin-bottom:12px;
}

.feature-block p{
    max-width:260px;
    margin:0 auto 20px;
}

.feature-block .card-link{
    justify-content:center;
}