/* ═══════════════════════════════════════
   OnePoint Assistance — Design System
   Apple + Stripe + Notion Style
   ═══════════════════════════════════════ */

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

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-muted: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --text: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #eff6ff;
  --accent-border: #bfdbfe;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

p { color: var(--text-muted); line-height: 1.75; }

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-subtle);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.btn-secondary {
  background: var(--bg-muted);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
}

.nav-logo span { color: var(--accent); }

/* Logo mark — the "1" icon */
.logo-mark {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  font-style: normal;
  flex-shrink: 0;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(37,99,235,0.35);
}

.nav-logo em, .footer-logo em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg-subtle);
}

.nav-link.active {
  color: var(--accent);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.nav-dropdown-menu.wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  font-weight: 500;
}

.nav-dropdown-item:hover {
  background: var(--bg-subtle);
  color: var(--text);
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-menu-close {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-section {
  padding: 12px 0 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.mobile-nav-sub {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
}

.mobile-nav-sub:hover {
  background: var(--bg-subtle);
}

.mobile-cta {
  margin-top: 24px;
}

/* ── HERO ── */
.hero {
  padding: 120px 0 96px;
  text-align: center;
  background: var(--bg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-disclaimer {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card h4 {
  margin-bottom: 8px;
  font-size: 17px;
}

.card p {
  font-size: 14px;
  line-height: 1.65;
}

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.service-card .card-icon {
  margin-bottom: 0;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.service-card p {
  font-size: 14px;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
}

.service-card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.service-card:hover .service-card-link::after {
  transform: translateX(4px);
}

/* ── TRUST / FEATURE SECTION ── */
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-card .card-icon {
  margin-bottom: 0;
}

.trust-card h4 {
  font-size: 16px;
}

.trust-card p {
  font-size: 14px;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent-border), var(--border));
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step h4 {
  font-size: 17px;
}

.step p {
  font-size: 14px;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  font-family: var(--font);
  transition: background 0.15s;
}

.faq-question:hover {
  background: var(--bg-subtle);
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: all 0.2s;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  background: var(--accent-light);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.thank-you {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
}

.thank-you h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-info-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-content h5 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-content p, .contact-info-content a {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--accent);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.btn-white {
  background: #fff;
  color: var(--accent);
}

.btn-white:hover {
  background: var(--accent-light);
}

/* ── ARTICLE / RESOURCE ── */
.article-hero {
  padding: 80px 0 64px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-date {
  font-size: 13px;
  color: var(--text-light);
}

.article-body {
  padding: 64px 0;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.article-content ul, .article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.article-content .callout {
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
}

.article-content .callout p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.footer-logo span { color: #60a5fa; }

.footer-logo .logo-mark {
  width: 26px;
  height: 26px;
  font-size: 13px;
  border-radius: 7px;
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 100%);
  box-shadow: 0 2px 6px rgba(96,165,250,0.3);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: #fff; }

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 540px;
  line-height: 1.5;
  text-align: right;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 72px 0 64px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 17px;
}

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-text h2 {
  margin-bottom: 16px;
}

.about-intro-text p {
  margin-bottom: 16px;
  font-size: 16px;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.value-item h5 {
  font-size: 15px;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
}

/* ── LEGAL PAGES ── */
.legal-body {
  padding: 64px 0;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 48px;
  margin-bottom: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 15px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.inline-icon {
  display: inline;
  font-style: normal;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .page-hero { padding: 56px 0 48px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }

  .contact-grid { gap: 40px; }
  .cta-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 64px 0 48px; }
  .btn-lg { padding: 14px 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .nav-dropdown-menu.wide { min-width: 280px; grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .platform-grid { gap: 8px; }
}

/* ── HERO STATS BAR ── */
.stats-bar {
  display: flex;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.stat-item {
  flex: 1;
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ── PLATFORM BADGES ── */
.platform-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  text-align: center;
}

.platform-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 20px;
}

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto 16px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.15s;
}

.platform-badge:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-light);
}

.platform-note {
  font-size: 12px;
  color: var(--text-light);
}

/* ── HIGHLIGHT CARD (colored background) ── */
.highlight-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, #f0f9ff 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

/* ── RESOURCE PREVIEW CARDS ── */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.resource-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.resource-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.resource-card h4 {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}

.resource-card p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

.resource-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ── MOBILE LIQUID GLASS FAB ── */
.fab-call {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 997;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  /* Liquid glass base */
  background: linear-gradient(
    145deg,
    rgba(37, 99, 235, 0.88) 0%,
    rgba(79, 70, 229, 0.78) 50%,
    rgba(37, 99, 235, 0.88) 100%
  );
  /* Frosted glass */
  backdrop-filter: blur(28px) saturate(200%) brightness(1.12);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.12);
  /* Glass border with top shimmer */
  border: 1px solid rgba(255,255,255,0.42);
  /* Depth layers */
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.14),
    0 8px 32px rgba(37,99,235,0.5),
    0 2px 8px rgba(0,0,0,0.22);
  animation: fab-glow 2.8s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fab-call:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.14),
    0 14px 44px rgba(37,99,235,0.65),
    0 4px 12px rgba(0,0,0,0.22);
}

.fab-call:active {
  transform: scale(0.96);
}

.fab-icon {
  font-size: 19px;
  line-height: 1;
}

@keyframes fab-glow {
  0%, 100% {
    box-shadow:
      inset 0 1.5px 0 rgba(255,255,255,0.5),
      inset 0 -1px 0 rgba(0,0,0,0.14),
      0 8px 32px rgba(37,99,235,0.5),
      0 2px 8px rgba(0,0,0,0.22);
  }
  50% {
    box-shadow:
      inset 0 1.5px 0 rgba(255,255,255,0.5),
      inset 0 -1px 0 rgba(0,0,0,0.14),
      0 12px 48px rgba(37,99,235,0.72),
      0 2px 8px rgba(0,0,0,0.22),
      0 0 0 8px rgba(37,99,235,0.1);
  }
}

@media (max-width: 768px) {
  .fab-call { display: flex; }
  /* Push page content up so FAB doesn't overlap footer */
  .footer { padding-bottom: 96px; }
}

/* ── ENHANCED HERO VISUAL ── */
.hero-visual {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.hero-visual-card .card-icon {
  width: 36px;
  height: 36px;
  font-size: 18px;
  margin-bottom: 10px;
}

.hero-visual-card h5 {
  font-size: 14px;
  margin-bottom: 4px;
}

.hero-visual-card p {
  font-size: 12px;
}

@media (max-width: 768px) {
  .hero-visual { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ═══════════════════════════════════════
   ANIMATIONS & VISUAL POLISH
   ═══════════════════════════════════════ */

/* ── HERO ANIMATED BACKGROUND ── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 40%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.hero-orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, transparent 70%);
  top: -160px;
  left: -120px;
  animation: orb-drift-1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(109,40,217,0.22) 0%, transparent 70%);
  top: 40px;
  right: -60px;
  animation: orb-drift-2 26s ease-in-out infinite;
}

.hero-orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(16,185,129,0.16) 0%, transparent 70%);
  bottom: -60px;
  left: 38%;
  animation: orb-drift-3 18s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(55px,45px) scale(1.07); }
  66%      { transform: translate(-25px,65px) scale(0.94); }
}
@keyframes orb-drift-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-45px,30px) scale(1.1); }
  70%     { transform: translate(18px,-38px) scale(0.93); }
}
@keyframes orb-drift-3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-38px,-28px) scale(1.13); }
}

/* Animated grid mesh */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: grid-drift 32s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 56px 56px; }
}

/* ── MARQUEE STRIPS ── */
.marquee-strip {
  overflow: hidden;
  padding: 13px 0;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-strip.light {
  background: linear-gradient(90deg, #eff6ff, #f0f9ff, #eff6ff);
  border-color: var(--accent-border);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 42s linear infinite;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.marquee-strip.light .marquee-item { color: #3b82f6; }

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.marquee-strip.light .marquee-dot { background: #bfdbfe; }

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }
.reveal-delay-4 { transition-delay: 0.28s; }
.reveal-delay-5 { transition-delay: 0.35s; }
.reveal-delay-6 { transition-delay: 0.42s; }

/* ── ENHANCED CARD HOVERS ── */
.service-card {
  transition: all 0.25s ease;
}
.service-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 20px 56px rgba(37,99,235,0.13), 0 4px 16px rgba(0,0,0,0.07) !important;
  border-color: var(--accent-border) !important;
}

.trust-card {
  transition: all 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(37,99,235,0.11), 0 4px 12px rgba(0,0,0,0.06);
}

.card {
  transition: all 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(37,99,235,0.1), 0 4px 12px rgba(0,0,0,0.05);
  border-color: var(--accent-border);
}

.resource-card {
  transition: all 0.25s ease;
}
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(37,99,235,0.12), 0 4px 12px rgba(0,0,0,0.06);
  border-color: var(--accent-border);
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO BADGE SHIMMER ── */
.hero-badge {
  animation: badge-pulse 4s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
  50%     { box-shadow: 0 0 20px 3px rgba(37,99,235,0.14); }
}

/* ── STAT NUMBER COUNT-UP ANIMATION ── */
@keyframes count-pop {
  0%   { transform: scale(0.75); opacity: 0; }
  65%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.stat-number.animated {
  animation: count-pop 0.55s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* ── STEP NUMBER PULSE ── */
.step-number {
  animation: step-pulse 3.5s ease-in-out infinite;
}

@keyframes step-pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,99,235,0.22); }
  50%     { box-shadow: 0 4px 30px rgba(37,99,235,0.48), 0 0 0 7px rgba(37,99,235,0.07); }
}

/* ── CTA ANIMATED GRADIENT ── */
.cta-section {
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 40%, #2563eb 70%, #1d4ed8 100%);
  background-size: 250% 250%;
  animation: cta-gradient 9s ease infinite;
}

@keyframes cta-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── PLATFORM BADGE FLOAT ON HOVER ── */
.platform-badge {
  transition: all 0.2s ease;
}
.platform-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.15);
}

/* ── HIGHLIGHT CARD ANIMATE ── */
.highlight-card {
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(37,99,235,0.06) 25%, transparent 50%);
  animation: card-spin 12s linear infinite;
  pointer-events: none;
}

@keyframes card-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-grid, .marquee-track, .hero-badge,
  .step-number, .fab-call, .highlight-card::before {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
