/* =============================================
   ViTech Cloud – Main Stylesheet
   Design: Refined Nordic Tech – Light, Clean, Professional
   ============================================= */

/* ─── CSS Variables ─── */
:root {
  --primary:       #0B2F5C;
  --primary-light: #1A4D8F;
  --accent:        #1E7FD9;
  --accent-hover:  #1568B8;
  --teal:          #00B4A0;
  --teal-hover:    #009688;
  --orange:        #F47B20;
  --bg:            #FFFFFF;
  --bg-alt:        #F4F7FB;
  --bg-card:       #FFFFFF;
  --border:        #E2EAF4;
  --text:          #1A2438;
  --text-muted:    #5A6B84;
  --text-light:    #8595AB;
  --footer-bg:     #0A1E3C;
  --footer-text:   #A8BAD0;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 20px rgba(11, 47, 92, 0.08);
  --shadow-md:     0 8px 40px rgba(11, 47, 92, 0.12);
  --shadow-lg:     0 16px 60px rgba(11, 47, 92, 0.16);
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-arabic:   'Noto Kufi Arabic', 'DM Sans', sans-serif;
  --transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height:    72px;
}

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

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 40px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.75; }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(30, 127, 217, 0.08);
  border: 1px solid rgba(30, 127, 217, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem;
  padding: 12px 24px; border-radius: 10px; transition: var(--transition);
  white-space: nowrap; text-decoration: none; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,127,217,0.3); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-hover); transform: translateY(-1px); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-outline { border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-ghost { color: var(--primary); }
.btn-ghost:hover { background: var(--bg-alt); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; }
.btn-full { width: 100%; }
.btn-icon { display: inline-flex; align-items: center; gap: 8px; }
.btn i { font-size: 0.875em; }

/* ─── Announcement Bar ─── */
.announcement-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.ann-link { color: var(--teal); font-weight: 600; }
.ann-link:hover { text-decoration: underline; }

/* ─── Header & Navbar ─── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(11,47,92,0.1); }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); gap: 24px;
}

.navbar-brand { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 65px; width: auto; }
.logo-text { display: flex; align-items: center; font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; letter-spacing: -0.03em; }
.logo-vi { color: var(--primary); }
.logo-tech { color: var(--accent); }
.logo-cloud { color: var(--teal); }

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-link {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
  color: var(--text); padding: 8px 12px; border-radius: 8px;
  transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(30,127,217,0.06); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  width: 520px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 12px;
  opacity: 0; visibility: hidden; transition: var(--transition);
  pointer-events: none;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dropdown-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 8px; transition: var(--transition); color: var(--text);
}
.dropdown-item:hover { background: var(--bg-alt); }
.dropdown-item i { color: var(--accent); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.dropdown-item strong { font-size: 0.875rem; font-weight: 600; display: block; color: var(--primary); }
.dropdown-item small { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 2px; }
.dropdown-all { background: var(--bg-alt); border: 1px solid var(--border); }
.dropdown-all:hover { background: rgba(30,127,217,0.06); border-color: var(--accent); }

/* Nav controls */
.nav-controls { display: flex; align-items: center; gap: 8px; }

/* Switchers */
.currency-switcher, .lang-switcher { position: relative; }
.switcher-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  padding: 6px 10px; border-radius: 8px; border: 1px solid var(--border);
  background: #fff; transition: var(--transition); cursor: pointer;
}
.switcher-btn:hover { border-color: var(--accent); color: var(--accent); }
.switcher-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); min-width: 160px; padding: 6px;
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 200;
}
.switcher-dropdown.open { opacity: 1; visibility: visible; }
.switcher-option {
  display: block; padding: 8px 12px; font-size: 0.875rem; border-radius: 6px;
  color: var(--text); transition: var(--transition);
}
.switcher-option:hover, .switcher-option.active { background: var(--bg-alt); color: var(--accent); font-weight: 600; }

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 6px; border-radius: 8px;
  border: 1px solid var(--border); background: #fff;
}
.mobile-toggle span { display: block; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Mobile overlay ─── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 30, 60, 0.5); opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: absolute; top: 0; right: 0; width: min(380px, 90vw);
  height: 100vh; overflow-y: auto;
  background: #fff; padding: 24px;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-overlay.open .mobile-menu { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu li a {
  display: block; padding: 12px 16px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  color: var(--text); transition: var(--transition);
}
.mobile-menu li a:hover { background: var(--bg-alt); color: var(--accent); }
.mobile-lang, .mobile-currency {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.mobile-lang a, .mobile-currency a {
  padding: 6px 14px; border-radius: 100px; border: 1px solid var(--border);
  font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
}
.mobile-lang a.active, .mobile-currency a.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ─── Hero Section ─── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, #EFF5FF 50%, #F4F7FB 100%);
  padding: 80px 0 100px;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,127,217,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,160,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,127,217,0.06); border: 1px solid rgba(30,127,217,0.2);
  color: var(--accent); padding: 8px 16px; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-title { margin-bottom: 20px; color: var(--primary); }
