/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0B1F2A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.preloader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  width: 120px;
  height: auto;
  animation: preloaderPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.3));
  position: relative;
  z-index: 2;
}
.preloader-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
  animation: preloaderGlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 1;
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #4FC3F7, #00AEEF);
  border-radius: 3px;
  transition: width 0.3s ease-out;
}
.preloader-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.preloader-dots::after {
  content: '';
  animation: preloaderDots 1.5s steps(4, end) infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}
@keyframes preloaderGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
}
@keyframes preloaderDots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* ── NAV LOGO IMAGE ── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: filter 0.2s ease-out;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease-out;
}
.footer-logo:hover .footer-logo-img {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-logo-img { height: 30px; }
  .preloader-logo { width: 90px; }
  .preloader-bar { width: 160px; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── PREVENT ACCIDENTAL HORIZONTAL SCROLL (mobile safety) ── */
html, body { overflow-x: hidden; max-width: 100%; }
body { position: relative; }

/* ── CUSTOM SCROLLBAR (Windows / Chromium) ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #d1d3d4; }
::-webkit-scrollbar-thumb { background: #0B1F2A; border-radius: 6px; border: 2px solid #d1d3d4; }
::-webkit-scrollbar-thumb:hover { background: #00AEEF; }
html { scrollbar-color: #0B1F2A #d1d3d4; scrollbar-width: thin; }

:root {
  --primary: #0B1F2A;
  --accent: #00AEEF;
  --accent-hover: #0090C8;
  --accent-light: rgba(0, 174, 239, 0.1);
  --bg: #F3F5F6;
  --white: #FFFFFF;
  --text-primary: #0B1F2A;
  --text-secondary: #808285;
  --text-muted: #808285;
  --text-on-dark: #d1d3d4;
  --text-on-dark-muted: #d1d3d4;
  --border: #d1d3d4;
  --card-shadow: 0 1px 3px rgba(11, 31, 42, 0.08), 0 4px 12px rgba(11, 31, 42, 0.04);
  --card-shadow-hover: 0 4px 12px rgba(11, 31, 42, 0.12), 0 8px 24px rgba(11, 31, 42, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 200ms ease-out;
  --max-width: 1360px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-dark { background: var(--primary); color: var(--text-on-dark); }

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subheading {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subheading {
  margin: 0 auto;
}

/* In-page links clear fixed navigation */
section[id],
#contact {
  scroll-margin-top: 88px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  line-height: 1;
}
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost-dark:hover {
  background: var(--accent-light);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 31, 42, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 rgba(11, 31, 42, 0);
  transition: background-color 0.35s ease-out, border-color 0.35s ease-out, backdrop-filter 0.35s ease-out, -webkit-backdrop-filter 0.35s ease-out, box-shadow 0.35s ease-out, transform 0.35s ease-out;
}
.nav.scrolled,
.nav.menu-open {
  background: rgba(11, 31, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 16px rgba(11, 31, 42, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 10px 20px !important;
  font-size: 0.875rem !important;
  min-height: 40px !important;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(11, 31, 42, 0.18);
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 4px 14px rgba(11, 31, 42, 0.25);
}
.nav.scrolled .nav-cta,
.nav.menu-open .nav-cta {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}
.nav.scrolled .nav-cta:hover,
.nav.menu-open .nav-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--primary);
  padding: 140px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0, 174, 239, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
/* Hero container — slightly wider than site-standard for impact, still bounded */
.hero .container {
  max-width: 1400px;
  padding: 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: #00AEEF; text-shadow: 0 2px 16px rgba(79, 195, 247, 0.28); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-bullets {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-on-dark);
  font-size: 0.9375rem;
}
.hero-bullets li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #00AEEF;
}
.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.hero-actions .btn {
  white-space: nowrap;
  gap: 6px;
  min-height: 46px;
  letter-spacing: -0.01em;
}
.hero-actions .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.hero-actions .btn-primary {
  padding: 12px 20px;
  font-size: 0.9375rem;
}
.hero-actions .btn-ghost {
  padding: 11px 18px;
  font-size: 0.875rem;
  border-color: rgba(255, 255, 255, 0.25);
}
.hero-actions .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.hero-image-wrapper {
  width: 100%;
  aspect-ratio: 6 / 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper .dc-visual {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 70px rgba(0, 174, 239, 0.35)) saturate(1.08) contrast(1.06) brightness(1.08);
}
/* Decorative glow rings behind the SVG */
.hero-glow-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-glow-ring-1 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.22) 0%, transparent 60%);
  animation: heroPulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hero-glow-ring-2 {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.16) 0%, transparent 70%);
  animation: heroPulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite 0.5s;
}
.hero-glow-ring-3 {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.08) 0%, transparent 80%);
  animation: heroPulse 6s cubic-bezier(0.4, 0, 0.6, 1) infinite 1s;
}
@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.trust-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

