/* ==========================================================================
   BAYCOP MSP/MSSP — Main Stylesheet
   Light theme · Coral-orange brand · Montserrat + DM Sans
   Inspired by: uptimeglobal.tech visual language
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
  /* === Brand — coral / terracotta orange === */
  --orange:        #E07252;   /* Primary brand */
  --orange-dark:   #C55C38;   /* Hover / deeper */
  --orange-light:  #EA8B6C;   /* Lighter tint */
  --orange-pale:   #FEF0EB;   /* Section tint bg */
  --orange-mid:    #F5896A;   /* Mid-shade */

  /* === Backgrounds — light theme === */
  --bg-primary:    #FFFFFF;
  --bg-secondary:  #F9F6F4;   /* Warm off-white */
  --bg-card:       #FFFFFF;
  --bg-card-hover: #FFF8F5;
  --bg-glass:      rgba(255,255,255,0.92);
  --bg-orange:     #E07252;   /* Full orange fill sections */
  --bg-orange-dark:#C55C38;

  /* === Borders === */
  --border:        rgba(200,180,172,0.35);
  --border-bright: rgba(224,114,82,0.4);

  /* Legacy colour aliases — keeps all PHP class names working */
  --blue:          #E07252;
  --blue-light:    #EA8B6C;
  --cyan:          #F5896A;
  --purple:        #C55C38;
  --purple-light:  #E07252;
  --green:         #22C55E;
  --amber:         #F59E0B;
  --red:           #EF4444;
  --cream:         #FFF8F5;

  /* === Text — dark on light === */
  --text-primary:   #1C0F0A;   /* Very dark warm charcoal */
  --text-secondary: #5A4540;   /* Warm medium brown-grey */
  --text-muted:     #9A8480;   /* Light warm grey */

  /* === Gradients === */
  --gradient-primary: linear-gradient(135deg, #E07252 0%, #C55C38 100%);
  --gradient-warm:    linear-gradient(135deg, #F5896A 0%, #E07252 100%);
  --gradient-hero:    linear-gradient(160deg, #FFF8F5 0%, #FFFFFF 60%);
  --gradient-card:    linear-gradient(135deg, rgba(224,114,82,0.05) 0%, rgba(197,92,56,0.02) 100%);
  --gradient-cyan:    linear-gradient(135deg, #F5896A 0%, #E07252 100%);

  /* === Shadows — soft on white === */
  --shadow-sm:   0 1px 4px rgba(60,20,10,0.07);
  --shadow-md:   0 4px 20px rgba(60,20,10,0.09);
  --shadow-lg:   0 20px 60px rgba(60,20,10,0.1);
  --shadow-glow: 0 0 40px rgba(224,114,82,0.18);
  --shadow-blue: 0 8px 32px rgba(224,114,82,0.3);
  --shadow-cyan: 0 8px 32px rgba(245,137,106,0.22);

  /* === Radii === */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* === Motion === */
  --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);

  /* === Typography === */
  --font-sans:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Montserrat', 'DM Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: var(--radius-full); }

/* Selection */
::selection { background: rgba(224,114,82,0.2); color: var(--text-primary); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

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

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--orange);
  border-radius: var(--radius-full);
}

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta .btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.nav-cta .btn-secondary:hover {
  background: var(--orange-pale);
  border-color: var(--orange-dark);
  color: var(--orange-dark);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; z-index: 999;
  flex-direction: column; gap: 0.25rem;
  box-shadow: 0 8px 24px rgba(60,20,10,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 1rem; font-size: 1rem; font-weight: 600;
  color: var(--text-secondary); border-radius: var(--radius-md);
  transition: all var(--transition); border: 1px solid transparent;
}
.mobile-menu a:hover { color: var(--orange); background: var(--orange-pale); }
.mobile-menu .mobile-ctas {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 700;
  line-height: 1; border-radius: var(--radius-md); border: none;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap; position: relative; overflow: hidden;
  text-decoration: none; letter-spacing: 0.1px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224,114,82,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,114,82,0.45);
  background: linear-gradient(135deg, #EA7A5A 0%, #CE6342 100%);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--orange-pale);
  border-color: rgba(224,114,82,0.35);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,114,82,0.35);
}

.btn-cyan {
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-weight: 700;
}
.btn-cyan:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* On dark orange backgrounds */
.btn-white {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-lg  { padding: 0.9rem 2rem;    font-size: 1rem;    border-radius: var(--radius-lg); }
.btn-xl  { padding: 1.1rem 2.5rem;  font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm  { padding: 0.45rem 0.95rem; font-size: 0.8125rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p {
  max-width: 640px; margin: 1rem auto 0;
  color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8;
}

.grid   { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }

.flex            { display: flex; }
.flex-col        { flex-direction: column; }
.items-center    { align-items: center; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1{gap:.5rem}.gap-2{gap:1rem}.gap-3{gap:1.5rem}.gap-4{gap:2rem}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700; line-height: 1.2;
  color: var(--text-primary);
}
.h1 { font-size: clamp(2.5rem,5vw,4.5rem);    letter-spacing: -1.5px; }
.h2 { font-size: clamp(1.8rem,3.5vw,3rem);    letter-spacing: -0.5px; }
.h3 { font-size: clamp(1.3rem,2.5vw,1.875rem); }
.h4 { font-size: 1.25rem; }
.h5 { font-size: 1.05rem; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-cyan {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label chip */
.label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
}
.label::before {
  content: '';
  display: block; width: 20px; height: 2px;
  background: var(--orange); border-radius: var(--radius-full);
}

/* Label on dark/orange background */
.label-light { color: rgba(255,255,255,0.75); }
.label-light::before { background: rgba(255,255,255,0.6); }

/* ============================================================
   CARDS — white, soft shadow
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(60,20,10,0.1), 0 2px 8px rgba(224,114,82,0.08);
}
.card:hover::before { transform: scaleX(1); }

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ============================================================
   ORANGE SECTION (full-width orange bg areas)
   ============================================================ */
.section-orange {
  background: var(--bg-orange);
  color: #fff;
  position: relative;
}
.section-orange-wave {
  background: var(--bg-orange);
  color: #fff;
  position: relative;
  clip-path: ellipse(110% 100% at 50% 0%);
  padding-bottom: 6rem;
}
.section-orange h1, .section-orange h2, .section-orange h3,
.section-orange h4, .section-orange p, .section-orange .label {
  color: #fff;
}
.section-orange .label::before { background: rgba(255,255,255,0.5); }
.section-orange .text-secondary { color: rgba(255,255,255,0.8) !important; }
.section-orange .text-muted     { color: rgba(255,255,255,0.6) !important; }

/* ============================================================
   BADGES / TAGS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem; font-weight: 700;
  border-radius: var(--radius-full); border: 1px solid;
}
.badge-blue   { color: var(--orange);       background: var(--orange-pale);           border-color: rgba(224,114,82,0.3); }
.badge-cyan   { color: var(--orange-dark);  background: rgba(245,137,106,0.12);       border-color: rgba(245,137,106,0.35); }
.badge-purple { color: #C55C38;             background: rgba(197,92,56,0.1);          border-color: rgba(197,92,56,0.3); }
.badge-green  { color: #16A34A;             background: rgba(34,197,94,0.1);          border-color: rgba(34,197,94,0.3); }
.badge-amber  { color: #B45309;             background: rgba(245,158,11,0.1);         border-color: rgba(245,158,11,0.3); }

/* ============================================================
   DIVIDERS
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--orange),transparent);
  margin: 0; opacity: 0.3;
}

/* ============================================================
   ICON WRAPPERS
   ============================================================ */
.icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem; flex-shrink: 0;
  transition: all var(--transition);
}
.card:hover .icon-wrap {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.icon-blue   { background: var(--orange-pale);          color: var(--orange);       border: 1.5px solid rgba(224,114,82,0.25); }
.icon-cyan   { background: rgba(245,137,106,0.12);      color: var(--orange-dark);  border: 1.5px solid rgba(245,137,106,0.3); }
.icon-purple { background: rgba(197,92,56,0.1);         color: #C55C38;             border: 1.5px solid rgba(197,92,56,0.25); }
.icon-green  { background: rgba(34,197,94,0.1);         color: #16A34A;             border: 1.5px solid rgba(34,197,94,0.25); }
.icon-amber  { background: rgba(245,158,11,0.1);        color: #B45309;             border: 1.5px solid rgba(245,158,11,0.3); }

.icon-xl { width: 72px; height: 72px; border-radius: 20px; font-size: 1.875rem; }
.icon-lg { width: 60px; height: 60px; border-radius: 16px; font-size: 1.5rem; }

/* ============================================================
   HERO — light, white/warm background
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 72px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Soft grid on light bg */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(224,114,82,0.06) 1px, transparent 1px),
    linear-gradient(90deg,rgba(224,114,82,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%,black 20%,transparent 75%);
}
.hero-orb-1 {
  position: absolute; top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle,rgba(224,114,82,0.12) 0%,transparent 70%);
  border-radius: 50%; animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; bottom: -100px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle,rgba(245,137,106,0.08) 0%,transparent 70%);
  border-radius: 50%; animation: float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  position: absolute; top: 40%; left: 45%;
  width: 260px; height: 260px;
  background: radial-gradient(circle,rgba(224,114,82,0.07) 0%,transparent 70%);
  border-radius: 50%; animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.04); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--orange-pale);
  border: 1px solid rgba(224,114,82,0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.5px; margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.5); }
}

.hero-title {
  font-size: clamp(2.6rem,5.5vw,4.75rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -2px;
  margin-bottom: 1.5rem; color: var(--text-primary);
}
.hero-desc {
  font-size: 1.15rem; line-height: 1.8;
  color: var(--text-secondary);
  max-width: 620px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-flags { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-flag { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.hero-flag-divider { width: 1px; height: 16px; background: var(--border); }

/* Hero Dashboard — white card on light bg */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-dashboard {
  width: 100%; max-width: 560px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 24px 64px rgba(60,20,10,0.1), 0 4px 16px rgba(224,114,82,0.08);
  animation: rise 0.8s ease-out 0.3s both;
}
@keyframes rise { from {opacity:0;transform:translateY(30px);} to {opacity:1;transform:translateY(0);} }

.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dot  { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot:nth-child(1) { background: #EF4444; }
.dash-dot:nth-child(2) { background: var(--amber); }
.dash-dot:nth-child(3) { background: var(--green); }
.dash-title { font-size: .75rem; font-weight: 700; color: var(--text-muted); letter-spacing: .5px; font-family: var(--font-display); }

.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1.25rem; }
.dash-stat {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: .875rem; text-align: center;
}
.dash-stat-val { font-size: 1.4rem; font-weight: 900; font-family: var(--font-display); line-height: 1; margin-bottom: .25rem; }
.dash-stat-label { font-size: .65rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.val-green { color: #16A34A; }
.val-blue  { color: var(--orange); }
.val-amber { color: #B45309; }

.dash-alerts { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.dash-alert {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .875rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: var(--radius-md); font-size: .75rem;
}
.alert-indicator { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.alert-green { background: #22C55E; box-shadow: 0 0 6px rgba(34,197,94,.5); }
.alert-blue  { background: var(--orange); box-shadow: 0 0 6px rgba(224,114,82,.5); }
.alert-amber { background: var(--amber); box-shadow: 0 0 6px rgba(245,158,11,.5); }
.alert-text  { flex: 1; color: var(--text-secondary); }
.alert-time  { color: var(--text-muted); font-size: .65rem; }

.dash-uptime {
  display: flex; align-items: center; justify-content: space-between;
  padding: .875rem 1rem;
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--radius-md);
}
.uptime-label { font-size: .75rem; color: var(--text-muted); }
.uptime-value { font-size: 1.1rem; font-weight: 800; color: #16A34A; font-family: var(--font-display); }

/* Floating hero badges */
.hero-badge {
  position: absolute;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: .65rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(60,20,10,0.1);
  animation: rise .8s ease-out both;
}
.hero-badge-1 { top: -20px; left: -20px; animation-delay: .5s; color: #16A34A; }
.hero-badge-2 { bottom: 30px; right: -30px; animation-delay: .7s; color: var(--orange); }
.badge-icon { font-size: 1rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-bar .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: .5rem 1rem; position: relative; }
.stat-item + .stat-item::before { content:''; position:absolute; left:0; top:20%; bottom:20%; width:1px; background:var(--border); }
.stat-number {
  font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 900; font-family: var(--font-display);
  line-height: 1; margin-bottom: .3rem;
  color: var(--orange);
}
.stat-label { font-size: .875rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(224,114,82,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(60,20,10,0.1), 0 4px 12px rgba(224,114,82,0.08);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p  { font-size: .875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem; }
.service-card ul li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .8125rem; color: var(--text-secondary);
  margin-bottom: .4rem; padding: .2rem 0;
}
.service-card ul li::before { content: '→'; color: var(--orange); font-size: .75rem; margin-top: 2px; flex-shrink: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8125rem; font-weight: 700; color: var(--orange);
  margin-top: 1rem; transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; color: var(--orange-dark); }

/* ============================================================
   FEATURE ROWS
   ============================================================ */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-card-main {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative; z-index: 2;
}
.feature-card-shadow {
  position: absolute; inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  background: rgba(224,114,82,0.05);
  border: 1px solid rgba(224,114,82,0.12);
  border-radius: var(--radius-xl); z-index: 1;
}

.tech-logos { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; margin-top: 1.5rem; }
.tech-logo {
  padding: .4rem .875rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition);
}
.tech-logo:hover { background: var(--orange-pale); color: var(--orange); border-color: rgba(224,114,82,.3); }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: linear-gradient(160deg, var(--orange-pale) 0%, #fff 50%);
  border-color: rgba(224,114,82,.45);
  box-shadow: 0 8px 32px rgba(224,114,82,0.18);
}
.pricing-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  padding: .25rem .75rem;
  background: var(--gradient-primary); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  border-radius: var(--radius-full);
}
.pricing-tier { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: .5rem; }
.pricing-name { font-size: 1.75rem; font-weight: 900; margin-bottom: .75rem; font-family: var(--font-display); }
.pricing-desc { font-size: .875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-contact-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--orange);
  background: var(--orange-pale); border: 1px solid rgba(224,114,82,.25);
  border-radius: var(--radius-md); padding: .6rem 1rem;
  margin-bottom: 1.75rem;
}
.currency-code { font-size: .7rem; color: var(--text-muted); font-weight: 500; text-align: center; margin-top: 2px; }
.currency-divider { width: 1px; background: var(--border); align-self: stretch; margin: 0 .25rem; }
.pricing-features { margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: .75rem; padding: .6rem 0; font-size: .875rem; color: var(--text-secondary); border-bottom: 1px solid rgba(200,180,172,.2); }
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .check { color: #16A34A; font-size: .9rem; margin-top: 1px; flex-shrink: 0; }
.pricing-feature .cross { color: var(--text-muted); font-size: .9rem; margin-top: 1px; flex-shrink: 0; }
.pricing-sla { display: flex; align-items: center; justify-content: space-between; padding: .75rem 1rem; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 1.5rem; font-size: .8125rem; }
.sla-label { color: var(--text-muted); font-weight: 500; }
.sla-value { font-weight: 700; color: #16A34A; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: rgba(224,114,82,.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--orange); font-size: .875rem; }
.testimonial-text { font-size: .9375rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-name { font-size: .875rem; font-weight: 700; color: var(--text-primary); margin-bottom: .1rem; }
.author-role { font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER — deep dark background, orange accents
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1A0A04 0%, #2E1409 100%);
  border-radius: var(--radius-xl); padding: 4rem 3rem;
  text-align: center; position: relative; overflow: hidden;
  color: #fff;
  box-shadow: 0 20px 60px rgba(20,6,2,.25);
}
.cta-banner::before {
  content: ''; position: absolute; top: -40%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(ellipse at 50% 0%, rgba(224,114,82,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner .label {
  color: var(--orange-light);
}
.cta-banner .label::before {
  background: var(--orange-light);
}
.cta-banner h2,
.cta-banner h3 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.78); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.75; }
.cta-buttons   { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* Secondary & outline buttons inside dark CTA banner */
.cta-banner .btn-secondary {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.30);
  box-shadow: none;
}
.cta-banner .btn-secondary:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.cta-banner .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.40);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.65);
  box-shadow: none;
}

/* Small-print text & icons inside dark CTA banner */
.cta-banner .cta-meta {
  color: rgba(255,255,255,.65);
}
.cta-banner .cta-meta i {
  color: var(--orange-light);
}

/* ============================================================
   INDUSTRY CARDS
   ============================================================ */
.industry-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.industry-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gradient-primary);
  border-radius: 4px 0 0 4px; opacity: 0; transition: opacity var(--transition);
}
.industry-card:hover::before { opacity: 1; }
.industry-card:hover { border-color: rgba(224,114,82,.3); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ind-icon-wrap {
  width: 48px; height: 48px; background: var(--orange-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange); margin-bottom: 1rem;
  transition: all var(--transition);
}
.industry-card:hover .ind-icon-wrap { background: var(--gradient-primary); color: #fff; }
.industry-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.ind-sub { font-size: .775rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.ind-link {
  margin-top: auto; font-size: .8rem; font-weight: 600; color: var(--orange);
  display: flex; align-items: center; gap: .4rem; transition: gap var(--transition);
}
.industry-card:hover .ind-link { gap: .65rem; }

.compliance-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; }
.compliance-tag {
  padding: .18rem .5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: .6rem; font-weight: 700;
  color: var(--text-secondary); letter-spacing: .5px; text-transform: uppercase;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(224,114,82,.3); box-shadow: var(--shadow-md); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--orange-pale), rgba(245,137,106,.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(255,255,255,.8)); }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; font-size: .75rem; color: var(--text-muted); }
.blog-meta .dot { width: 3px; height: 3px; background: var(--text-muted); border-radius: 50%; }
.blog-card h3 { font-size: 1rem; margin-bottom: .5rem; line-height: 1.4; color: var(--text-primary); }
.blog-card p  { font-size: .8125rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .5rem; }
.form-control {
  width: 100%; padding: .75rem 1rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans); font-size: .9375rem;
  transition: all var(--transition); outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224,114,82,.15);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control option { background: #fff; color: var(--text-primary); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 7rem 0 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg,var(--orange-pale) 0%,#fff 70%);
  text-align: center;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--border); }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-item { border: 1.5px solid var(--border); border-radius: var(--radius-md); margin-bottom: .75rem; overflow: hidden; transition: border-color var(--transition); background: #fff; }
.accordion-item.open { border-color: rgba(224,114,82,.4); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; cursor: pointer;
  background: #fff; font-weight: 600; font-size: .9375rem; color: var(--text-primary);
  transition: background var(--transition); gap: 1rem;
}
.accordion-header:hover { background: var(--orange-pale); }
.accordion-header .acc-icon { color: var(--orange); font-size: .75rem; transition: transform var(--transition); flex-shrink: 0; }
.accordion-item.open .accordion-header .acc-icon { transform: rotate(180deg); }
.accordion-item.open .accordion-header { background: var(--orange-pale); color: var(--orange-dark); }
.accordion-body { display: none; padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--text-secondary); line-height: 1.75; background: #fff; }
.accordion-item.open .accordion-body { display: block; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, var(--orange),#F5896A); opacity: .25; }
.process-step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: var(--gradient-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
  font-family: var(--font-display); position: relative; z-index: 1;
  box-shadow: 0 6px 20px rgba(224,114,82,.4);
}
.step-title { font-size: .9375rem; font-weight: 700; margin-bottom: .4rem; }
.step-desc  { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; padding: 2rem 0; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: var(--text-muted); font-weight: 500; }
.trust-icon { color: #16A34A; font-size: 1rem; }

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.location-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition); box-shadow: var(--shadow-sm); }
.location-card:hover { border-color: rgba(224,114,82,.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.location-flag    { font-size: 2.5rem; margin-bottom: .75rem; }
.location-country { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .25rem; }
.location-role    { font-weight: 700; font-size: 1rem; margin-bottom: .75rem; color: var(--text-primary); }
.location-details { font-size: .8125rem; color: var(--text-secondary); line-height: 1.7; }
.location-details a { color: var(--orange); transition: color var(--transition); }
.location-details a:hover { color: var(--orange-dark); }

/* ============================================================
   FOOTER — white with warm off-white alt
   ============================================================ */
.footer { background: #fff; border-top: 1px solid var(--border); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.75; margin: 1rem 0 1.5rem; max-width: 320px; }
.footer-social { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--text-muted); transition: all var(--transition);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(224,114,82,.4); }

.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { font-size: .875rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8125rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8125rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s} .reveal-delay-4{transition-delay:.4s}
.reveal-delay-5{transition-delay:.5s}

.animate-in { animation: rise .6s ease-out both; }
.animate-in-delay-1{animation-delay:.1s} .animate-in-delay-2{animation-delay:.2s}
.animate-in-delay-3{animation-delay:.3s} .animate-in-delay-4{animation-delay:.4s}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-0{margin-top:0}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-6{margin-top:3rem}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-6{margin-bottom:3rem}

.text-primary   { color: var(--text-primary)   !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted     { color: var(--text-muted)     !important; }
.text-blue      { color: var(--orange); }
.text-cyan      { color: var(--orange-dark); }
.text-green     { color: #16A34A; }
.text-amber     { color: #B45309; }
.text-purple    { color: var(--orange); }

.fw-400{font-weight:400}.fw-500{font-weight:500}.fw-600{font-weight:600}
.fw-700{font-weight:700}.fw-800{font-weight:800}.fw-900{font-weight:900}

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.tab-btn {
  padding: .65rem 1.25rem; font-size: .875rem; font-weight: 600;
  color: var(--text-muted); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); margin-bottom: -1px; font-family: var(--font-sans);
}
.tab-btn:hover { color: var(--text-secondary); }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-pane { display: none; } .tab-pane.active { display: block; }

.card-highlight { background: var(--orange-pale); border-color: rgba(224,114,82,.25); }

.number-list { counter-reset: num-list; }
.number-list li { counter-increment: num-list; display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.number-list li:last-child { border-bottom: none; }
.number-list li::before { content: counter(num-list,decimal-leading-zero); font-size: 1.5rem; font-weight: 900; font-family: var(--font-display); color: rgba(224,114,82,.25); line-height: 1; flex-shrink: 0; width: 2rem; }

.notice { padding: 1rem 1.25rem; border-radius: var(--radius-md); border-left: 3px solid; font-size: .875rem; line-height: 1.6; }
.notice-blue  { background: var(--orange-pale);         border-color: var(--orange);   color: var(--text-secondary); }
.notice-green { background: rgba(34,197,94,.08);        border-color: #22C55E;         color: var(--text-secondary); }
.notice-amber { background: rgba(245,158,11,.08);       border-color: var(--amber);    color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
  .hero-dashboard { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
}
@media (max-width:900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
  .stats-bar .container { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
}
@media (max-width:768px) {
  .nav-links,.nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .hero { padding-top: 72px; min-height: auto; padding-bottom: 3rem; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-flags { justify-content: center; }
  .hero-visual { display: none; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .pricing-card { padding: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .container { padding: 0 1rem; }
  .grid-3,.grid-4 { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .process-steps { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -1px; }
  .btn-xl { padding: .875rem 1.5rem; font-size: .9375rem; }
  .cta-banner { text-align: left; }
  .cta-buttons { flex-direction: column; }
  .trust-bar { gap: 1rem; justify-content: flex-start; }
}