.hero-title strong { color: var(--accent); }
.hero-subtitle { font-size: 1.125rem; line-height: 1.75; margin-bottom: 32px; }
.hero-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.hero-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; font-weight: 500; color: var(--text);
}
.hero-feat::before {
  content: ''; display: inline-block; width: 20px; height: 20px;
  border-radius: 50%; background: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-card-stack {
  position: relative; background: #fff; border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 32px;
}
.hero-stat {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid var(--border); border-top: 1px solid var(--border);
  background: #fff;
}
.hero-stat:nth-child(4) { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* Dashboard preview */
.dashboard-preview {
  padding: 20px; background: var(--bg-alt);
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.dash-title { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; }
.dash-dots { display: flex; gap: 5px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot:nth-child(1) { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FFBE2E; }
.dash-dot:nth-child(3) { background: #28C840; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.dash-metric {
  background: #fff; border-radius: 10px; padding: 12px;
  border: 1px solid var(--border);
}
.dash-metric-val { font-size: 1.25rem; font-weight: 800; font-family: var(--font-display); color: var(--primary); }
.dash-metric-lbl { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.dash-metric-trend { font-size: 0.7rem; color: var(--teal); font-weight: 600; }
.dash-chart { background: #fff; border-radius: 10px; padding: 12px; border: 1px solid var(--border); }
.dash-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.dash-bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--accent); opacity: 0.2; transition: var(--transition); }
.dash-bar.active { opacity: 1; }
.dash-bar:nth-child(even) { background: var(--teal); opacity: 0.6; }

/* Floating badge */
.hero-float-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-size: 0.875rem;
}
.float-icon {
  width: 36px; height: 36px; background: rgba(0,180,160,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1.1rem;
}
.float-label { font-size: 0.7rem; color: var(--text-muted); }
.float-val { font-weight: 700; font-family: var(--font-display); color: var(--primary); }

/* Trusted by logos */
.trusted-by {
  padding: 48px 0; border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.trusted-label {
  text-align: center; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trusted-logo {
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700;
  color: var(--text-light); opacity: 0.6; transition: var(--transition);
}
.trusted-logo:hover { opacity: 1; color: var(--primary); }

/* ─── Services Grid ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,127,217,0.03), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.service-icon.blue { background: rgba(30,127,217,0.1); color: var(--accent); }
.service-icon.teal { background: rgba(0,180,160,0.1); color: var(--teal); }
.service-icon.orange { background: rgba(244,123,32,0.1); color: var(--orange); }
.service-icon.navy { background: rgba(11,47,92,0.08); color: var(--primary); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.service-card p { font-size: 0.9rem; line-height: 1.65; }
.service-price {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 4px;
}
.price-amount { font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; color: var(--primary); }
.price-period { font-size: 0.8125rem; color: var(--text-muted); }
.service-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.875rem; font-weight: 600; color: var(--accent);
  margin-top: 12px; transition: var(--transition);
}
.service-link:hover { gap: 8px; }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.badge-popular { background: rgba(30,127,217,0.1); color: var(--accent); }
.badge-value { background: rgba(0,180,160,0.1); color: var(--teal); }
.badge-enterprise { background: rgba(11,47,92,0.08); color: var(--primary); }
.service-badge { position: absolute; top: 16px; right: 16px; }

/* ─── Why section ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 32px; border-radius: var(--radius-lg); text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.why-icon {
  width: 60px; height: 60px; border-radius: 14px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.why-icon.blue { background: rgba(30,127,217,0.1); color: var(--accent); }
.why-icon.teal { background: rgba(0,180,160,0.1); color: var(--teal); }
.why-icon.orange { background: rgba(244,123,32,0.1); color: var(--orange); }
.why-icon.navy { background: rgba(11,47,92,0.08); color: var(--primary); }
.why-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; }

/* ─── Testimonials ─── */
.testimonials { background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(30,127,217,0.3); }
.testimonial-stars { color: #F5A623; font-size: 0.875rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 0.9375rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-company { font-size: 0.8rem; color: var(--accent); }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff; text-align: center; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: 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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-outline-white { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ─── Pricing ─── */
.pricing-toggle {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  margin-bottom: 48px;
}
.toggle-option { font-size: 0.9375rem; font-weight: 600; color: var(--text-muted); }
.toggle-option.active { color: var(--primary); }
.toggle-switch {
  width: 52px; height: 28px; background: var(--border);
  border-radius: 100px; position: relative; cursor: pointer; transition: var(--transition);
  border: none;
}
.toggle-switch.annual { background: var(--accent); }
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%; background: #fff;
  transition: var(--transition);
}
.toggle-switch.annual::after { left: 27px; }
.toggle-badge {
  background: rgba(0,180,160,0.1); color: var(--teal); padding: 3px 10px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700;
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.pricing-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition); position: relative;
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(30,127,217,0.08);
}
.pricing-card.popular .popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 16px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.pricing-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary); }
.pricing-period { font-size: 0.875rem; color: var(--text-muted); }
.pricing-original { font-size: 0.875rem; color: var(--text-light); text-decoration: line-through; margin-left: 8px; }
.pricing-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text);
}
.pricing-features li::before {
  content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.pricing-divider { border: 0; border-top: 1px solid var(--border); margin-bottom: 20px; }

/* Enterprise card */
.pricing-enterprise {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; text-align: center; padding: 48px; border-radius: var(--radius-lg);
  margin-top: 40px; position: relative; overflow: hidden;
}
.pricing-enterprise::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.pricing-enterprise h2 { color: #fff; margin-bottom: 8px; }
.pricing-enterprise p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.enterprise-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px;
}
.ent-feat {
  background: rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.9);
}
.ent-feat::before { content: '✓'; font-weight: 700; color: var(--teal); }

/* ─── Cases ─── */
.cases-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px; font-size: 0.875rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-muted); background: #fff;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.case-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.case-img {
  height: 180px; background: linear-gradient(135deg, var(--bg-alt), var(--border));
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.case-img-overlay {
  position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(11,47,92,0.4));
}
.case-category {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.9); padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; color: var(--primary);
}
.case-body { padding: 24px; }
.case-body h3 { margin-bottom: 4px; }
.case-location { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 12px; }
.case-description { font-size: 0.9rem; margin-bottom: 16px; }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.case-tag {
  background: var(--bg-alt); padding: 3px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
}
.case-results {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
  margin-bottom: 16px;
}
.case-result { text-align: center; }
.case-result-num { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--accent); }
.case-result-lbl { font-size: 0.7rem; color: var(--text-muted); }
.case-quote {
  background: var(--bg-alt); border-radius: 8px; padding: 12px 16px;
  font-size: 0.875rem; font-style: italic; color: var(--text);
  border-left: 3px solid var(--accent); margin-bottom: 16px;
}
.case-link { font-size: 0.875rem; font-weight: 600; color: var(--accent); transition: var(--transition); }
.case-link:hover { gap: 8px; }