/* ── PROBLEMS ── */
.problems { background: var(--bg); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.problem-card:hover {
  box-shadow: 0 8px 32px rgba(0,174,239,0.12), var(--card-shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(0,174,239,0.40);
  background: linear-gradient(160deg, rgba(0,174,239,0.04) 0%, rgba(0,174,239,0.01) 100%);
}
.problem-card:hover .problem-icon {
  transform: scale(1.08);
}
.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(0,174,239,0.10);
  color: #00AEEF;
  transition: transform var(--transition);
}
.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── SOLUTION ── */
.solution { background: var(--white); }
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.solution-diagram {
  background: linear-gradient(135deg, #F0F4FF 0%, #E8EEFF 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 174, 239, 0.12);
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-content .section-heading { text-align: left; }
.solution-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.solution-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
}
.solution-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}
.solution-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── CAPABILITIES CTA ── */
.capabilities-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── DATA CENTER ── */
.datacenter { background: var(--primary); position: relative; overflow: hidden; }
.datacenter::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(0, 174, 239, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.datacenter .container { position: relative; z-index: 1; }
.dc-subheading { color: var(--text-on-dark-muted); margin: 0 auto; }

/* Unified capability wall — all 10 cards share one visual language */
.dc-capability-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
/* Center the last 2 cards (9th and 10th) in the 4-column grid: place them in cols 2 and 3 */
.dc-capability-wall > .dc-card:nth-last-child(2) { grid-column: 2; }
.dc-capability-wall > .dc-card:last-child { grid-column: 3; }
/* Subtle connecting accent line that spans behind the cards — visual "glue" */
.dc-capability-wall::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2%;
  right: -2%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.2) 20%, rgba(0, 174, 239, 0.2) 80%, transparent);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.dc-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 28px 18px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  overflow: hidden;
}
.dc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(0, 174, 239, 0) 0%, rgba(0, 174, 239, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background var(--transition);
}
.dc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 174, 239, 0.35);
  background: linear-gradient(160deg, rgba(0, 174, 239, 0.16) 0%, rgba(0, 174, 239, 0.02) 100%);
}
.dc-card:hover::after {
  background: linear-gradient(160deg, rgba(0, 174, 239, 0.5) 0%, rgba(0, 174, 239, 0) 60%);
}
.dc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.34) 0%, rgba(0, 174, 239, 0.24) 100%);
  border: 1px solid rgba(79, 195, 247, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #00AEEF;
  box-shadow: 0 0 0 1px rgba(0, 174, 239, 0.22) inset, 0 0 26px rgba(79, 195, 247, 0.25);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
}

.dc-card:hover .dc-card-icon {
  transform: scale(1.08);
  color: #ffd08a;
  border-color: rgba(79, 195, 247, 0.9);
  box-shadow: 0 0 0 1px rgba(79, 195, 247, 0.38) inset, 0 0 32px rgba(79, 195, 247, 0.44);
}


.dc-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.dc-card-desc {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
}

/* ── CAPABILITIES ── */
.capabilities { background: var(--bg); }
.capabilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.capability-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: all var(--transition); cursor: default; }
.capability-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(0,174,239,0.12), var(--card-shadow-hover); transform: translateY(-3px); background: linear-gradient(160deg, rgba(0,174,239,0.05) 0%, rgba(0,174,239,0.01) 100%); }
.capability-card:hover .capability-icon { transform: scale(1.08); background: var(--accent); color: var(--white); }
.capability-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all var(--transition); }
.capability-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; }

/* ── WHY CHOOSE US ── */
.why-us { background: var(--white); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(0, 174, 239, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.why-us .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-content .section-heading {
  text-align: left;
  margin-bottom: 16px;
}
.why-intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.why-point:hover {
  background: rgba(0, 174, 239, 0.035);
}
.why-point-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(79, 195, 247, 0.08) 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 174, 239, 0.15);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.why-point:hover .why-point-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.why-point-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.why-point-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Right-side visual */
.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}
.why-visual-inner {
  width: 100%;
  max-width: 460px;
  position: relative;
}
.why-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 50px rgba(79, 195, 247, 0.22));
}

/* ── PROCESS ── */
.process { background: var(--white); position: relative; }
.timeline { display: flex; justify-content: space-between; position: relative; padding: 40px 0 0; }
.timeline::before { content: ''; position: absolute; top: 66px; left: 10%; right: 10%; height: 3px; background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 174, 239, 0.2) 100%); border-radius: 2px; }
.timeline-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 12px; }
.timeline-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--accent) 0%, #00AEEF 100%); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; z-index: 2; box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(0, 174, 239, 0.15), 0 4px 16px rgba(0, 174, 239, 0.25); transition: transform var(--transition), box-shadow var(--transition); }
.timeline-num svg { display: block; }
.timeline-step:hover .timeline-num { transform: scale(1.08); box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(0, 174, 239, 0.25), 0 6px 20px rgba(0, 174, 239, 0.4); }
.timeline-step h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.timeline-step p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; max-width: 180px; margin: 0 auto; }
.tooltip { position: relative; cursor: help; border-bottom: 1px dashed var(--accent); }
.tooltip::after { content: attr(data-tooltip); position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--white); padding: 10px 16px; border-radius: var(--radius); font-size: 0.8125rem; font-weight: 500; white-space: normal; max-width: 280px; text-align: center; line-height: 1.5; opacity: 0; pointer-events: none; transition: opacity var(--transition); box-shadow: 0 4px 12px rgba(11, 31, 42, 0.25); z-index: 10; }
.tooltip::before { content: ''; position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--primary); opacity: 0; pointer-events: none; transition: opacity var(--transition); z-index: 10; }
.tooltip:hover::after, .tooltip:hover::before, .tooltip:focus::after, .tooltip:focus::before { opacity: 1; }

