/* ================================================================
   DINFOSEC — index.css  (Home Page ONLY)
   REWRITTEN 2026 — Hero is now fully fluid & responsive
   
   HOW THE HERO LAYOUT WORKS:
   - Uses Bootstrap's 12-column grid (.col-lg-6 each side)
   - Left: text content (always visible, all screen sizes)
   - Right: logo visual (hidden on screens < 1100px with d-none d-lg-flex)
   - Hero title uses fluid clamp() — scales smoothly from mobile to 4K
   - On mobile: full-width single column, large readable text
   - On TV/4K: font scales up via html font-size increase in shared.css
   ================================================================ */

/* ================================================================
   PRELOADER
   Shows on first load, fades out after page ready (JS removes it)
   ================================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.5s ease;
}

.pre-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pre-logo-row img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: contain;
  animation: float-up 1.5s ease infinite;
  filter: drop-shadow(0 0 14px rgba(212,160,23,0.65));
}
.pre-company-name {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
}
.pre-company-name span { color: var(--gold); }

.pre-bar {
  width: 220px; height: 2px;
  background: rgba(212,160,23,0.14);
  border-radius: 2px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  animation: preloader-bar 1.4s ease forwards;
}
.pre-status {
  font-family: var(--font-m);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  /* Full viewport height */
  min-height: 100vh;
  min-height: 100dvh; /* dvh = dynamic viewport height (handles mobile browser chrome) */
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: justify;
  /* Top padding = navbar height + breathing room */
  padding: calc(var(--nav-h) + 60px) 0 80px;
}

/* Ambient glow behind hero content */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(139,26,26,0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(26,26,78,0.18), transparent 60%);
}

/* ── Hero Eyebrow (badge above title) ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-m);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease forwards;
}

/* Green live dot */
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
  flex-shrink: 0;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #4ade80;
  animation: pulse-dot 1.4s ease infinite;
}

/* ── Hero Title — THE MAIN FIX ── 
   clamp(MIN, PREFERRED, MAX)
   - MIN   = 2.2rem  → minimum on very small phones
   - PREFERRED = 6vw → scales with viewport (fluid)
   - MAX   = 5.5rem  → cap on large desktops
   
   This means:
   - Phone 375px  → ~2.2rem (22px base = ~39px)  looks great
   - Tablet 768px → ~3.5rem — fills nicely
   - Laptop 1200px → ~5rem — full and bold
   - 4K TV → up to 5.5rem + html font-size increase = huge and clear
*/
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;         /* Tight line height for display text */
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
  word-break: keep-all;      /* Prevent awkward mid-word breaks */
  overflow-wrap: normal;
  animation: fade-in-up 2.0s ease 0.1s both;
}

/* Gold shimmer on "IT Solutions" line */
.hero-title .shimmer {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ── Typing Subtitle ── */
.hero-sub {
  font-family: var(--font-h);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 400;
  min-height: 2rem;  /* Reserve space so layout doesn't jump */
  animation: fade-in-up 1s ease 0.2s both;
}
.hero-sub .pfx { color: var(--text); }

/* Typing text cursor blink */
#typingText {
  color: var(--gold-light);
  border-right: 2px solid var(--gold);
  padding-right: 3px;
}

/* ── Hero Description ── */
.hero-desc {
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.9;
  margin-bottom: 36px;
  animation: fade-in-up 1s ease 0.3s both;
}

/* ── CTA Buttons ── */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fade-in-up 1s ease 0.4s both;
}

/* ── Trust Badges ── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  animation: fade-in-up 1s ease 0.5s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}
.trust-item .tick { font-size: 1rem; }
.trust-sep {
  width: 1px; height: 20px;
  background: rgba(212,160,23,0.2);
}

/* ================================================================
   HERO VISUAL (Right Side)
   Logo with animated orbital rings + floating info cards
   Hidden on screens smaller than lg (1100px)
   ================================================================ */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Height adapts — uses aspect ratio instead of fixed px */
  height: clamp(340px, 40vw, 500px);
}