/* ─── FAQ ─── */
.faq-search {
  max-width: 500px; margin: 0 auto 40px; position: relative;
}
.faq-search-input {
  width: 100%; padding: 14px 16px 14px 48px; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 0.9375rem; outline: none;
  transition: var(--transition); background: #fff;
}
.faq-search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,127,217,0.08); }
.faq-search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-light); }
.faq-sections { display: flex; flex-direction: column; gap: 40px; }
.faq-section-title { font-size: 1.25rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 8px;
}
.faq-question {
  width: 100%; text-align: left; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 600;
  color: var(--text); background: #fff; cursor: pointer; transition: var(--transition);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question.open { color: var(--accent); background: rgba(30,127,217,0.03); }
.faq-icon { transition: transform var(--transition); color: var(--text-muted); flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(180deg); color: var(--accent); }
.faq-answer { display: none; padding: 0 20px 20px; font-size: 0.9375rem; line-height: 1.75; color: var(--text-muted); }
.faq-answer.open { display: block; }
.faq-answer ul, .faq-answer ol { padding-left: 20px; margin: 12px 0; }
.faq-answer li { margin-bottom: 6px; }

/* ─── Blog ─── */
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
  height: 180px; background: linear-gradient(135deg, var(--bg-alt), var(--border));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-category {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; }
.blog-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 16px;
  font-size: 0.8rem; color: var(--text-muted);
}
.blog-author { display: flex; align-items: center; gap: 6px; }
.blog-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.blog-read-more { color: var(--accent); font-weight: 600; font-size: 0.875rem; }