/* ── CASE STUDIES ── */
.case-studies { background: var(--bg); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.case-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--card-shadow); border: 1px solid var(--border); display: flex; flex-direction: column; transition: all var(--transition); }
.case-card:hover { box-shadow: 0 8px 32px rgba(0,174,239,0.12), var(--card-shadow-hover); transform: translateY(-3px); border-color: rgba(0,174,239,0.40); }
.case-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 12px; }
.case-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.case-scope { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.case-result { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.case-result p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }
.case-result strong { color: var(--accent); font-weight: 700; }

/* ── LEAD FORM ── */
.lead-form-section { background: var(--white); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.form-wrapper { background: var(--bg); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); position: relative; overflow: hidden; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.form-group label .optional { font-weight: 400; color: var(--text-muted); }
.form-control { width: 100%; padding: 12px 16px; font-size: 0.9375rem; font-family: inherit; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); color: var(--text-primary); transition: border-color var(--transition), box-shadow var(--transition); min-height: 48px; }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.lead-persuasion h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.lead-persuasion p { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.lead-benefits { display: flex; flex-direction: column; gap: 20px; }
.lead-benefit { display: flex; gap: 16px; align-items: flex-start; }
.lead-benefit-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius); background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.lead-benefit h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; }
.lead-benefit p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.5; }

/* ── FINAL CTA ── */
.final-cta { background: linear-gradient(135deg, var(--primary) 0%, #132d52 100%); text-align: center; padding: 80px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; left: -25%; width: 150%; height: 200%; background: radial-gradient(ellipse at center, rgba(0, 174, 239, 0.06) 0%, transparent 60%); pointer-events: none; }
.final-cta h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; }
.final-cta p { color: var(--text-on-dark-muted); font-size: 1.125rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; }
.final-cta .btn { position: relative; }

/* ── FOOTER ── */
.footer { background: #060F1D; color: rgba(255, 255, 255, 0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 2fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 12px; color: rgba(255, 255, 255, 0.5); max-width: 280px; }
.footer h4 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 12px; }
.footer ul:not(.footer-links-split) { display: flex; flex-direction: column; gap: 12px; }
.footer ul li a { font-size: 0.875rem; color: rgba(255, 255, 255, 0.55); transition: color var(--transition); }
.footer ul li a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255, 255, 255, 0.55); }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 28px; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.4); }
.footer-brand .compliance-badges { margin-top: 20px; }
.compliance-badges { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.compliance-badge-img {
  width: 64px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition: transform var(--transition), filter var(--transition);
  opacity: 0.95;
}
.compliance-badge-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 16px rgba(0, 174, 239, 0.35));
  opacity: 1;
}