/* Central logo circle */
.hero-logo-ring {
  position: relative;
  z-index: 4;
  width: clamp(160px, 18vw, 240px);
  height: clamp(160px, 18vw, 240px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,78,0.8), rgba(10,10,26,0.9));
  border: 2px solid rgba(212,160,23,0.3);
  box-shadow:
    0 0 60px rgba(212,160,23,0.15),
    inset 0 0 40px rgba(139,26,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: gold-pulse 3s ease infinite;
}
.hero-logo-ring img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212,160,23,0.4));
}

/* Orbiting rings */
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.1);
}
.orb1 { width: clamp(230px,26vw,310px); height: clamp(230px,26vw,310px); animation: rotate-ring 20s linear infinite; }
.orb2 { width: clamp(310px,36vw,420px); height: clamp(310px,36vw,420px); animation: rotate-ring 32s linear infinite reverse; border-color: rgba(139,26,26,0.1); }
.orb3 { width: clamp(380px,44vw,490px); height: clamp(380px,44vw,490px); animation: rotate-ring 50s linear infinite; }

/* Dot on each orbit */
.orbit::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

/* Floating info cards around logo */
.float-card {
  position: absolute;
  z-index: 5;
  background: var(--surface);
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: var(--r);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.float-card img { width: 26px; height: 26px; object-fit: contain; border-radius: 4px; flex-shrink: 0; }
.fc-label { font-size: 0.74rem; color: var(--muted); display: block; line-height: 1.2; }
.fc-val   { font-size: 0.9rem;  font-weight: 700; color: var(--white); font-family: var(--font-h); display: block; }

/* Card positions + float animations */
.fc1 { top: 8%;    right: 5%;  animation: float-up 3.5s ease-in-out infinite; }
.fc2 { bottom: 20%; right: 0%;  animation: float-up 4s   0.6s ease-in-out infinite; }
.fc3 { bottom: 8%;  left: 3%;  animation: float-up 3.8s 1.2s ease-in-out infinite; }

/* ================================================================
   STATS STRIP
   4 key numbers in a horizontal bar
   ================================================================ */
.stats-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--navy-dark), var(--bg2), var(--navy-dark));
  border-top:    1px solid rgba(212,160,23,0.15);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  padding: 52px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  text-align: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(212,160,23,0.1);
}
.stat-cell:last-child { border-right: none; }

.stat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.18);
}
.stat-icon .emoji { font-size: 1.4rem; }

/* Counter number (animated by JS) */
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(212,160,23,0.4);
}
.stat-lbl {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

/* ================================================================
   SERVICES CARDS GRID
   ================================================================ */
.svc-grid {
  display: grid;
  /* auto-fit: creates as many columns as fit, min 275px each */
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 24px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid rgba(212,160,23,0.1);
  border-radius: var(--rl);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--tr);
}
/* Gold bottom accent line on hover */
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity var(--tr);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 20px rgba(212,160,23,0.1);
}
.svc-card:hover::after { opacity: 1; }

/* Card number label e.g. "01" */
.svc-num {
  font-family: var(--font-m);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 14px;
}

/* Icon box */
.svc-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(139,26,26,0.2), rgba(212,160,23,0.08));
  border: 1px solid rgba(212,160,23,0.2);
}
.svc-icon img   { width: 34px; height: 34px; object-fit: contain; }
.svc-icon .emoji { font-size: 1.8rem; }

.svc-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Tech tag pills */
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 18px; }
.stag {
  font-family: var(--font-m);
  font-size: 0.64rem;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(212,160,23,0.1);
  color: var(--gold);
  border: 1px solid rgba(212,160,23,0.2);
}

/* "Learn More" link */
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--tr);
}
.svc-card:hover .svc-more { gap: 10px; }

/* ================================================================
   WHY US SECTION
   2-column layout: bullet points | dashboard panel
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-items { display: flex; flex-direction: column; gap: 14px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid rgba(212,160,23,0.1);
  border-radius: var(--r);
  transition: all var(--tr);
}
.why-item:hover {
  border-color: rgba(212,160,23,0.3);
  background: var(--surface2);
  transform: translateX(5px);
}

.why-ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.why-ico img { width: 24px; height: 24px; object-fit: contain; }

.why-text h4 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-text p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* Dashboard monitoring panel */
.dash-panel {
  background: var(--surface);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--rx);
  padding: 28px;
  overflow: hidden;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,160,23,0.1);
  flex-wrap: wrap;
  gap: 10px;
}
.dash-title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Online badge (green dot + text) */
.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-m);
  font-size: 0.68rem;
  color: #4ade80;
  letter-spacing: 1px;
}
.online-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 1.5s infinite;
}

