/* ===========================================================================
   Softrium LLC — dark enterprise theme
   Brand palette (exact):
     navy #0C447C · blue #185FA5 · accent #378ADD · teal #1D9E75
     warm-white #F1EFE8 · text-dark #042C53 · white #FFFFFF
   =========================================================================== */

:root {
  --navy:        #0C447C;
  --blue:        #185FA5;
  --accent:      #378ADD;
  --teal:        #1D9E75;
  --warm-white:  #F1EFE8;
  --text-dark:   #042C53;
  --white:       #FFFFFF;

  /* dark-theme surfaces derived from the brand navy */
  --ink:         #04203B;            /* page background (deep navy)        */
  --ink-2:       #052B4A;            /* alternate section background        */
  --panel:       #0A3157;            /* card / panel background            */
  --panel-2:     #0C447C;            /* raised / hover panel               */
  --line:        rgba(255,255,255,0.10);
  --line-soft:   rgba(255,255,255,0.06);
  --heading:     #FFFFFF;
  --text:        rgba(226,236,247,0.78);
  --text-dim:    rgba(226,236,247,0.55);

  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 24px 60px rgba(0,0,0,0.45);
  --maxw:        1160px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

/* ---------- Premium scrollbar ---------- */
html { scrollbar-width: thin; scrollbar-color: var(--blue) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--blue));
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent), var(--teal));
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: var(--ink); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- Text selection ---------- */
::selection { background: var(--accent); color: #fff; text-shadow: none; }
::-moz-selection { background: var(--accent); color: #fff; text-shadow: none; }

/* ---------- Top loading / scroll-progress bar ---------- */
.page-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 100%;
  z-index: 10001;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  box-shadow: 0 0 10px rgba(55,138,221,0.6);
  border-radius: 0 2px 2px 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
  will-change: transform;
}
.page-progress.is-loaded { transition: transform .25s ease; }
.page-progress.is-scroll { transition: none; box-shadow: 0 0 8px rgba(55,138,221,0.5); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 9000;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  padding: 0; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: #fff; cursor: pointer;
  background: linear-gradient(145deg, var(--accent), var(--blue));
  box-shadow: 0 10px 26px rgba(12,68,124,0.45), 0 0 0 0 rgba(55,138,221,0.5);
  opacity: 0; visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, background .25s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover {
  background: linear-gradient(145deg, var(--accent), var(--teal));
  box-shadow: 0 14px 32px rgba(12,68,124,0.55), 0 0 0 6px rgba(55,138,221,0.12);
  transform: translateY(-3px) scale(1.05);
}
.back-to-top:active { transform: translateY(-1px) scale(0.98); }
.back-to-top:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.back-to-top svg { display: block; }
@media (max-width: 600px) {
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .2s ease, visibility .2s ease; transform: none; }
  .back-to-top.is-visible { transform: none; }
  .back-to-top:hover { transform: none; }
}

/* ---------- Preloader (shown only when JS is present) ---------- */
.preloader { display: none; }
html.js .preloader {
  position: fixed; inset: 0;
  z-index: 10000;
  display: grid; place-items: center;
  background: var(--ink);
  transition: opacity .45s ease, visibility .45s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-inner { position: relative; width: 74px; height: 74px; display: grid; place-items: center; }
.preloader-mark {
  width: 48px; height: 48px;
  border-radius: 13px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(55,138,221,0.4);
}
.preloader-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.10);
  border-top-color: var(--accent);
  border-right-color: var(--teal);
  animation: pre-spin .8s linear infinite;
}
@keyframes pre-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .preloader-ring { animation: none; } }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--heading); line-height: 1.12; margin: 0 0 .5em; }
h1 { font-weight: 900; letter-spacing: -0.02em; }
h2 { font-weight: 800; letter-spacing: -0.01em; }
h3 { font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--white); }

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