/* ── RESPONSIVE: 1024px ── */
@media (max-width: 1024px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.8125rem; }
  .nav-cta { padding: 7px 14px !important; font-size: 0.8125rem !important; }
  .hero .container { padding: 0 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 120px 0 60px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .problems-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .problems-grid .problem-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .case-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .case-grid .case-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .capabilities-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .dc-capability-wall { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  /* Reset desktop centering and center the orphan last card within the 3-col grid */
  .dc-capability-wall > .dc-card:nth-last-child(2) { grid-column: auto; }
  .dc-capability-wall > .dc-card:last-child { grid-column: 2; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; min-height: 360px; }
  .why-visual-inner { max-width: 380px; }
  .lead-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
}

/* ── RESPONSIVE: 768px (Mobile) ── */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-heading { font-size: clamp(1.5rem, 5vw, 1.75rem); margin-bottom: 12px; }
  .section-subheading { font-size: 1rem; }

  /* Mobile NAV: White sticky header + left drawer */
  .nav { background: rgba(11, 31, 42, 0); border-bottom-color: rgba(255, 255, 255, 0); box-shadow: 0 0 0 rgba(11, 31, 42, 0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }
  .nav-inner { height: 60px; }
  .nav-logo { color: var(--white); }
  .nav-logo span { color: var(--accent); }
  .nav-links {
    position: fixed; top: 0; left: 0; bottom: 0; width: 280px; max-width: 80vw;
    background: var(--white); z-index: 150;
    display: flex; flex-direction: column; align-items: stretch; padding: 20px 24px 32px;
    gap: 4px; overflow-y: auto;
    transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(11, 31, 42, 0);
  }
  .nav-links.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(11, 31, 42, 0.15);
  }
  .nav-links a { color: var(--text-primary); padding: 14px 16px; border-radius: var(--radius); font-size: 0.9375rem; font-weight: 500; transition: background 0.2s ease-out; }
  .nav-links a:hover, .nav-links a:active { background: var(--bg); }
  .nav-links .nav-cta { color: var(--white); margin-top: 12px; text-align: center; justify-content: center; }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 140;
    background: rgba(11, 31, 42, 0.5);
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  }
  .nav-overlay.visible { opacity: 1; visibility: visible; }
  body.nav-open .mobile-cta-bar { transform: translateY(100%) !important; pointer-events: none; }
  body.nav-open .scroll-top { opacity: 0 !important; visibility: hidden !important; pointer-events: none; }
  body.nav-open .contact-fab { opacity: 0 !important; visibility: hidden !important; pointer-events: none; }
  .nav-toggle { display: flex; z-index: 160; }
  .nav-toggle span { background: var(--white); transition: all 0.3s ease-out; transform-origin: center; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Persistent Bottom CTA Bar */
  .mobile-cta-bar { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--white); padding: 12px 16px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); box-shadow: 0 -2px 12px rgba(11, 31, 42, 0.1); transform: translateY(100%); transition: transform 0.3s ease-out; }
  .mobile-cta-bar.visible { transform: translateY(0); }
  .mobile-cta-btn { width: 100%; font-size: 0.9375rem; }
  body { padding-bottom: 0; }
  body.has-mobile-cta { padding-bottom: 72px; }

  /* Hero: text-first, center-aligned */
  .hero { padding: 104px 0 56px; background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=800&q=60'); background-size: cover; background-position: center; position: relative; }
  .hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, #0B1F2A 0%, #0B1F2Abf 100%); z-index: 0; }
  .hero .container { position: relative; z-index: 1; padding: 0 20px; max-width: 100%; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero h1 { font-size: 28px; text-align: center; }
  .hero-sub { font-size: 15px; text-align: center; margin-left: auto; margin-right: auto; margin-bottom: 24px; }
  .hero-bullets { align-items: center; margin-bottom: 28px; gap: 10px; }
  .hero-bullets li { font-size: 14px; justify-content: flex-start; }
  .hero-actions { flex-direction: column; max-width: 100%; margin: 0 auto; gap: 10px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-actions .btn-primary { padding: 14px 24px; font-size: 1rem; }
  .hero-actions .btn-ghost { padding: 12px 24px; font-size: 0.875rem; }

  /* Trust Bar */
  .trust-bar { padding: 28px 0; }
  .trust-label { margin-bottom: 20px; font-size: 0.75rem; }
  .trust-carousel-track { gap: 40px; }
  .trust-logo-img { height: 32px; max-width: 140px; }

  /* Reset tablet grid overrides */
  .problems-grid .problem-card:last-child,
  .case-grid .case-card:last-child { grid-column: auto; max-width: none; margin: 0; }

  /* Problems: Carousel */
  .carousel-wrapper { position: relative; overflow: hidden; max-width: 100%; }
  .problems-grid {
    display: flex; gap: 0; overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    max-width: 100%;
  }
  .problems-grid > *, .case-grid > * { opacity: 1 !important; }
  .problem-card {
    min-width: 100%; flex-shrink: 0; width: 100%;
    padding: 28px 24px;
    border-left: 3px solid #00AEEF; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .problem-card h3 { font-size: 1rem; margin-bottom: 8px; }
  .problem-card p { font-size: 0.875rem; }
  .carousel-dots { display: flex; justify-content: center; gap: 8px; padding-top: 20px; }
  .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; padding: 0; cursor: pointer; transition: all 0.3s ease-out; }
  .carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

  /* Solution: hide desktop diagram */
  .solution-grid { grid-template-columns: 1fr; gap: 28px; }
  .solution-diagram { display: none; }
  .solution-mobile-diagram { display: block !important; }
  .solution-desc { font-size: 1rem; margin-bottom: 20px; }
  .solution-features { gap: 12px; }
  .solution-features li { font-size: 0.875rem; }

  /* Capabilities */
  .capabilities-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .capability-card { padding: 24px 16px; }
  .capability-card h3 { font-size: 0.875rem; }

  /* Data Center */
  .datacenter .section-header { margin-bottom: 28px; }
  .dc-capability-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dc-capability-wall::before { display: none; }
  /* Reset tablet/desktop centering on mobile 2-col grid */
  .dc-capability-wall > .dc-card:nth-last-child(2),
  .dc-capability-wall > .dc-card:last-child { grid-column: auto; }
  .dc-card { padding: 22px 14px 18px; }
  .dc-card-icon { width: 46px; height: 46px; margin-bottom: 12px; }
  .dc-card-title { font-size: 0.9375rem; }
  .dc-card-desc { font-size: 0.75rem; }

  /* Why Choose Us (mobile) */
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-visual { order: -1; min-height: 300px; }
  .why-visual-inner { max-width: 320px; }
  .why-content { text-align: center; }
  .why-content .section-heading { text-align: center; }
  .why-intro { font-size: 1rem; margin-bottom: 24px; text-align: left; max-width: 100%; }
  .why-points { gap: 14px; text-align: left; }
  .why-point { padding: 12px; gap: 14px; }
  .why-point-icon { width: 40px; height: 40px; }
  .why-point-body h3 { font-size: 0.9375rem; }
  .why-point-body p { font-size: 0.8125rem; }

  /* Process: vertical timeline with highlighted steps */
  .timeline { flex-direction: column; gap: 0; align-items: flex-start; padding: 0; }
  .timeline::before { top: 0; bottom: 0; left: 23px; right: auto; width: 3px; height: 100%; }
  .timeline-step { flex-direction: row; text-align: left; gap: 16px; padding: 14px 0; }
  .timeline-num { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; box-shadow: 0 0 0 5px var(--white), 0 0 0 7px rgba(0, 174, 239, 0.15), 0 2px 10px rgba(0, 174, 239, 0.25); }
  .timeline-num svg { width: 20px; height: 20px; }
  .timeline-step h3 { font-size: 0.875rem; margin-bottom: 4px; }
  .timeline-step p { max-width: none; font-size: 0.8125rem; }
  .timeline-step:nth-child(3),
  .timeline-step:nth-child(4) { background: rgba(0, 174, 239, 0.04); border-radius: var(--radius-lg); padding: 14px; margin-left: -8px; padding-left: 24px; border: 1.5px solid rgba(0, 174, 239, 0.15); }
  .timeline-step:nth-child(3) .timeline-num,
  .timeline-step:nth-child(4) .timeline-num { box-shadow: 0 0 0 5px var(--white), 0 0 0 9px rgba(0, 174, 239, 0.25); }

  /* Tooltip: keep within viewport */
  .tooltip::after { left: auto; right: 0; transform: none; max-width: 220px; }
  .tooltip::before { left: auto; right: 20px; transform: none; }

  /* FAQ */
  .faq-list { gap: 8px; }
  .faq-trigger { padding: 16px 20px; font-size: 0.9375rem; }
  .faq-answer-inner { padding: 0 20px 16px; font-size: 0.875rem; }

  /* Case Studies: Carousel */
  .case-grid {
    display: flex; gap: 0; overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
    max-width: 100%;
  }
  .case-card {
    min-width: 100%; flex-shrink: 0; width: 100%;
    border-radius: var(--radius-lg); box-shadow: 0 2px 12px rgba(11, 31, 42, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .case-card-img-wrap { height: 180px; }
  .case-card-body { padding: 24px 20px; }
  .case-card h3 { font-size: 1rem; }
  .case-scope { font-size: 0.8125rem; margin-bottom: 16px; }
  .case-result p { font-size: 0.875rem; }
  .case-kpi-mobile { display: block !important; font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 6px; letter-spacing: -0.02em; }

  /* Final CTA */
  .final-cta { padding: 56px 0; }
  .final-cta h2 { font-size: 1.5rem; margin-bottom: 12px; }
  .final-cta p { font-size: 1rem; margin-bottom: 28px; }

  /* Footer */
  .footer { padding: 40px 0 24px; }
  .footer-grid { margin-bottom: 32px; }

  /* Lead Form: Multi-step on mobile */
  .lead-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-grid-2col { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .lead-persuasion h2 { font-size: 1.375rem; }
  .lead-persuasion > p { font-size: 1rem; margin-bottom: 24px; }
  .lead-benefits { gap: 16px; }
  .lead-benefit h4 { font-size: 0.875rem; }
  .lead-benefit p { font-size: 0.8125rem; }
  .form-step-indicator { display: flex !important; align-items: center; justify-content: center; gap: 0; margin-bottom: 28px; }
  .step-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8125rem; font-weight: 700; background: var(--border); color: var(--text-muted); transition: all 0.3s ease-out; flex-shrink: 0; }
  .step-dot.active { background: var(--accent); color: var(--white); }
  .step-dot.done { background: #00AEEF; color: var(--white); }
  .step-line { height: 2px; width: 40px; background: var(--border); flex-shrink: 0; }
  .form-step { display: none !important; animation: fadeIn 0.3s ease-out; }
  .form-step.active { display: block !important; }
  .form-step-label { display: block !important; font-size: 0.8125rem; font-weight: 600; color: var(--accent); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.04em; text-align: center; }
  .form-step-actions { display: flex !important; gap: 12px; margin-top: 4px; }
  .form-step-actions .btn { flex: 1; }
  .form-step-message-field { display: none; }

  /* Footer: Accordion */
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-brand { margin-bottom: 0px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-brand .footer-logo { display: inline-block; }
  .footer-accordion-trigger { display: flex !important; align-items: center; justify-content: space-between; cursor: pointer; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); user-select: none; }
  .footer-acc-icon { display: block !important; transition: transform 0.3s ease-out; color: rgba(255,255,255,0.4); flex-shrink: 0; }
  .footer-accordion-trigger[aria-expanded="true"] .footer-acc-icon { transform: rotate(180deg); }
  .footer-accordion-trigger[aria-expanded="true"] { border-bottom-color: transparent; }
  .footer-accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; }
  .footer-accordion-panel.open { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-accordion-panel > ul { padding: 16px 0; }
  .footer-brand .compliance-badges { justify-content: center; }
  .footer-bottom { text-align: center; }
}

/* ── RESPONSIVE: 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 24px; }
  .hero { padding-top: 92px; padding-bottom: 48px; }
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .dc-capability-wall { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dc-card { padding: 18px 12px 16px; }
  .dc-card-icon { width: 42px; height: 42px; margin-bottom: 10px; }
  .dc-card-title { font-size: 0.875rem; }
  .dc-card-desc { font-size: 0.72rem; }
  .compliance-badges { flex-wrap: wrap; }
}

/* ── RESPONSIVE: 360px ── */
@media (max-width: 360px) {
  .capabilities-grid { grid-template-columns: 1fr; }
  .mob-arch-bottom { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(6, 15, 29, 0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease-out, visibility 0.3s ease-out; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-panel { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 850px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px) scale(0.97); transition: transform 0.3s ease-out; box-shadow: 0 24px 64px rgba(11, 31, 42, 0.25); }
.modal-overlay.active .modal-panel { transform: translateY(0) scale(1); }
.modal-header { position: relative; padding: 28px 64px 8px; text-align: center; }
.modal-header h2 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; text-align: center; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--bg); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); flex-shrink: 0; z-index: 2; }
.modal-close:hover { background: var(--border); }
.modal-close:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.modal-body { padding: 24px 28px 28px; }
.modal-body .form-group:last-of-type { margin-bottom: 12px; }

/* Case study modal with two-phase content */
.modal-phase { transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.modal-phase.phase-out { opacity: 0; transform: translateY(-12px); position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.modal-phase.phase-in { opacity: 1; transform: translateY(0); position: relative; z-index: 1; }
.modal-phase.phase-waiting { opacity: 0; transform: translateY(12px); position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.modal-body-phased { position: relative; padding: 24px 28px 28px; min-height: 0; overflow: hidden; }
.case-content-text h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.case-content-text p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.case-content-text .kpi-highlight { display: inline-block; background: var(--accent-light); color: var(--accent); font-weight: 700; padding: 2px 10px; border-radius: 4px; }
/* Goals / Challenges / Success three-column grid inside case study modals */
.case-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.case-detail-col { background: var(--bg); border-radius: var(--radius); padding: 16px 18px; border: 1px solid var(--border); }
.case-detail-heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent); margin-bottom: 12px; }
.case-detail-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.case-detail-list li { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5; padding-left: 14px; position: relative; }
.case-detail-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@media (max-width: 640px) { .case-detail-grid { grid-template-columns: 1fr; } }
.phase-timer-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 20px; overflow: hidden; }
.phase-timer-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; width: 0; transition: width 5s linear; }
.phase-timer-bar-fill.running { width: 100%; }
.modal-form-intro { text-align: center; margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.modal-form-intro p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; text-align: center; }

.btn-readmore { display: inline-flex; align-items: center; justify-content: center; gap: 6px; margin-top: 50px; padding: 10px 24px; font-size: 0.875rem; font-weight: 600; font-family: inherit; color: var(--accent); background: var(--accent-light); border: none; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); align-self: auto; }
.btn-readmore:hover { background: var(--accent); color: var(--white); }
.btn-readmore:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.form-submit-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(245, 247, 250, 0.88);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: var(--radius-lg);
  animation: fadeIn 0.3s ease-out;
}

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item:hover { border-color: rgba(0,174,239,0.35); box-shadow: 0 2px 16px rgba(0,174,239,0.08); }
.faq-item.active { border-color: var(--accent); border-left: 3px solid var(--accent); box-shadow: 0 4px 24px rgba(0,174,239,0.12); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--text-primary); text-align: left; line-height: 1.4; min-height: 48px; transition: background var(--transition), color var(--transition); }
.faq-trigger:hover { background: rgba(0,174,239,0.04); color: var(--primary); }
.faq-item.active .faq-trigger { background: rgba(0,174,239,0.06); color: var(--primary); }
.faq-trigger:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; border-radius: var(--radius-lg); }
.faq-trigger svg { flex-shrink: 0; transition: transform 0.3s ease-out; color: var(--accent); }
.faq-item.active .faq-trigger svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; }

