/* Inter (variable, self-hosted). Replaces the Google Fonts CDN link.
   Subsets: latin, latin-ext. Weight axis 100-900. */
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/Inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/Inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ═══════════════════════════════════════════════════════════
   CARMEDIN — Brand Design System
   Colors: Navy #0D2455 | Gold #C9A43A | Teal #1E7A7A
   Font: Inter
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --navy:        #0D2455;
  --navy-800:    #0a1c42;
  --navy-600:    #143070;
  --navy-100:    #e8edf8;
  --gold:        #C9A43A;
  --gold-600:    #a8882e;
  --gold-400:    #d9b84a;
  --gold-100:    #fdf5e0;
  --teal:        #1E7A7A;
  --teal-800:    #165858;
  --teal-600:    #207070;
  --teal-100:    #e0f2f2;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --white:       #ffffff;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px rgba(13,36,85,0.08);
  --shadow-md:   0 4px 16px rgba(13,36,85,0.10);
  --shadow-lg:   0 12px 40px rgba(13,36,85,0.14);
  --shadow-xl:   0 24px 80px rgba(13,36,85,0.18);
  --transition:  0.2s ease;
}

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
.text-display { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }
.text-h1     { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.015em; }
.text-h2     { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
.text-h3     { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.text-h4     { font-size: 1rem; font-weight: 700; }
.text-body   { font-size: 1.0625rem; line-height: 1.7; }
.text-sm     { font-size: 0.875rem; }
.text-xs     { font-size: 0.75rem; }
.text-navy   { color: var(--navy); }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-gold-600 { color: var(--gold-600); }
.text-gray   { color: var(--gray-500); }
.text-white  { color: var(--white); }
.font-900    { font-weight: 900; }
.font-800    { font-weight: 800; }
.font-700    { font-weight: 700; }
.font-600    { font-weight: 600; }
.font-500    { font-weight: 500; }
.uppercase   { text-transform: uppercase; letter-spacing: 0.08em; }

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Gold underline accent */
.text-accent { position: relative; display: inline; }
.text-accent::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; width: 100%; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
/* Section eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1216px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* ── BACKGROUNDS ───────────────────────────────────────── */
.bg-white  { background: var(--white); }
.bg-light  { background: linear-gradient(160deg, #f5f7ff 0%, #edf1fb 40%, #e8f4f4 100%); }
.bg-navy   { background: var(--navy); }
.bg-teal   { background: var(--teal); }
.bg-dark-gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); }
.bg-card   { background: var(--white); border: 1px solid #e5e9f5; }

/* Hero background */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 65% 0%, rgba(30,122,122,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(13,36,85,0.06) 0%, transparent 50%),
    linear-gradient(160deg, #f5f7ff 0%, #edf1fb 40%, #e8f4f4 100%);
}
/* Interior page hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #143070 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,122,122,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* ── NAVIGATION ────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(13,36,85,0.09);
  border-color: #e8edf8;
  backdrop-filter: blur(8px);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  max-width: 1216px; margin: 0 auto; padding: 0 24px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.125rem; font-weight: 700; color: var(--navy);
}
.navbar-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-600);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.navbar-link:hover, .navbar-link.active { color: var(--navy); background: var(--gray-50); }
.navbar-link svg { transition: transform var(--transition); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.nav-dropdown-wrapper { position: relative; }
.nav-dropdown-wrapper:hover .nav-dropdown,
.nav-dropdown-wrapper:focus-within .nav-dropdown { display: block; }
.nav-dropdown-wrapper:hover .navbar-link svg { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: white;
  border: 1px solid #e5e9f5;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  min-width: 580px;
  padding: 8px;
  z-index: 999;
  animation: dropdownFade 0.16s ease-out;
}
.nav-dropdown-sm { min-width: 340px; }
@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown-label {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400);
  padding: 6px 12px 4px;
}
.dropdown-divider { border: none; border-top: 1px solid #f0f2f8; margin: 4px 0; }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 4px; }
.dropdown-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  transition: background var(--transition);
  cursor: pointer;
}
.dropdown-item:hover { background: #f0f4ff; }
.dropdown-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.dropdown-item-title { font-size: 0.8125rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.dropdown-item-sub   { font-size: 0.75rem; color: var(--gray-400); margin-top: 2px; }
.dropdown-footer {
  padding: 8px 12px 4px;
  display: flex; align-items: center;
}
.dropdown-footer-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: var(--teal);
  transition: color var(--transition), gap var(--transition);
}
.dropdown-footer-link:hover { color: var(--navy); gap: 10px; }

/* Badges */
.badge {
  display: inline-flex; align-items: center;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 999px;
}
.badge-soon  { background: var(--gold-100); color: var(--gold-600); }
.badge-navy  { background: var(--navy-100); color: var(--navy); }
.badge-teal  { background: var(--teal-100); color: var(--teal); }
.badge-gold  { background: var(--gold-100); color: var(--gold-600); }
.badge-white { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.25); }

/* Mobile nav */
.navbar-mobile-btn { display: none; padding: 8px; }
.mobile-menu {
  display: none; background: white;
  border-top: 1px solid var(--gray-100); padding: 12px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 24px;
  font-size: 0.9375rem; font-weight: 500; color: var(--gray-700);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu-footer { padding: 12px 24px; }
@media (max-width: 1024px) {
  .navbar-nav, .navbar-actions .btn-outline-nav, .navbar-actions .btn-portal-soon { display: none; }
  .navbar-actions .btn-portal-soon { display: none !important; }
  .navbar-mobile-btn { display: flex; }
}

@media (max-width: 640px) {
  .navbar-actions .btn-navy { display: none; }
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.9375rem; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius);
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-600); border-color: var(--gold-600); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,164,58,0.4); }