/* Metric progress bars */
.bar-row { margin-bottom: 16px; }
.bar-row-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.bar-lbl { font-size: 0.82rem; color: var(--muted); }
.bar-val { font-family: var(--font-m); font-size: 0.78rem; color: var(--gold); font-weight: 500; }

.bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
/* Bar fill — width set via data-w attribute, animated by JS on scroll */
.bar-fill {
  height: 100%;
  border-radius: 4px;
  width: 0; /* starts at 0, JS sets data-w value */
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.bf-gold { background: linear-gradient(90deg, var(--red), var(--gold)); box-shadow: 0 0 8px rgba(212,160,23,0.3); }
.bf-red  { background: linear-gradient(90deg, var(--red-dark), var(--red-light)); }

/* Large uptime percentage display */
.uptime-center { text-align: center; padding: 16px 0 6px; }
.uptime-num {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212,160,23,0.45);
  display: block;
  line-height: 1;
}
.uptime-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ================================================================
   PROCESS STEPS (How It Works)
   4 steps in a row with connecting line
   ================================================================ */
.proc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

/* Connecting horizontal line between steps */
.proc-row::before {
  content: '';
  position: absolute;
  top: 35px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
  z-index: 0;
}

.proc-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* Step number circle */
.proc-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(212,160,23,0.4);
  background: var(--surface);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  transition: all var(--tr);
  box-shadow: 0 0 14px rgba(212,160,23,0.12);
}
.proc-item:hover .proc-num {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 0 28px rgba(212,160,23,0.5);
}

.proc-item h4 {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.proc-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 22px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid rgba(212,160,23,0.1);
  border-radius: var(--rl);
  padding: 28px;
  transition: all var(--tr);
  position: relative;
}
/* Decorative quote mark */
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 22px;
  font-size: 5rem;
  color: rgba(212,160,23,0.07);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testi-card:hover {
  border-color: rgba(212,160,23,0.28);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 0.92rem; color: var(--text); line-height: 1.82; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  border: 2px solid rgba(212,160,23,0.3);
}
.testi-name { font-weight: 700; color: var(--white); font-size: 0.9rem; font-family: var(--font-h); }
.testi-role { font-size: 0.78rem; color: var(--muted); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(139,26,26,0.15), rgba(26,26,78,0.2));
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: var(--rx);
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,23,0.1), transparent 60%);
}
.cta-box h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}
.cta-box h2 span { color: var(--gold); }
.cta-box p {
  color: var(--muted);
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ================================================================
   FOUNDED RIBBON
   ================================================================ */
.founded-ribbon {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--red-dark), var(--navy), var(--red-dark));
  border-top:    1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 16px 0;
  text-align: center;
  overflow: hidden;
}
.founded-ribbon::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 60px,
    rgba(212,160,23,0.04) 60px, rgba(212,160,23,0.04) 61px
  );
}
.founded-ribbon p {
  font-family: var(--font-m);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.founded-ribbon strong { color: var(--white); }

/* ================================================================
   RESPONSIVE — HOME PAGE SPECIFIC
   ================================================================ */

/* Hide hero visual on screens < 1100px (logo + orbits) */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  /* When visual is hidden, left column takes full width */
  .hero .col-lg-6:first-child { max-width: 100%; flex: 0 0 100%; }
}

/* Why Us and Process adjustments */
@media (max-width: 992px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .proc-row { grid-template-columns: 1fr 1fr; gap: 36px; }
  .proc-row::before { display: none; }
}

/* Stats strip — 2 columns on mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
  }
  .stats-row             { grid-template-columns: 1fr 1fr; }
  .stat-cell             { border-bottom: 1px solid rgba(212,160,23,0.1); }
  .stat-cell:nth-child(2){ border-right: none; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4){ border-bottom: none; }
}

/* Buttons stack on small mobile */
@media (max-width: 576px) {
  .hero-btns           { flex-direction: column; }
  .hero-btns .btn      { width: 100%; justify-content: center; }
  .proc-row            { grid-template-columns: 1fr; }
  .hero-trust          { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-sep           { display: none; }
  .hero-title          { letter-spacing: -0.5px; }
}