.accent { color: var(--accent); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-success { background: var(--teal); color: var(--white); box-shadow: 0 10px 24px rgba(29,158,117,0.28); }
.btn-success:hover { background: #17926b; color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--accent); color: var(--white); background: rgba(55,138,221,0.12); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4,32,59,0.96);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font-weight: 700; font-size: 1.18rem; }
.brand:hover { color: var(--white); }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(24,95,165,0.4);
}
.brand-llc { color: var(--accent); font-weight: 600; }
.brand-light .brand-llc { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: var(--text); font-weight: 500; font-size: 0.94rem; }
.site-nav a:hover { color: var(--white); }
.site-nav .nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(29,158,117,0.28);
}
.site-nav .nav-cta:hover { background: #17926b; color: var(--white); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  padding: 0;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle-bar {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .2s ease;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(55,138,221,0.22), transparent 60%),
    radial-gradient(760px 420px at 8% 12%, rgba(12,68,124,0.45), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 1px solid var(--line-soft);
}
.hero-glow {
  position: absolute;
  top: -160px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(29,158,117,0.16), transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; padding: 88px 0 64px; }
.hero-content { max-width: 640px; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); margin-bottom: 22px; }
.hero-sub { font-size: 1.12rem; max-width: 620px; margin-bottom: 32px; color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-trust {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 24px;
  max-width: 560px;
}
.hero-trust li { position: relative; padding-left: 17px; display: flex; flex-direction: column; gap: 3px; align-self: start; }
.hero-trust li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px rgba(29,158,117,0.65); }
.hero-trust strong { color: var(--white); font-size: 0.98rem; font-weight: 700; line-height: 1.25; }
.hero-trust span { color: var(--text-dim); font-size: 0.82rem; line-height: 1.35; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(0,0,0,0.12), transparent);
  padding: 26px 0 30px;
}
.marquee-label {
  text-align: center;
  margin: 0 0 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.marquee-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  margin-right: 14px;
  padding: 12px 22px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.m-item img { width: 24px; height: 24px; flex-shrink: 0; object-fit: contain; background: #fff; border-radius: 6px; padding: 4px; box-sizing: content-box; }
.m-item:hover { color: var(--white); border-color: rgba(55,138,221,0.45); background: rgba(55,138,221,0.07); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--ink-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-sub { color: var(--text); font-size: 1.04rem; margin: 0; }

/* ---------- Vendor cards ---------- */
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vendor-card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), rgba(10,49,87,0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.vendor-card:hover { transform: translateY(-6px) scale(1.012); border-color: rgba(55,138,221,0.55); box-shadow: var(--shadow); }
.vendor-logo {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: #fff;
  padding: 11px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.vendor-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.vendor-name { font-size: 1.22rem; font-weight: 700; margin-bottom: 10px; }
.vendor-name span { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-dim); margin-top: 3px; }
.vendor-card p { color: var(--text); font-size: 0.95rem; margin-bottom: 18px; }
.vendor-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(55,138,221,0.12);
  color: var(--accent);
}
.vendor-status.is-live { background: rgba(29,158,117,0.16); color: #4fd6a6; }
.vendor-card--soon .vendor-logo { background: #fff; }
.vendor-logo img { transition: transform .25s ease; }
.vendor-card:hover .vendor-logo img { transform: scale(1.06); }

/* ---------- Service cards ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-6px) scale(1.012); border-color: rgba(55,138,221,0.5); box-shadow: var(--shadow); }
.service-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(55,138,221,0.22), rgba(29,158,117,0.12));
  border: 1px solid rgba(55,138,221,0.30);
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform .18s ease, color .18s ease, box-shadow .18s ease;
}
.service-icon svg { display: block; width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon { transform: translateY(-2px); color: #6fb1ee; box-shadow: 0 10px 24px rgba(55,138,221,0.28); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card > p { color: var(--text); font-size: 0.95rem; margin-bottom: 16px; }
.service-card ul { list-style: none; margin: 0; padding: 0; }
.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 7px;
}
.service-card li::before { content: "›"; position: absolute; left: 4px; color: var(--accent); font-weight: 700; }

/* ---------- Who We Serve ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-card {
  background: linear-gradient(180deg, var(--panel), rgba(10,49,87,0.55));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .18s ease, border-color .18s ease;
}
.audience-card:hover { transform: translateY(-6px) scale(1.012); border-color: rgba(55,138,221,0.5); box-shadow: var(--shadow); }
.audience-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(140deg, rgba(55,138,221,0.22), rgba(29,158,117,0.16));
  border: 1px solid rgba(55,138,221,0.30);
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform .18s ease, color .18s ease, box-shadow .18s ease;
}
.audience-icon svg { display: block; width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.audience-card:hover .audience-icon { transform: translateY(-2px); color: #6fb1ee; box-shadow: 0 10px 24px rgba(55,138,221,0.28); }
.audience-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.audience-card p { color: var(--text); font-size: 0.95rem; margin: 0; }

/* ---------- How It Works (steps) ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.step-card:hover { transform: translateY(-6px) scale(1.012); border-color: rgba(55,138,221,0.5); box-shadow: var(--shadow); }
.step-num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: var(--white);
  font-weight: 800; font-size: 1.15rem;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.08rem; margin-bottom: 9px; }
.step-card p { color: var(--text); font-size: 0.92rem; margin: 0; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- Why Softrium ---------- */
.why-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.why-copy .section-sub { margin-bottom: 28px; }
.why-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); text-align: left; }
.why-copy .eyebrow, .why-copy h2 { text-align: left; }
.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.why-list li:first-child { border-top: none; }
.why-list li { border-radius: 12px; padding: 16px 14px; transition: background .18s ease; }
.why-list li:hover { background: rgba(55,138,221,0.06); }
.why-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(29,158,117,0.30), rgba(29,158,117,0.14));
  border: 1px solid rgba(29,158,117,0.4);
  color: #5fe0b3;
  font-weight: 800;
  font-size: 0.85rem;
}
.why-list strong { display: block; color: var(--white); font-size: 1.02rem; margin-bottom: 3px; }
.why-list p { margin: 0; color: var(--text); font-size: 0.92rem; }

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.stat-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  opacity: 0; transition: opacity .2s ease;
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(55,138,221,0.5); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.stat-card:hover::before { opacity: 1; }
.stat-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--accent), var(--blue) 65%, var(--teal));
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 10px 24px rgba(24,95,165,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .18s ease, box-shadow .18s ease;
}
.stat-icon svg { display: block; width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stat-card:hover .stat-icon { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 30px rgba(24,95,165,0.55), inset 0 1px 0 rgba(255,255,255,0.3); }
.stat-card strong {
  display: block; font-size: 2.1rem; font-weight: 800; line-height: 1.05;
  background: linear-gradient(120deg, #fff 30%, var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--white);
}
.stat-card strong + span { display: block; font-size: 0.84rem; color: var(--text-dim); margin-top: 8px; }

/* ---------- Contact ---------- */
.section-contact {
  padding: 92px 0;
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(55,138,221,0.16), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line-soft);
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-copy { background: linear-gradient(160deg, var(--navy), var(--text-dark)); padding: 50px 44px; }
.contact-copy h2 { font-size: 1.7rem; text-align: left; }
.contact-sub { color: var(--text); margin-bottom: 2rem; }
.contact-details { list-style: none; margin: 0; padding: 0; }
.contact-details li { display: flex; flex-direction: column; gap: 3px; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.contact-details li:first-child { border-top: none; }
.contact-details span { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; color: var(--text-dim); }
.contact-details a { color: var(--white); font-weight: 500; }
.contact-details a:hover { color: var(--accent); }

.contact-form { padding: 50px 44px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.84rem; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(55,138,221,0.2);
}
.field textarea { resize: vertical; }

/* honeypot — visually hidden, off-screen */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.form-status { margin: 14px 0 0; font-size: 0.9rem; font-weight: 500; min-height: 1.2em; }
.form-status.is-success { color: #4fd6a6; }
.form-status.is-error { color: #ff8b7a; }

/* ---------- Footer ---------- */
.site-footer { background: var(--text-dark); border-top: 1px solid var(--line-soft); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 0 44px;
}
.footer-brand { max-width: 360px; }
.footer-brand p { margin: 18px 0 0; color: var(--text-dim); font-size: 0.92rem; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line-soft); }
.footer-bottom p { margin: 0; padding: 22px 0; text-align: center; color: var(--text-dim); font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .vendor-grid, .service-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 18px 18px;
    background: rgba(4,32,59,0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 44px rgba(0,0,0,0.5);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.16,1,.3,1), opacity .25s ease, visibility .25s ease;
  }
  .site-header.nav-open .site-nav {
    transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .site-nav a:not(.nav-cta) {
    display: block;
    padding: 15px 4px;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid var(--line-soft);
  }
  .site-nav .nav-cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px 20px;
  }
  .hero-inner { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .vendor-grid, .service-grid, .audience-grid, .why-stats { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .contact-copy, .contact-form { padding: 34px 24px; }
  .footer-inner { gap: 36px; }
  .footer-brand { max-width: none; }
  .footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 22px; width: 100%; }
  /* keep last copyright line clear of the floating action buttons */
  .footer-bottom p { padding-bottom: 84px; }
}

@media (max-width: 400px) {
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ===========================================================================
   Premium polish — motion, depth, refined detailing
   =========================================================================== */

/* ---------- Scroll reveal ---------- */
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(26px) scale(.985); will-change: opacity, transform; }
.js .reveal { transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.js .reveal.is-visible { opacity: 1; transform: none; will-change: auto; }
/* cards lift a touch further for a more dimensional entrance */
.js .vendor-card.reveal:not(.is-visible),
.js .service-card.reveal:not(.is-visible),
.js .audience-card.reveal:not(.is-visible),
.js .step-card.reveal:not(.is-visible),
.js .stat-card.reveal:not(.is-visible) { transform: translateY(34px) scale(.96); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* staggered hero entrance */
.hero-content > *:nth-child(1) { transition-delay: .06s; }
.hero-content > *:nth-child(2) { transition-delay: .16s; }
.hero-content > *:nth-child(3) { transition-delay: .26s; }
.hero-content > *:nth-child(4) { transition-delay: .36s; }
.hero-content > *:nth-child(5) { transition-delay: .46s; }
.hero-visual.reveal { transition-delay: .3s; }

/* ---------- Hero two-column layout ---------- */
.hero-inner {
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }

/* ---------- Hero visual (license quote card) ---------- */
.hero-visual { position: relative; justify-self: end; width: 100%; max-width: 440px; }
.hv-card {
  position: relative;
  background: linear-gradient(165deg, rgba(15,74,131,0.96), rgba(9,42,75,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 24px 24px 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  will-change: transform;
  animation: hvfloat 7s ease-in-out infinite alternate;
}
@keyframes hvfloat { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .hv-card { animation: none; } }
.hv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hv-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent);
}
.hv-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: dotpulse 2s infinite; }
.hv-stamp {
  font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: #4fd6a6;
  border: 1px solid rgba(29,158,117,0.5);
  border-radius: 999px; padding: 4px 11px;
}
.hv-title { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-bottom: 16px; }
.hv-list { list-style: none; margin: 0 0 18px; padding: 0; }
.hv-list li {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.hv-list li:first-child { border-top: none; }
.hv-logo {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: #fff;
  padding: 7px;
}
.hv-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hv-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.hv-meta strong { color: var(--white); font-size: 0.92rem; font-weight: 600; line-height: 1.2; }
.hv-meta em { color: var(--text-dim); font-style: normal; font-size: 0.76rem; }
.hv-ok {
  flex-shrink: 0;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
  color: #4fd6a6;
  background: rgba(29,158,117,0.16);
  border-radius: 999px; padding: 5px 11px;
}
.hv-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.hv-foot span { color: var(--text-dim); font-size: 0.82rem; }
.hv-foot strong { color: var(--white); font-size: 0.92rem; font-weight: 700; }
.hv-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(8,40,72,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 0.78rem; font-weight: 600; color: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  will-change: transform;
}
.hv-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.hv-chip-1 { top: -20px; left: -30px; animation: hvchip 6s ease-in-out infinite alternate; }
.hv-chip-2 { top: 82px; right: -34px; animation: hvchip 7.5s ease-in-out infinite alternate-reverse; }
@keyframes hvchip { from { transform: translateY(0); } to { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .hv-chip-1, .hv-chip-2 { animation: none; } }

/* Pause continuous animations when their section scrolls off-screen */
.hero.anim-off .hero-aurora,
.hero.anim-off .hv-card,
.hero.anim-off .hv-chip,
.hero.anim-off .hv-dot,
.marquee.anim-off .marquee-track { animation-play-state: paused; }

/* ---------- Hero background: aurora + grid ---------- */
.hero-aurora {
  position: absolute;
  inset: -25% -10% auto -10%;
  height: 150%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(38% 48% at 22% 22%, rgba(55,138,221,0.30), transparent 60%),
    radial-gradient(34% 44% at 80% 12%, rgba(29,158,117,0.22), transparent 60%),
    radial-gradient(46% 56% at 62% 72%, rgba(24,95,165,0.32), transparent 62%);
  filter: blur(42px);
  opacity: 0.9;
  will-change: transform;
  animation: aurora 22s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-2%, -1%, 0); }
  50%  { transform: translate3d(3%, 2.5%, 0); }
  100% { transform: translate3d(-1%, 1%, 0); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 82% 72% at 50% 30%, #000 38%, transparent 80%);
          mask-image: radial-gradient(ellipse 82% 72% at 50% 30%, #000 38%, transparent 80%);
}
@media (prefers-reduced-motion: reduce) { .hero-aurora { animation: none; } }

/* ---------- Eyebrow pill with pulsing dot ---------- */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 13px;
  border: 1px solid rgba(55,138,221,0.35);
  background: rgba(55,138,221,0.08);
  border-radius: 999px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: dotpulse 2s infinite;
}
@keyframes dotpulse {
  0%   { box-shadow: 0 0 0 0 rgba(29,158,117,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(29,158,117,0); }
  100% { box-shadow: 0 0 0 0 rgba(29,158,117,0); }
}
@media (prefers-reduced-motion: reduce) { .eyebrow-dot { animation: none; } }

/* ---------- Headline outline word ---------- */
.hero h1 .outline {
  -webkit-text-stroke: 1.6px var(--accent);
          text-stroke: 1.6px var(--accent);
  color: transparent;
}

/* ---------- Buttons: gradient + glow ---------- */
.btn { letter-spacing: 0.01em; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s ease; }
.btn-success {
  background: linear-gradient(135deg, #22b489, #16855f);
  box-shadow: 0 10px 30px rgba(29,158,117,0.35);
}
.btn-success:hover {
  background: linear-gradient(135deg, #28c194, #14805b);
  box-shadow: 0 16px 40px rgba(29,158,117,0.5);
  transform: translateY(-3px);
}
.btn-success:hover svg { transform: translateX(3px); }

/* ---------- Scroll indicator ---------- */
.hero-scroll {
  position: absolute;
  right: 40px; bottom: 110px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--text-dim);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.hero-scroll:hover { color: var(--white); }
.hero-scroll-line { position: relative; width: 1px; height: 42px; background: rgba(255,255,255,0.14); overflow: hidden; }
.hero-scroll-line::after {
  content: "";
  position: absolute; top: -42px; left: 0;
  width: 1px; height: 42px;
  background: linear-gradient(transparent, var(--accent));
  animation: scrolldrop 2s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes scrolldrop { 0% { transform: translateY(0); } 100% { transform: translateY(84px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll-line::after { animation: none; } }
@media (max-width: 760px) { .hero-scroll { display: none; } }

/* ---------- Sticky nav scrolled state + link underline ---------- */
.site-header { transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: rgba(4,32,59,0.96); box-shadow: 0 10px 34px rgba(0,0,0,0.38); }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* ---------- Vendor cards: logo glyphs, hover line + glow ---------- */
.vendor-card { overflow: hidden; }
.vendor-card > * { position: relative; z-index: 1; }
.vendor-card .vendor-logo img { width: 34px; height: 34px; }
.vendor-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(55,138,221,0.12), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
.vendor-card:hover::before { opacity: 1; }
.vendor-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 2;
}
.vendor-card:hover::after { opacity: 1; }

/* ---------- Service cards: hover underline ---------- */
.service-card { position: relative; overflow: hidden; }
.service-card::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover::after { opacity: 1; }

/* ---------- Stat cards: top accent + count-up legibility ---------- */
.stat-card { position: relative; overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.stat-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.stat-card:hover { transform: translateY(-5px) scale(1.012); border-color: rgba(55,138,221,0.45); }
.stat-card:hover::after { opacity: 1; }

/* ---------- Regions served (Who We Serve) ---------- */
.regions {
  list-style: none;
  margin: 0 auto 44px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
}
.regions li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 8px 18px 8px 9px;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, background .2s ease;
}
.region-flag {
  width: 24px; height: 18px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 2px 5px rgba(0,0,0,0.35);
}
.regions li:hover { border-color: rgba(55,138,221,0.5); color: var(--white); transform: translateY(-2px); background: rgba(55,138,221,0.06); }
.regions .regions-more {
  color: var(--accent);
  border-color: rgba(55,138,221,0.35);
  background: rgba(55,138,221,0.08);
  padding: 8px 18px;
}
.regions .regions-more svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- Premium responsive overrides (must follow premium base) ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-content { max-width: 760px; justify-self: center; text-align: center; }
  .hero-content .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { margin-left: auto; margin-right: auto; }
  .hero-trust li { text-align: left; }
}
@media (max-width: 540px) {
  .hero-trust { grid-template-columns: 1fr; max-width: 300px; gap: 16px; }
}

/* ===========================================================================
   Premium micro-interactions
   =========================================================================== */

/* ---------- Global focus rings ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
main:focus { outline: none; }

/* ---------- Active-section nav ---------- */
.site-nav a { position: relative; }
.site-nav a.is-active:not(.nav-cta) { color: #fff; }
.site-nav a.is-active:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.site-nav a.nav-cta.is-active { box-shadow: 0 0 0 2px rgba(55,138,221,0.4); }

/* ---------- Animated logo on hover ---------- */
.brand .brand-mark { transition: transform .45s cubic-bezier(.16,1,.3,1); will-change: transform; }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.08); }
@media (prefers-reduced-motion: reduce) { .brand:hover .brand-mark { transform: none; } }

/* ---------- Card spotlight (mouse-follow glow) ---------- */
.service-card, .audience-card, .stat-card, .vendor-card, .step-card { position: relative; }
.service-card::after, .audience-card::after, .stat-card::after,
.vendor-card::after, .step-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .3s ease;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(55,138,221,0.18), transparent 60%);
  z-index: 0;
}
.service-card:hover::after, .audience-card:hover::after, .stat-card:hover::after,
.vendor-card:hover::after, .step-card:hover::after { opacity: 1; }
.service-card > *, .audience-card > *, .stat-card > *,
.vendor-card > *, .step-card > * { position: relative; z-index: 1; }
@media (hover: none) {
  .service-card::after, .audience-card::after, .stat-card::after,
  .vendor-card::after, .step-card::after { display: none; }
}

/* ---------- Copy-to-clipboard buttons ---------- */
.contact-details li { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.copy-btn {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; padding: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 7px; cursor: pointer;
  background: rgba(255,255,255,0.04);
  color: var(--accent);
  transition: background .2s ease, color .2s ease, transform .15s ease, border-color .2s ease;
}
.copy-btn:hover { background: rgba(55,138,221,0.15); border-color: var(--accent); transform: translateY(-1px); }
.copy-btn.is-copied { color: var(--teal); border-color: var(--teal); background: rgba(29,158,117,0.15); }
.copy-btn svg { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px;
  transform: translate(-50%, 20px);
  z-index: 100001;
  display: flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1), visibility .3s ease;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast .toast-ico { display: grid; place-items: center; color: #7CEFC4; }
.toast .toast-ico svg { display: block; }

/* ---------- Floating "Get a Quote" pill ---------- */
.quote-pill {
  position: fixed; left: 22px; bottom: 22px;
  z-index: 9000;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #15805e);
  color: #fff; font-weight: 700; font-size: 0.92rem;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 12px 30px rgba(29,158,117,0.4);
  opacity: 0; visibility: hidden;
  transform: translateY(14px) scale(0.94);
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1), box-shadow .25s ease;
}
.quote-pill.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.quote-pill:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 36px rgba(29,158,117,0.5); }
.quote-pill svg { display: block; }
@media (max-width: 600px) {
  .quote-pill { left: 16px; bottom: 16px; padding: 11px 15px; font-size: 0.85rem; }
  .quote-pill span { display: none; }
  .quote-pill { padding: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .quote-pill, .toast { transition: opacity .2s ease, visibility .2s ease; transform: translateY(0); }
  .quote-pill.is-visible { transform: none; }
  .toast { left: 50%; transform: translate(-50%, 0); }
  .quote-pill:hover { transform: none; }
}

/* ---------- Form submit micro-interaction ---------- */
#contactSubmit { position: relative; transition: background .3s ease, transform .15s ease; }
#contactSubmit .btn-spinner {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.4); border-top-color: #fff;
  display: inline-block; vertical-align: -3px; margin-right: 8px;
  animation: btnspin .7s linear infinite;
}
#contactSubmit.is-sent { background: var(--teal); }
#contactSubmit .btn-check { vertical-align: -4px; margin-right: 6px; }
@keyframes btnspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { #contactSubmit .btn-spinner { animation-duration: 1.4s; } }

/* ---------- Custom cursor ring (fine-pointer desktops only) ---------- */
.cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor-ring {
    display: block; position: fixed; top: 0; left: 0;
    width: 26px; height: 26px; margin: -13px 0 0 -13px;
    border: 1.5px solid rgba(55,138,221,0.55);
    border-radius: 50%;
    z-index: 99999; pointer-events: none;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0) scale(0.6);
    transition: opacity .25s ease, width .2s ease, height .2s ease,
                margin .2s ease, background-color .2s ease, border-color .2s ease;
    will-change: transform;
  }
  .cursor-ring.is-active { opacity: 1; }
  .cursor-ring.is-hover {
    width: 44px; height: 44px; margin: -22px 0 0 -22px;
    background: rgba(55,138,221,0.12);
    border-color: var(--teal);
  }
}
@media (prefers-reduced-motion: reduce) { .cursor-ring { display: none !important; } }

/* ---------- Download company profile ---------- */
.profile-dl {
  display: flex; width: max-content; max-width: 100%;
  align-items: center; gap: 12px;
  margin: 22px auto 0; padding: 12px 18px 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(55,138,221,0.16), rgba(29,158,117,0.12));
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff; text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease, background .25s ease;
}
.profile-dl:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(12,68,124,0.4);
  background: linear-gradient(135deg, rgba(55,138,221,0.24), rgba(29,158,117,0.18));
}
.profile-dl-ico {
  flex: none; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(145deg, var(--accent), var(--blue));
  color: #fff;
}
.profile-dl-ico svg { display: block; }
.profile-dl-txt { display: flex; flex-direction: column; line-height: 1.25; }
.profile-dl-txt strong { font-size: 0.98rem; font-weight: 700; }
.profile-dl-txt em { font-style: normal; font-size: 0.8rem; color: var(--muted, #9fb6cf); }
@media (prefers-reduced-motion: reduce) { .profile-dl:hover { transform: none; } }
