/* ═══════════════════════════════════════════════════════════
   Techlined — Global Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary:       #2563EB;
  --primary-dark:  #1D4ED8;
  --primary-light: #EFF6FF;
  --primary-muted: #BFDBFE;
  --text:          #0F172A;
  --text-2:        #1E293B;
  --muted:         #64748B;
  --faint:         #94A3B8;
  --border:        #E2E8F0;
  --surface:       #F8FAFC;
  --surface-2:     #F1F5F9;
  --white:         #FFFFFF;
  --green:         #16A34A;
  --green-bg:      #DCFCE7;
  --amber:         #D97706;
  --amber-bg:      #FEF9C3;
  --red:           #DC2626;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 60px rgba(0,0,0,0.14);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  --max-w: 1160px;
  --header-h: 68px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 6px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: var(--primary-light);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  padding: 8px 16px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .15s, background .15s;
}
.btn-ghost:hover { color: var(--primary); background: var(--primary-light); }

.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border-radius: var(--r-md); font-size: 14px; font-weight: 600; transition: all .18s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,.35); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: var(--white); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--r-lg); }
.btn-xl { padding: 16px 36px; font-size: 16px; border-radius: var(--r-lg); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); }

/* Hamburger */
.nav-toggle {
  display: none; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm); color: var(--muted);
  transition: background .15s;
}
.nav-toggle:hover { background: var(--surface); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 20px 24px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 16px; border-radius: var(--r-md);
  font-size: 16px; font-weight: 500; color: var(--text-2);
  transition: background .15s, color .15s;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--primary-light); color: var(--primary); }
.mobile-nav .mob-cta { margin-top: 16px; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(160deg, #f0f7ff 0%, #fff 60%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary-light); border: 1px solid var(--primary-muted);
  color: var(--primary); border-radius: 100px;
  padding: 5px 14px; font-size: 12px; font-weight: 600;
  margin-bottom: 22px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--primary); }
.hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-value { font-size: 26px; font-weight: 800; color: var(--primary); }
.hero-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; }

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.mockup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  transition: transform .3s;
}
.mockup-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.mockup-card:nth-child(2) { margin-left: 32px; }
.mockup-card:nth-child(3) { margin-right: 32px; }
.mc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mc-icon { width: 36px; height: 36px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mc-icon.blue { background: var(--primary-light); color: var(--primary); }
.mc-icon.green { background: var(--green-bg); color: var(--green); }
.mc-icon.amber { background: var(--amber-bg); color: var(--amber); }
.mc-title { font-weight: 600; font-size: 14px; color: var(--text); }
.mc-sub { font-size: 11px; color: var(--muted); }
.mc-bar-row { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.mc-bar-bg { flex: 1; height: 6px; background: var(--surface-2); border-radius: 3px; overflow: hidden; }
.mc-bar { height: 100%; border-radius: 3px; }
.mc-pct { font-size: 12px; font-weight: 700; }

/* ─────────────────────────────────────────────────────────
   COMMON SECTION
───────────────────────────────────────────────────────── */
section { padding: 88px 0; }
section.bg-surface { background: var(--surface); }
section.bg-dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #fff;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -.5px; line-height: 1.18;
  color: var(--text); margin-bottom: 14px;
}
.section-title.white { color: #fff; }

.section-sub {
  font-size: 17px; color: var(--muted);
  max-width: 560px; line-height: 1.7;
}
.section-sub.white { color: var(--faint); }
.section-sub.center { text-align: center; margin: 0 auto; }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }

/* ─────────────────────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-muted); }
.product-card:hover::before { transform: scaleX(1); }

.product-card.featured {
  border-color: var(--primary);
  background: linear-gradient(145deg, #fff 0%, var(--primary-light) 100%);
}
.product-card.featured::before { transform: scaleX(1); }

.pc-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.pc-icon.blue  { background: var(--primary-light); }
.pc-icon.green { background: var(--green-bg); }
.pc-icon.amber { background: var(--amber-bg); }

.pc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 14px;
}
.pc-badge.live { background: var(--green-bg); color: var(--green); }
.pc-badge.soon { background: var(--amber-bg); color: var(--amber); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

.pc-name { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

.pc-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.pc-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
}
.pc-feature::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%232563EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.pc-cta { width: 100%; text-align: center; justify-content: center; }
.pc-soon-note {
  text-align: center; font-size: 13px; color: var(--muted);
  padding: 12px; background: var(--surface); border-radius: var(--r-md);
}

/* ─────────────────────────────────────────────────────────
   WHY TECHLINED — FEATURES GRID
───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.fc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.fc-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.fc-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   STATS
───────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.stat-item {
  padding: 40px 24px;
  background: rgba(255,255,255,.05);
  text-align: center;
  transition: background .2s;
}
.stat-item:hover { background: rgba(255,255,255,.1); }
.stat-num { font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
.stat-num span { color: var(--primary-muted); }
.stat-label { font-size: 13px; color: var(--faint); margin-top: 6px; }

/* ─────────────────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: #0F172A;
  color: #fff;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 280px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-desc { font-size: 13px; color: var(--faint); line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--faint); font-size: 15px;
  transition: background .15s, color .15s;
}
.social-link:hover { background: var(--primary); color: #fff; }

.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-links a:hover { color: #fff; }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.fci-icon { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.fci-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ─────────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(160deg, #f0f7ff, #fff);
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.mission-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.5px; }
.mission-text p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 28px; border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  text-align: center;
}
.value-icon { font-size: 36px; margin-bottom: 12px; }
.value-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 20px;
  text-align: center; transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary-light); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: var(--primary);
}
.team-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--muted); }

.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-dot {
  position: absolute; left: -28px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary-muted);
}
.tl-year { font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.tl-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.tl-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border-radius: var(--r-xl); padding: 40px 32px; color: #fff;
}
.contact-info-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 32px; line-height: 1.6; }
.cinfo-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.cinfo-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.cinfo-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.cinfo-value { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.5; }

.contact-form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form-card p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: 14px; color: var(--text); background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-success {
  display: none; text-align: center; padding: 32px;
  background: var(--green-bg); border-radius: var(--r-lg);
}
.form-success.show { display: block; }
.form-success h4 { font-size: 18px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.form-success p { color: #166534; font-size: 14px; }

/* ─────────────────────────────────────────────────────────
   LEGAL PAGES (Privacy / Terms)
───────────────────────────────────────────────────────── */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-toc {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
}
.toc-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc-links { display: flex; flex-direction: column; gap: 4px; }
.toc-links a {
  font-size: 13px; color: var(--muted); padding: 6px 10px;
  border-radius: var(--r-sm); transition: background .15s, color .15s;
}
.toc-links a:hover { background: var(--primary-light); color: var(--primary); }

.legal-content { min-width: 0; }
.legal-section { margin-bottom: 44px; }
.legal-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.legal-section h3 { font-size: 17px; font-weight: 600; margin: 18px 0 8px; color: var(--text-2); }
.legal-section p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { margin: 10px 0 14px 20px; }
.legal-section ul li { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-meta { font-size: 13px; color: var(--faint); margin-bottom: 32px; padding: 14px 18px; background: var(--surface); border-radius: var(--r-md); }

/* ─────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────── */
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s, transform .5s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  section { padding: 60px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