/* ─── About ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual {
  position: relative; background: linear-gradient(135deg, var(--bg-alt), #E8F0FF);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
  border: 1px solid var(--border);
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat-item { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); text-align: center; }
.about-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); }
.about-stat-lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.what-we-do { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.wwd-item { display: flex; align-items: flex-start; gap: 12px; }
.wwd-icon { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.wwd-text { font-size: 0.9375rem; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-alt); }
.value-card h4 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.875rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { text-align: center; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff;
}
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8125rem; color: var(--text-muted); }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(30,127,217,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--primary); }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-control {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.9375rem; outline: none; transition: var(--transition); background: var(--bg);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(30,127,217,0.08); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; cursor: pointer; }
.form-alert {
  padding: 12px 16px; border-radius: 8px; font-size: 0.875rem; font-weight: 500;
  margin-bottom: 16px; display: none;
}
.form-alert.success { background: rgba(0,180,160,0.1); color: var(--teal); border: 1px solid rgba(0,180,160,0.3); }
.form-alert.error { background: rgba(244,67,54,0.08); color: #D32F2F; border: 1px solid rgba(244,67,54,0.2); }

/* ─── Docs ─── */
.docs-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.docs-sidebar {
  position: sticky; top: 80px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.docs-sidebar-title { padding: 16px 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.docs-nav { padding: 12px; }
.docs-nav-item {
  display: block; padding: 8px 12px; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.docs-nav-item:hover, .docs-nav-item.active { background: rgba(30,127,217,0.06); color: var(--accent); }
.docs-content { min-height: 400px; }
.docs-section { margin-bottom: 48px; }
.docs-section h2 { font-size: 1.5rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.docs-section h3 { font-size: 1.125rem; margin: 24px 0 12px; }
.docs-section p { font-size: 0.9375rem; margin-bottom: 16px; }
.docs-section ul, .docs-section ol { padding-left: 20px; margin-bottom: 16px; }
.docs-section li { font-size: 0.9375rem; margin-bottom: 6px; color: var(--text-muted); }
code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 0.875em; background: var(--bg-alt);
  padding: 2px 6px; border-radius: 4px; color: var(--accent);
}
pre {
  background: var(--primary); color: rgba(255,255,255,0.9);
  padding: 20px; border-radius: var(--radius); overflow-x: auto;
  margin-bottom: 20px; font-size: 0.875rem; line-height: 1.7;
}
pre code { background: none; color: inherit; padding: 0; }

/* ─── Support ─── */
.support-channels { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-bottom: 48px; }
.support-channel {
  text-align: center; padding: 32px 24px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: #fff; transition: var(--transition);
}
.support-channel:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.support-channel-icon { font-size: 2.5rem; margin-bottom: 16px; color: var(--accent); }
.support-channel h3 { font-size: 1.1rem; margin-bottom: 8px; }
.support-channel p { font-size: 0.875rem; margin-bottom: 16px; }

/* ─── Careers ─── */
.jobs-grid { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; transition: var(--transition);
}
.job-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.job-info { flex: 1; }
.job-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.job-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-tag { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.job-tag i { color: var(--accent); }

/* ─── Privacy & Terms ─── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.375rem; margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; color: var(--text-muted); font-size: 0.9375rem; }
.legal-date { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 40px; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--bg) 0%, #EEF4FF 100%);
  padding: 60px 0; border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-light); }

/* ─── Stat bar ─── */
.stat-bar {
  background: var(--primary); color: #fff;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-bar-item {
  text-align: center; padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal); }
.stat-bar-lbl { font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ─── Alert ─── */
.alert {
  padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem;
}
.alert-info { background: rgba(30,127,217,0.08); border: 1px solid rgba(30,127,217,0.2); color: var(--accent); }
.alert-success { background: rgba(0,180,160,0.08); border: 1px solid rgba(0,180,160,0.2); color: var(--teal); }
.alert-warning { background: rgba(244,123,32,0.08); border: 1px solid rgba(244,123,32,0.2); color: var(--orange); }

/* ─── Feature list ─── */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(30,127,217,0.08); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.feature-text strong { font-size: 0.9375rem; display: block; color: var(--primary); }
.feature-text span { font-size: 0.875rem; color: var(--text-muted); }

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 640px;
  margin: 0 auto; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-lg);
  z-index: 9000; animation: slideUp 0.4s ease;
}
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-content p { font-size: 0.875rem; margin: 0; }
.cookie-actions { display: flex; gap: 8px; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ─── Back to top ─── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(30,127,217,0.3);
  opacity: 0; pointer-events: none; transition: var(--transition); z-index: 500;
  font-size: 1rem;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-2px); }

/* ─── Footer ─── */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.footer-wave { height: 60px; background: var(--bg-alt); overflow: hidden; }
.footer-wave svg { height: 60px; width: 100%; }
.footer-inner { padding: 60px 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-logo img { height: 38px; margin-bottom: 14px; filter: brightness(10); }
.logo-text-footer { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-tagline { font-size: 0.875rem; line-height: 1.65; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.badge-item {
  background: rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.9375rem;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--footer-text); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-list i { color: var(--accent); margin-top: 3px; font-size: 0.875rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem; color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ─── Animations ─── */
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .enterprise-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 80px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { padding: 56px 0 72px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-bar-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .enterprise-features { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (all inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #153d6e 100%);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-display);
  color: #003462;
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: 1.15rem;
  opacity: .85;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES FULL PAGE
═══════════════════════════════════════════════════════════ */
.all-plans-grid { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.all-plans-grid h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 1rem; }
.all-plans-items { display: flex; flex-wrap: wrap; gap: .75rem; }
.plan-inc-item { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.plan-inc-item .fa-check-circle { color: var(--teal); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-full-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8edf5;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  overflow: hidden;
}
.service-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.sfc-header {
  background: linear-gradient(135deg, var(--svc-color, var(--blue)) 0%, color-mix(in srgb, var(--svc-color, var(--blue)) 70%, #000) 100%);
  color: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sfc-icon { font-size: 2rem; opacity: .9; min-width: 40px; }
.sfc-title { font-size: 1.1rem; font-family: var(--font-display); color: #fff; margin: 0 0 .25rem; }
.sfc-price { display: flex; align-items: baseline; gap: .25rem; }
.sfc-price-from { font-size: .75rem; opacity: .8; }
.sfc-price-amount { font-size: 1.25rem; font-weight: 700; }
.sfc-price-period { font-size: .8rem; opacity: .8; }

.sfc-body { padding: 1.5rem; flex: 1; }
.sfc-desc { color: var(--text-muted); margin-bottom: 1rem; font-size: .95rem; }
.sfc-setup { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; display: flex; align-items: center; gap: .4rem; }
.sfc-setup .fa-bolt { color: var(--orange); }
.sfc-features strong { font-size: .85rem; color: var(--navy); display: block; margin-bottom: .5rem; }
.sfc-features ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }
.sfc-features li { font-size: .83rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; }
.sfc-features li .fa-check { color: var(--teal); font-size: .7rem; }
.sfc-footer { padding: 1rem 1.5rem 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.two-col-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-text h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.two-col-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.about-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.aig-item { background: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; font-size: 1.8rem; color: var(--blue); box-shadow: var(--shadow-sm); border: 1px solid #e8edf5; }

.mission-block { text-align: center; max-width: 700px; margin: 0 auto; }
.mission-block h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
.mission-block .lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }

.vals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.val-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid #e8edf5; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.val-card:hover { box-shadow: var(--shadow-md); }
.val-icon { font-size: 1.75rem; color: var(--blue); margin-bottom: .75rem; }
.val-card h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: .5rem; font-size: 1rem; }
.val-card p { font-size: .9rem; color: var(--text-muted); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.team-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid #e8edf5; box-shadow: var(--shadow-sm); }
.team-avatar { width: 64px; height: 64px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.75rem; color: var(--blue); border: 2px solid #e8edf5; }
.team-card h3 { font-family: var(--font-display); color: var(--navy); font-size: 1rem; margin-bottom: .25rem; }
.team-role { color: var(--blue); font-size: .85rem; font-weight: 600; margin-bottom: .75rem; }
.team-card p { font-size: .85rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-section {}
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid #dde3ef; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--text); background: #fff;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,127,217,.12);
}
.form-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.form-required { font-size: .8rem; color: var(--text-muted); }
.form-message { margin-top: 1rem; padding: .75rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; }
.form-message.success { background: #e6f9f5; color: #00826b; border: 1px solid #b3f0e4; }
.form-message.error   { background: #fff0f0; color: #cc2222; border: 1px solid #ffc0c0; }

.contact-info-card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid #e8edf5; margin-bottom: 1.25rem; }
.contact-info-card h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 1.25rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { width: 36px; height: 36px; background: var(--bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; font-size: .95rem; }
.ci-item > div { display: flex; flex-direction: column; gap: .2rem; }
.ci-item strong { font-size: .85rem; color: var(--navy); }
.ci-item a, .ci-item span { font-size: .9rem; color: var(--text-muted); }
.ci-item a:hover { color: var(--blue); }
.ci-social { margin-top: 1.25rem; border-top: 1px solid #f0f3fa; padding-top: 1.25rem; }
.ci-social strong { font-size: .85rem; color: var(--navy); display: block; margin-bottom: .6rem; }
.ci-social-links { display: flex; gap: .75rem; }
.ci-social-links a { width: 34px; height: 34px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); transition: background .2s; }
.ci-social-links a:hover { background: var(--blue); color: #fff; }
.ci-feats { display: flex; flex-direction: column; gap: .75rem; }
.ci-feat { display: flex; gap: .75rem; align-items: flex-start; background: #fff; border-radius: var(--radius-sm); padding: .75rem 1rem; border: 1px solid #e8edf5; }
.ci-feat .fa { color: var(--blue); margin-top: .1rem; }
.ci-feat > div { display: flex; flex-direction: column; }
.ci-feat strong { font-size: .85rem; color: var(--navy); }
.ci-feat span { font-size: .82rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   CASES PAGE
═══════════════════════════════════════════════════════════ */
.cases-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn { padding: .5rem 1.25rem; border-radius: 999px; border: 1.5px solid #dde3ef; background: #fff; color: var(--text); font-size: .875rem; cursor: pointer; transition: all .2s; font-family: var(--font-body); font-weight: 500; }
.filter-btn:hover, .filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.case-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid #e8edf5; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.case-card-header { background: linear-gradient(135deg, var(--case-color, var(--blue)) 0%, color-mix(in srgb, var(--case-color, var(--blue)) 70%, #000) 100%); color: #fff; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.case-icon { font-size: 1.75rem; }
.case-industry { font-size: .85rem; font-weight: 600; opacity: .9; }
.case-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.case-org { display: flex; justify-content: space-between; align-items: flex-start; }
.case-org h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.15rem; margin: 0; }
.case-loc { font-size: .8rem; color: var(--text-muted); }
.case-title { font-size: 1rem; color: var(--navy); font-weight: 600; margin: 0; }
.case-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.case-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag { font-size: .75rem; padding: .25rem .65rem; background: var(--bg); border-radius: 999px; color: var(--text-muted); font-weight: 500; }
.case-results strong { font-size: .85rem; color: var(--navy); display: block; margin-bottom: .5rem; }
.case-results-grid { display: flex; gap: 1.25rem; }
.case-result-item { text-align: center; }
.crn { display: block; font-size: 1.3rem; font-weight: 700; color: var(--blue); font-family: var(--font-display); }
.crl { display: block; font-size: .75rem; color: var(--text-muted); }
.case-quote { border-left: 3px solid var(--blue); padding-left: 1rem; margin: 0; }
.case-quote p { font-size: .875rem; color: var(--text-muted); font-style: italic; margin-bottom: .3rem; }
.case-quote cite { font-size: .8rem; color: var(--navy); font-style: normal; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════════════════════════ */
.faq-search-wrap { position: relative; max-width: 500px; margin: 0 auto; }
.faq-search { width: 100%; padding: .875rem 1.25rem .875rem 3rem; border-radius: 999px; border: none; font-size: 1rem; font-family: var(--font-body); box-shadow: 0 2px 12px rgba(0,0,0,.15); }
.faq-search-wrap .fa-magnifying-glass { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); color: #aaa; }

.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.faq-sidebar { position: sticky; top: 90px; }
.faq-cat-link { display: flex; align-items: center; gap: .6rem; padding: .6rem .75rem; border-radius: var(--radius-sm); color: var(--text); text-decoration: none; font-size: .9rem; transition: background .15s, color .15s; }
.faq-cat-link:hover { background: var(--bg); color: var(--blue); }
.faq-sidebar-cta { margin-top: 2rem; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 1.25rem; text-align: center; }
.faq-sidebar-cta strong { display: block; margin-bottom: .4rem; font-size: .95rem; }
.faq-sidebar-cta p { font-size: .85rem; opacity: .8; margin-bottom: .75rem; }

.faq-category { margin-bottom: 2.5rem; }
.faq-cat-title { font-family: var(--font-display); color: var(--navy); font-size: 1.3rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.faq-item { border: 1px solid #e8edf5; border-radius: var(--radius-sm); margin-bottom: .5rem; overflow: hidden; background: #fff; }
.faq-question { width: 100%; text-align: left; padding: 1rem 1.25rem; border: none; background: none; cursor: pointer; font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-chevron { transition: transform .25s; flex-shrink: 0; }
.faq-item[open] .faq-chevron, .faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-answer.open { padding: 0 1.25rem 1.25rem; max-height: 600px; }
.faq-answer p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }
.faq-no-results { text-align: center; padding: 3rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════════════════════ */
.blog-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid #e8edf5; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { height: 140px; display: flex; align-items: center; justify-content: center; }
.blog-card-icon { font-size: 3rem; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.blog-cat { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.blog-date { font-size: .8rem; color: var(--text-muted); }
.blog-title { font-size: 1rem; font-family: var(--font-display); color: var(--navy); margin: 0 0 .6rem; line-height: 1.4; }
.blog-excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: .75rem; border-top: 1px solid #f0f3fa; }
.blog-author, .blog-mins { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: .35rem; }

.newsletter-block { text-align: center; max-width: 500px; margin: 0 auto; }
.newsletter-block h2 { font-family: var(--font-display); color: var(--navy); margin-bottom: .5rem; }
.newsletter-block p { color: var(--text-muted); margin-bottom: 1.25rem; }
.newsletter-form { display: flex; gap: .75rem; max-width: 420px; margin: 0 auto 1rem; }
.newsletter-form input { flex: 1; padding: .75rem 1rem; border: 1.5px solid #dde3ef; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem; }
.newsletter-form input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(30,127,217,.1); }
.newsletter-block small { color: var(--text-muted); font-size: .8rem; }

/* ═══════════════════════════════════════════════════════════
   DOCUMENTATION PAGE
═══════════════════════════════════════════════════════════ */
.docs-quicknav { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.docs-qn-item { background: #fff; border-radius: var(--radius-sm); padding: 1rem; text-align: center; text-decoration: none; border: 1px solid #e8edf5; transition: box-shadow .2s, border-color .2s; display: flex; flex-direction: column; gap: .4rem; align-items: center; }
.docs-qn-item:hover { box-shadow: var(--shadow-md); border-color: var(--qn-color, var(--blue)); }
.docs-qn-item .fa { font-size: 1.5rem; color: var(--qn-color, var(--blue)); }
.docs-qn-item span { font-size: .875rem; font-weight: 600; color: var(--navy); }
.docs-qn-item small { font-size: .75rem; color: var(--text-muted); }

.docs-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
.docs-sidebar { position: sticky; top: 90px; }
.docs-sidebar-group { margin-bottom: 1.5rem; }
.docs-sidebar-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .35rem .75rem; display: flex; align-items: center; gap: .5rem; }
.docs-sidebar-link { display: block; padding: .45rem .75rem; border-radius: var(--radius-sm); font-size: .875rem; color: var(--text); text-decoration: none; transition: background .15s, color .15s; }
.docs-sidebar-link:hover { background: var(--bg); color: var(--blue); }
.docs-sidebar-cta { margin-top: 1.5rem; border-top: 1px solid #e8edf5; padding-top: 1rem; display: flex; align-items: center; gap: .5rem; font-size: .875rem; }
.docs-sidebar-cta .fa { color: var(--blue); }
.docs-sidebar-cta a { color: var(--blue); }

.docs-group { margin-bottom: 2.5rem; }
.docs-group-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 2px solid var(--bg); }
.docs-group-header .fa { font-size: 1.25rem; color: var(--doc-color, var(--blue)); }
.docs-group-header h2 { font-family: var(--font-display); color: var(--navy); font-size: 1.25rem; margin: 0; flex: 1; }
.docs-count { font-size: .8rem; color: var(--text-muted); background: var(--bg); padding: .2rem .6rem; border-radius: 999px; }
.docs-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.doc-card { display: flex; gap: .75rem; padding: 1rem; background: #fff; border: 1px solid #e8edf5; border-radius: var(--radius-sm); text-decoration: none; transition: box-shadow .2s, border-color .2s; align-items: flex-start; }
.doc-card:hover { box-shadow: var(--shadow-sm); border-color: #c8d5e8; }
.doc-card-icon { font-size: 1.1rem; margin-top: .15rem; flex-shrink: 0; }
.doc-card-body h4 { font-size: .9rem; color: var(--navy); margin: 0 0 .25rem; }
.doc-card-body p { font-size: .8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.doc-card-meta { margin-top: auto; font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════
   SUPPORT PAGE
═══════════════════════════════════════════════════════════ */
.support-channels { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.support-channel-card { background: #fff; border-radius: var(--radius); padding: 1.75rem; text-align: center; border: 1px solid #e8edf5; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; gap: .75rem; transition: box-shadow .2s; }
.support-channel-card:hover { box-shadow: var(--shadow-md); }
.sch-icon { font-size: 2rem; }
.support-channel-card h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.05rem; margin: 0; }
.sch-val { font-weight: 600; color: var(--navy); font-size: .9rem; }
.support-channel-card p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.btn-outline { border: 1.5px solid currentColor; background: transparent; color: var(--btn-color, var(--blue)); padding: .5rem 1.25rem; border-radius: 999px; font-family: var(--font-body); font-size: .875rem; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; transition: background .2s, color .2s; }
.btn-outline:hover { background: var(--btn-color, var(--blue)); color: #fff; }

.status-block { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid #e8edf5; max-width: 600px; }
.status-all-ok { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: #00826b; font-size: 1rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid #f0f3fa; }
.status-all-ok .fa-circle-check { font-size: 1.25rem; }
.status-grid { display: flex; flex-direction: column; gap: .6rem; }
.status-row { display: flex; justify-content: space-between; align-items: center; font-size: .875rem; }
.status-name { color: var(--text); }
.status-badge { display: flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 600; }
.status-badge.ok { color: #00826b; }
.status-badge.ok .fa-circle { font-size: .5rem; }

.table-wrap { overflow-x: auto; }
.sla-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.sla-table th { background: var(--navy); color: #fff; padding: .875rem 1.25rem; text-align: left; font-size: .875rem; font-weight: 600; }
.sla-table td { padding: .875rem 1.25rem; border-bottom: 1px solid #f0f3fa; font-size: .9rem; }
.sla-table tr:last-child td { border-bottom: none; }
.sla-table tr:nth-child(even) td { background: #fafbfd; }

.ticket-wrap { max-width: 700px; margin: 0 auto; }
.ticket-wrap h2 { font-family: var(--font-display); color: var(--navy); margin-bottom: .5rem; }
.ticket-wrap > p { color: var(--text-muted); margin-bottom: 2rem; }
.ticket-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (privacy, terms)
═══════════════════════════════════════════════════════════ */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
.legal-toc { position: sticky; top: 90px; background: #fff; border: 1px solid #e8edf5; border-radius: var(--radius); padding: 1.25rem; }
.legal-toc strong { display: block; font-size: .85rem; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.legal-toc a { display: block; padding: .4rem .5rem; font-size: .875rem; color: var(--text); text-decoration: none; border-radius: 4px; transition: background .15s, color .15s; }
.legal-toc a:hover { background: var(--bg); color: var(--blue); }
.legal-content h2 { font-family: var(--font-display); color: var(--navy); font-size: 1.35rem; margin: 2rem 0 .75rem; padding-top: 1rem; border-top: 1px solid #f0f3fa; }
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: .4rem; line-height: 1.65; }
.legal-content a { color: var(--blue); }

/* ═══════════════════════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════════════════════ */
.benefits-list { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid #e8edf5; }
.benefits-list h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 1rem; }
.benefits-list ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.benefits-list li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text); }
.benefits-list .fa-check-circle { color: var(--teal); }

.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-card { background: #fff; border: 1px solid #e8edf5; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.job-card-header { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; }
.job-card-header h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.05rem; margin: 0 0 .35rem; }
.job-meta { display: flex; align-items: center; gap: .75rem; }
.job-type { font-size: .75rem; font-weight: 700; padding: .2rem .65rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.job-type.full { background: #e6f2ff; color: var(--blue); }
.job-type.intern { background: #fff0e6; color: var(--orange); }
.job-type.part { background: #e6fff9; color: var(--teal); }
.job-loc { font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.job-card-body { border-top: 1px solid #f0f3fa; padding: 1.5rem; }
.job-card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.job-reqs { list-style: none; padding: 0; margin: 0 0 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.job-reqs li { font-size: .875rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.job-reqs .fa-check { color: var(--teal); font-size: .75rem; }
.job-toggle .fa { transition: transform .25s; }

.open-application { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 1.5rem 2rem; display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.open-app-icon { font-size: 2.5rem; opacity: .85; flex-shrink: 0; }
.open-application h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 .25rem; }
.open-application p { font-size: .9rem; opacity: .8; margin: 0; }
.open-application .btn-outline { margin-left: auto; color: #fff; border-color: rgba(255,255,255,.5); }
.open-application .btn-outline:hover { background: rgba(255,255,255,.15); }

.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.process-step { text-align: center; background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid #e8edf5; box-shadow: var(--shadow-sm); }
.step-num { width: 48px; height: 48px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin: 0 auto 1rem; }
.process-step h4 { font-family: var(--font-display); color: var(--navy); margin-bottom: .5rem; }
.process-step p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   UTILITY: py-sm, section-sub, stats-row
═══════════════════════════════════════════════════════════ */
.py-sm { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 600px; margin: -.5rem auto 2.5rem; }
.stats-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--blue); line-height: 1; }
.stat-label { font-size: .875rem; color: var(--text-muted); margin-top: .3rem; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – new pages
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .two-col-section { grid-template-columns: 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .faq-sidebar, .docs-sidebar, .legal-toc { position: static; }
}

@media (max-width: 640px) {
  .services-full-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .sfc-features ul { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .ticket-form .form-row { grid-template-columns: 1fr; }
  .benefits-list ul { grid-template-columns: 1fr; }
  .job-reqs { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .open-application { flex-direction: column; text-align: center; }
  .open-application .btn-outline { margin-left: 0; }
}