/* ── THANK YOU / SPINNER ── */
.form-spinner { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; gap: 16px; animation: fadeIn 0.3s ease-out; }
.spinner-ring { width: 44px; height: 44px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
.form-spinner p { font-size: 0.9375rem; color: var(--text-muted); font-weight: 500; }
.form-thankyou { text-align: center; padding: 48px 24px; animation: fadeScaleIn 0.4s ease-out; }
.thankyou-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #12384C, #00AEEF); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--white); }
.form-thankyou h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.form-thankyou p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; max-width: 440px; margin: 0 auto; }
.form-thankyou p + p { margin-top: 12px; }
.form-thankyou-note { font-size: 0.9375rem !important; color: var(--text-secondary) !important; }
.form-thankyou-note em { font-style: italic; }
.form-thankyou-pdf-btn { margin-top: 20px; max-width: 320px; margin-left: auto; margin-right: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.form-thankyou-retry { font-size: 0.8125rem !important; color: var(--text-muted) !important; margin-top: 12px !important; }
.form-thankyou .trust-line { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.form-thankyou .trust-line svg { color: var(--accent); flex-shrink: 0; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeScaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* ── FOOTER 2-COL QUICK LINKS ── */
.footer-links-split { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.footer-links-split li { white-space: nowrap; }
@media (max-width: 768px) {
  .footer-links-split { grid-template-columns: 1fr 1fr !important; gap: 12px 20px; justify-items: start; }
  .footer-links-split li { font-size: 0.875rem; }
}

/* ── FORM 2-COL GRID ── */
.form-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

/* ── TRUST CAROUSEL ── */
.trust-carousel-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.trust-carousel-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: scrollLogos 40s linear infinite;
  width: max-content;
}
.trust-carousel-track:hover { animation-play-state: paused; }
.trust-logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  filter: saturate(0.95);
  user-select: none;
  -webkit-user-drag: none;
}
.trust-logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: saturate(1.1);
}
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── CASE CARD IMAGE ── */
.case-card { padding: 0; overflow: hidden; }
.case-card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.case-card-body .case-result { width: 100%; }
.case-card-img-wrap { width: 100%; height: 180px; overflow: hidden; }
.case-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease-out; }
.case-card:hover .case-card-img-wrap img { transform: scale(1.05); }