.btn-navy {
  background: var(--navy); color: white; border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-600); border-color: var(--navy-600); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,36,85,0.3); }

.btn-outline {
  background: transparent; color: var(--navy); border-color: rgba(13,36,85,0.2);
}
.btn-outline:hover { border-color: var(--navy); background: rgba(13,36,85,0.04); }

.btn-outline-white {
  background: transparent; color: white; border-color: rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }

.btn-nav {
  background: var(--navy); color: white;
  font-size: 0.875rem; padding: 10px 20px; border-radius: 8px;
}
.btn-nav:hover { background: var(--navy-600); box-shadow: var(--shadow-md); }

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 9px 18px; font-size: 0.8125rem; border-radius: var(--radius-sm); }

/* ── CARDS ─────────────────────────────────────────────── */
/* Pillar / service cards */
.card {
  background: white; border: 1px solid #e5e9f5; border-radius: var(--radius-md);
  padding: 28px; position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow-lg); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.card:hover::before { transform: scaleX(1); }

/* Stat cards */
.stat-card {
  text-align: center; padding: 28px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-radius: var(--radius-md); }
.stat-number { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }

/* Who we serve cards */
.serve-card {
  background: white; border: 1px solid #e5e9f5; border-radius: var(--radius-md); padding: 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.serve-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,164,58,0.12); }

/* Icon blocks */
.icon-block {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-block-lg {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-teal  { background: var(--teal-100); }
.icon-navy  { background: var(--navy-100); }
.icon-gold  { background: var(--gold-100); }
.icon-gradient { background: linear-gradient(135deg, var(--navy), var(--teal)); }

/* ── FREE TOOLS CARD ───────────────────────────────────── */
.tools-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  padding: 64px;
}
.tools-card::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.tools-card > * { position: relative; z-index: 1; }
.tool-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 16px 20px;
  margin-bottom: 10px;
}
.tool-item:last-child { margin-bottom: 0; }
.tool-emoji { font-size: 1.375rem; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tool-title { font-size: 0.875rem; font-weight: 600; color: white; }
.tool-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 1px; }
.tool-badge { margin-left: auto; background: rgba(201,164,58,0.25); color: var(--gold); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }

/* ── APPROACH PILLARS ──────────────────────────────────── */
.approach-card {
  text-align: center; padding: 32px 24px;
  border-radius: var(--radius-md); border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}
.approach-card:hover { background: var(--gray-50); border-color: #e5e9f5; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: #082b47; color: rgba(255,255,255,0.55); }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.125rem; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-logo-icon { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, var(--teal), var(--gold)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-email { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.footer-email:hover { color: var(--gold-400); }
.footer-col-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-link:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.8125rem; }
.footer-iso  { display: flex; align-items: center; gap: 8px; }
.footer-iso-badge {
  font-size: 0.6875rem; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; background: rgba(201,164,58,0.15);
  border: 1px solid rgba(201,164,58,0.3); color: var(--gold);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── FLOATING ANIMATIONS ───────────────────────────────── */
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.rotate-slow { animation: rotateSlow 12s linear infinite; transform-origin: center; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.pulse-dot { animation: pulseDot 2s ease-out infinite; }
@keyframes pulseDot { 0%{transform:scale(0.8);opacity:0.8} 80%,100%{transform:scale(2.2);opacity:0} }

/* Data flow animated paths */
.data-path   { stroke-dasharray: 8 4; animation: dashFlow 1.5s linear infinite; }
.data-path-2 { stroke-dasharray: 8 4; animation: dashFlow 1.5s linear infinite 0.5s; }
.data-path-3 { stroke-dasharray: 8 4; animation: dashFlow 1.5s linear infinite 1s; }
@keyframes dashFlow { to { stroke-dashoffset: -24; } }

/* ── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: white; }

/* ── FEATURE LIST ──────────────────────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; color: var(--gray-600); }
.feature-list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-100); border: 1px solid rgba(30,122,122,0.2);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231E7A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── RELATED SERVICES ──────────────────────────────────── */
.related-card {
  border: 1px solid #e5e9f5; border-radius: var(--radius-md); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color var(--transition), transform var(--transition);
}
.related-card:hover { border-color: var(--teal); transform: translateX(4px); }
.related-card-arrow { margin-left: auto; color: var(--gray-400); transition: color var(--transition), transform var(--transition); }
.related-card:hover .related-card-arrow { color: var(--teal); transform: translateX(3px); }

/* ── CTA SECTION ───────────────────────────────────────── */
.cta-section { padding: 96px 0; text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ── CONTACT FORM ──────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #dde2f0; border-radius: var(--radius);
  font-size: 0.9375rem; font-family: inherit; color: var(--gray-700);
  background: white; transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,122,122,0.12); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { appearance: none; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ── SLA TIER CARDS ────────────────────────────────────── */
.sla-card {
  border: 2px solid #e5e9f5; border-radius: var(--radius-md); padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.sla-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sla-t1 { border-color: var(--navy); }
.sla-t1 .sla-tier-badge { background: var(--navy); color: white; }
.sla-t2 { border-color: var(--teal); }
.sla-t2 .sla-tier-badge { background: var(--teal); color: white; }
.sla-t3 .sla-tier-badge { background: var(--gray-200); color: var(--gray-700); }
.sla-t4 .sla-tier-badge { background: var(--gray-100); color: var(--gray-500); }
.sla-tier-badge { display: inline-block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.sla-response { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; margin: 12px 0 4px; }

/* ── UTILITY ───────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid #e8edf8; margin: 48px 0; }
.text-center { text-align: center; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-center { justify-content: center; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.gap-4  { gap: 16px; }
.gap-6  { gap: 24px; }
.gap-8  { gap: 32px; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

/* Responsive tweaks */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .tools-card { padding: 36px 24px; }
  .cta-section { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .float, .rotate-slow, .pulse-dot, .data-path, .data-path-2, .data-path-3 { animation: none !important; }
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}