@media (max-width: 768px) {
  .form-grid-2col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .modal-panel { max-width: 100%; }
  .modal-header { padding: 24px 56px 0; }
  .modal-header h2 { font-size: 1.125rem; }
  .modal-close { top: 12px; right: 12px; width: 36px; height: 36px; }
  .modal-body, .modal-body-phased { padding: 20px; }
  .footer-links-split { grid-template-columns: 1fr 1fr; gap: 10px 20px; }
}

/* ── MOBILE-ONLY ELEMENTS (hidden on desktop) ── */
@media (min-width: 769px) {
  .mobile-cta-bar { display: none; }
  .case-kpi-mobile { display: none; }
  .form-step-indicator { display: none; }
  .form-step-label { display: none; }
  .form-step-actions { display: none; }
  .form-step-next { display: none; }
  .form-step-back { display: none; }
  .footer-acc-icon { display: none; }
  .solution-mobile-diagram { display: none; }
  .nav-overlay { display: none; }
  .carousel-dots { display: none; }
}

/* Desktop: show all form steps as continuous form */
@media (min-width: 769px) {
  #leadForm { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  #leadForm .form-step-indicator { display: none !important; }
  #leadForm .form-step { display: contents !important; }
  #leadForm .form-step-label { display: none !important; }
  #leadForm .form-step-next { display: none !important; }
  #leadForm .form-step-back { display: none !important; }
  #leadForm .form-step-actions { display: none !important; }
  #leadForm [data-form-step="3"] .form-step-actions { display: flex !important; grid-column: 1 / -1; }
  #leadForm [data-form-step="3"] .form-step-actions .form-step-back { display: none !important; }
  #leadForm [data-form-step="3"] .form-step-actions .btn[type="submit"] { flex: 1; }
  #leadForm .form-step-message-field { display: block !important; grid-column: 1 / -1; }
}

/* ── MOBILE ARCHITECTURE DIAGRAM ── */
.mob-arch { display: flex; flex-direction: column; align-items: center; gap: 0; padding: 24px 20px; background: linear-gradient(135deg, #F0F4FF 0%, #E8EEFF 100%); border-radius: var(--radius-lg); border: 1px solid rgba(0, 174, 239, 0.12); }
.mob-arch-layer { width: 100%; text-align: center; padding: 16px 20px; border-radius: var(--radius); font-weight: 600; font-size: 0.9375rem; }
.mob-arch-label { display: block; font-weight: 700; color: var(--text-primary); }
.mob-arch-sub { display: block; font-size: 0.75rem; font-weight: 500; color: var(--text-muted); margin-top: 4px; }
.mob-arch-mgmt { background: rgba(0, 174, 239, 0.16); border: 1px solid rgba(0, 174, 239, 0.2); }
.mob-arch-integration { background: rgba(79, 195, 247, 0.1); border: 1px solid rgba(79, 195, 247, 0.28); cursor: pointer; position: relative; }
.mob-arch-integration .mob-arch-label { color: #00AEEF; }
.mob-arch-tooltip { display: none; margin-top: 12px; padding: 12px 16px; background: var(--primary); color: var(--white); border-radius: var(--radius); font-size: 0.8125rem; font-weight: 500; line-height: 1.6; animation: fadeIn 0.2s ease-out; }
.mob-arch-tooltip.show { display: block; }
.mob-arch-arrow { padding: 8px 0; }
.mob-arch-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
.mob-arch-sys { background: rgba(0, 174, 239, 0.1); border: 1px solid rgba(0, 174, 239, 0.28); padding: 14px 8px; text-align: center; font-weight: 700; font-size: 0.8125rem; color: #12384C; }

/* ── FOOTER ACCORDION DEFAULTS (desktop: always visible) ── */
@media (min-width: 769px) {
  .footer-accordion-trigger { display: block; cursor: default; }
  .footer-accordion-panel { max-height: none; overflow: visible; }
}

/* ── HIDE FLOATING BUTTONS WHEN MODAL IS OPEN ── */
body.modal-open .scroll-top { opacity: 0 !important; visibility: hidden !important; pointer-events: none; }
body.modal-open .contact-fab { opacity: 0 !important; visibility: hidden !important; pointer-events: none; }
body.modal-open .mobile-cta-bar { transform: translateY(100%) !important; pointer-events: none; }

/* ── CASE STUDY MODAL: hide form phase + timer when user already submitted ── */
.modal-overlay.form-already-submitted .phase-timer-bar { display: none; }
.modal-overlay.form-already-submitted [data-phase="form"] { display: none; }
.modal-overlay.form-already-submitted [data-phase="thanks"] { display: none; }

/* "Return to Case Study" button — sits below the thank-you copy with breathing room */
.case-thanks .case-return-btn {
  margin-top: 24px;
  min-height: 46px;
  padding: 12px 24px;
}
.case-thanks .case-return-btn svg { flex-shrink: 0; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(165deg, #00AEEF 0%, var(--accent) 45%, #0B1F2A 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 0 0 1px rgba(11, 31, 42, 0.1),
    0 8px 22px rgba(0, 98, 204, 0.32),
    0 2px 6px rgba(11, 31, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out, background 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: linear-gradient(165deg, #00AEEF 0%, var(--accent-hover) 50%, #12384C 100%);
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 0 0 1px rgba(11, 31, 42, 0.12),
    0 12px 28px rgba(0, 98, 204, 0.4),
    0 3px 8px rgba(11, 31, 42, 0.12);
}
.scroll-top:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 2px 0 rgba(0, 0, 0, 0.08) inset,
    0 0 0 1px rgba(11, 31, 42, 0.1),
    0 4px 14px rgba(0, 98, 204, 0.28);
}
.scroll-top:focus-visible {
  outline: 3px solid rgba(0, 174, 239, 0.45);
  outline-offset: 3px;
}
@media (max-width: 768px) {
  .scroll-top { bottom: 84px; right: 16px; width: 40px; height: 40px; }
  body.has-mobile-cta .scroll-top { bottom: 84px; }
  .contact-fab { bottom: 84px; left: 16px; width: 40px; height: 40px; }
  body.has-mobile-cta .contact-fab { bottom: 84px; }
  .contact-fab-main { width: 40px; height: 40px; }
}

/* ── FLOATING CONTACT (left) ── */
.contact-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
}
.contact-fab-main {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(165deg, #00AEEF 0%, var(--accent) 45%, #0B1F2A 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset,
    0 0 0 1px rgba(11, 31, 42, 0.1),
    0 8px 22px rgba(0, 98, 204, 0.32),
    0 2px 6px rgba(11, 31, 42, 0.1);
  transition: background 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.contact-fab-main:hover {
  background: linear-gradient(165deg, #00AEEF 0%, var(--accent-hover) 50%, #12384C 100%);
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 0 0 1px rgba(11, 31, 42, 0.12),
    0 12px 28px rgba(0, 98, 204, 0.4),
    0 3px 8px rgba(11, 31, 42, 0.12);
}
.contact-fab-main:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 2px 0 rgba(0, 0, 0, 0.08) inset,
    0 0 0 1px rgba(11, 31, 42, 0.1),
    0 4px 14px rgba(0, 98, 204, 0.28);
}
.contact-fab.is-open .contact-fab-main {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset,
    0 0 0 1px rgba(0, 174, 239, 0.35),
    0 0 0 3px rgba(79, 195, 247, 0.22),
    0 10px 26px rgba(0, 98, 204, 0.38);
}
.contact-fab-main:focus-visible {
  outline: 3px solid rgba(0, 174, 239, 0.45);
  outline-offset: 3px;
}
.contact-fab-menu {
  position: absolute;
  bottom: 52px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFD 100%);
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 42, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 48px rgba(11, 31, 42, 0.14),
    0 6px 16px rgba(11, 31, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.contact-fab.is-open .contact-fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.contact-fab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: #FFFFFF;
  color: var(--text-primary);
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(11, 31, 42, 0.1);
  white-space: nowrap;
  transition: background 0.15s ease-out, border-color 0.15s ease-out, color 0.15s ease-out, box-shadow 0.15s ease-out;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 1px 2px rgba(11, 31, 42, 0.04);
}
/* Opaque hover fills so items stay readable over dark page sections (no bleed-through) */
.contact-fab-item:hover {
  background: #E8F2FF;
  border-color: rgba(0, 174, 239, 0.38);
  color: #0056b3;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 0 0 1px rgba(0, 174, 239, 0.12);
}
.contact-fab-item:focus-visible {
  outline: 3px solid rgba(0, 174, 239, 0.35);
  outline-offset: 1px;
}
.contact-fab-icon {
  flex-shrink: 0;
  color: var(--accent);
}
.contact-fab-item:hover .contact-fab-icon {
  color: #0056b3;
}
.contact-fab-item-whatsapp .contact-fab-icon {
  color: #25D366;
}
.contact-fab-item-whatsapp:hover {
  border-color: rgba(16, 185, 129, 0.45);
  background: #D1FAE5;
  color: #065F46;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 0 0 1px rgba(16, 185, 129, 0.12);
}
.contact-fab-item-whatsapp:hover .contact-fab-icon {
  color: #059669;
}

/* ── UTILITY CLASSES ── */
.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.required { color: #DC2626; }
.btn-full { width: 100%; }
.btn-flex { flex: 1; }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }
.modal-panel-wide { max-width: 640px; }

/* ── SECTION-DARK HEADING ── */
.section-dark .section-heading { color: var(--white); }

/* ── FORM HEADING (contact section) ── */
.form-heading { font-size: 1.5rem; margin-bottom: 24px; }

/* ── FORM VALIDATION STATES ── */
.form-control-error { border-color: #DC2626 !important; }
.form-error { color: #DC2626; font-size: 0.8125rem; margin-top: 4px; font-weight: 500; }

/* ── FORM SUBMIT OVERLAY TEXT ── */
.form-submit-overlay p { font-size: 0.9375rem; color: var(--text-muted); font-weight: 500; }

/* ── ERROR STATE (form submission failed) ── */
.thankyou-icon-error { background: linear-gradient(135deg, #DC2626, #EF4444); }
.form-error-link { color: #12384C; font-weight: 600; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }







