/* =========================================================
   SHIPLEAD — 2026 Premium Redesign
   Overrides the old template. Loaded last so it wins.
   Display: Space Grotesk · Body: Inter · Brand: orange
   ========================================================= */

:root {
  --brand: #ff6a00;
  --brand-2: #ff9a3c;
  --brand-dark: #e55402;
  --brand-glow: rgba(255, 106, 0, 0.45);

  --ink: #0b0f17;
  --ink-2: #1a2230;
  --muted: #5d6b7e;
  --line: #eceef3;

  --bg: #ffffff;
  --bg-soft: #fff7f0;
  --bg-mesh: #fffaf5;

  --radius: 24px;
  --radius-sm: 16px;
  --shadow-sm: 0 6px 20px rgba(11, 15, 23, 0.06);
  --shadow-md: 0 24px 60px rgba(11, 15, 23, 0.12);
  --shadow-glow: 0 18px 50px var(--brand-glow);

  --grad: linear-gradient(135deg, #ff6a00 0%, #ff9a3c 100%);
  --grad-soft: linear-gradient(135deg, #fff1e6 0%, #ffe6cf 100%);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif !important;
  color: var(--ink) !important;
  background: var(--bg) !important;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5,
.section-title, .text-logo {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif !important;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-weight: 700;
}
p { color: var(--muted); }
::selection { background: var(--brand); color: #fff; }
.loader .spinner-border { color: var(--brand) !important; }

/* eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--bg-soft);
  border: 1px solid #ffdcc2;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.eyebrow-light {
  color: #ffd9bd;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn.btn-primary,
input.btn-primary {
  background: var(--grad) !important;
  border: 0 !important;
  color: #fff !important;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600 !important;
  font-size: 16px;
  padding: 15px 34px !important;
  border-radius: 50px !important;
  box-shadow: var(--shadow-glow);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease !important;
}
.btn-primary:hover,
input.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 60px var(--brand-glow) !important;
  color: #fff !important;
}

/* ---------- Navbar (floating pill) ---------- */
.site-navbar {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 16px 0 !important;
  transition: padding .3s ease;
}
/* the visible bar is the inner container -> floating pill */
.site-navbar .container {
  display: block;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(255, 224, 200, 0.9) !important;
  border-radius: 60px !important;
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.12), 0 6px 18px rgba(11, 15, 23, 0.06);
  padding: 8px 14px 8px 24px !important;
  max-width: 1080px !important;
  transition: box-shadow .3s ease, transform .3s ease, max-width .3s ease;
}
.site-navbar.sticky-style { padding: 12px 0 !important; }
.site-navbar.sticky-style .container {
  max-width: 1180px !important;
  box-shadow: 0 18px 46px rgba(255, 106, 0, 0.18), 0 8px 22px rgba(11, 15, 23, 0.10);
}

.brand-icon {
  height: 44px !important;
  width: 44px !important;
  border-radius: 13px !important;
  box-shadow: var(--shadow-glow);
  transition: transform .3s ease;
}
.brand-link:hover .brand-icon { transform: rotate(-6deg) scale(1.05); }
.brand-text {
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 700 !important;
  font-size: 25px !important;
  color: var(--ink) !important;
  letter-spacing: -0.04em;
}

/* nav links with animated underline */
.site-menu li a,
.site-navigation .site-menu a {
  position: relative;
  color: var(--ink-2) !important;
  font-family: "Inter", sans-serif;
  font-weight: 600 !important;
  font-size: 15px;
  padding: 8px 16px !important;
  border-radius: 50px;
}
.site-menu li a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.site-menu li a:not(.nav-cta):hover,
.site-menu li.active a:not(.nav-cta) { color: var(--brand) !important; }
.site-menu li a:not(.nav-cta):hover::after,
.site-menu li.active a:not(.nav-cta)::after { transform: scaleX(1); }

/* CTA button with arrow */
.nav-cta,
.site-menu li a.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  box-shadow: var(--shadow-glow);
  padding: 11px 22px !important;
  margin-left: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav-cta::after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform .25s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  color: #fff !important;
  background: var(--grad) !important;
  box-shadow: 0 18px 40px var(--brand-glow);
}
.nav-cta:hover::after { transform: translateX(4px); }

/* ---------- Hero ---------- */
.site-blocks-cover {
  position: relative;
  padding: 150px 0 100px !important;
  background:
    radial-gradient(circle, rgba(255,106,0,.08) 1.1px, transparent 1.2px) 0 0 / 26px 26px,
    radial-gradient(60% 50% at 80% 0%, #ffe9d6 0%, rgba(255,255,255,0) 70%),
    radial-gradient(50% 40% at 0% 100%, #fff1e6 0%, rgba(255,255,255,0) 70%),
    var(--bg-mesh) !important;
  overflow: hidden;
}
/* animated glowing blobs */
.site-blocks-cover::before,
.site-blocks-cover::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}
.site-blocks-cover::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #ff9a3c 0%, #ff6a00 60%, rgba(255,106,0,0) 75%);
  top: -120px; right: -80px;
  animation: floatY 9s ease-in-out infinite;
}
.site-blocks-cover::after {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #ffd1a8 0%, rgba(255,209,168,0) 70%);
  bottom: -120px; left: -60px;
  animation: floatY 11s ease-in-out infinite reverse;
}
@keyframes floatY {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(34px) translateX(-18px); }
}
.site-blocks-cover .container { position: relative; z-index: 2; }
.site-blocks-cover .row { align-items: center !important; }

.hero-content { padding-right: 34px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand-dark);
  border: 1px solid #ffdcc2;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.text-logo {
  padding-top: 0 !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(40px, 5.2vw, 68px) !important;
  line-height: 1.04 !important;
  color: var(--ink) !important;
  margin-bottom: 22px !important;
}
.text-logo .logo {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand) !important;
}
.hero-content p {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 22px;
}

/* country chips */
.image-home ul {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 !important;
  margin: 20px 0 28px !important;
}
.image-home li {
  margin: 0 !important;
  text-indent: 0 !important;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 50px;
  padding: 8px 16px 8px 12px !important;
  font-weight: 600 !important;
  font-size: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.image-home li:hover {
  transform: translateY(-3px);
  border-color: var(--brand-2);
  box-shadow: var(--shadow-glow);
}
.image-home .favicon {
  width: 22px !important;
  height: 15px !important;
  border-radius: 3px;
  margin: 0 8px 0 0 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
  background-size: cover !important;
}
.image-home h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-top: 6px;
}

/* hero image card */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: var(--grad);
  filter: blur(56px);
  opacity: .26;
  border-radius: 40px;
  z-index: 0;
}
.hero-image-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #ffffff 0%, #fff7f0 100%);
  border: 1px solid #ffe2cc;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-image-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,154,60,.4) 0%, rgba(255,154,60,0) 70%);
  pointer-events: none;
}
.hero-image-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}
.hero-image-badge {
  position: absolute;
  z-index: 2;
  left: 22px; bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hib-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #18c964;
  box-shadow: 0 0 0 4px rgba(24,201,100,.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: .7; }
}

/* ---------- Stats strip ---------- */
.stats-strip { padding: 0 0 10px; margin-top: -30px; position: relative; z-index: 3; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px; top: 50%;
  transform: translateY(-50%);
  height: 44px; width: 1px;
  background: var(--line);
}
.stat-num {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ---------- Section titles ---------- */
.section-title {
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 700 !important;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px; height: 4px;
  border-radius: 4px;
  background: var(--grad);
  margin: 16px auto 0;
}
#features-section > .container > .row p,
.site-section .col-11 > p { font-size: 17px; color: var(--muted); }

/* ---------- Feature cards (numbered process / bento) ---------- */
#features-section { padding-top: 70px; }
#features-section .row.align-items-stretch { counter-reset: feat; }
.unit-4 {
  counter-increment: feat;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px !important;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
/* big watermark step number */
.unit-4::after {
  content: "0" counter(feat);
  position: absolute;
  top: 12px; right: 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: var(--ink);
  opacity: .05;
  pointer-events: none;
  transition: opacity .35s ease;
}
.unit-4:hover::after {
  opacity: 1;
  color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* top accent bar */
.unit-4::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 2;
}
/* keep card white + content left-aligned (override old template) */
.unit-4 { text-align: left !important; }
.unit-4:hover {
  background: #fff !important;
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: #ffdcc2;
  top: 0 !important;
}
.unit-4:hover::before { transform: scaleX(1); }

/* icon back INSIDE the card (template floated it above & it got clipped) */
.unit-4 .unit-4-icon {
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  margin: 0 0 22px 0 !important;
  z-index: 1;
}
.unit-4 .unit-4-icon .icon-wrap {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 70px !important;
  height: 70px !important;
  border-radius: 18px !important;
  background: var(--bg-soft) !important;
  border: 1px solid #ffdcc2;
  box-shadow: none !important;
  color: var(--brand) !important;
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
/* center the inner icon glyph/svg within the wrap */
.unit-4 .unit-4-icon .icon-wrap span {
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.unit-4 .unit-4-icon .icon-wrap svg {
  color: var(--brand) !important;
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 32px; height: 32px;
  transition: color .35s ease;
}
.unit-4:hover .unit-4-icon .icon-wrap {
  background: var(--grad) !important;
  border-color: transparent;
  box-shadow: var(--shadow-glow) !important;
  transform: rotate(-6deg) scale(1.06);
}
.unit-4:hover .unit-4-icon .icon-wrap span { color: #fff !important; }
.unit-4:hover .unit-4-icon .icon-wrap svg { color: #fff !important; }

.unit-4 h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.unit-4:hover h3 { color: var(--ink) !important; }
.unit-4 p { font-size: 15px; margin-bottom: 0; position: relative; z-index: 1; }
.unit-4:hover p { color: var(--muted) !important; }

/* ---------- Big sections (numbered cards) ---------- */
.feature-big {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
  counter-reset: fb;
}
.feature-big .container { position: relative; }

/* each alternating row becomes a card */
.feature-big .row.site-section {
  counter-increment: fb;
  position: relative;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 26px;
  margin-top: 0 !important;
  margin-bottom: 36px !important;
  overflow: hidden;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
}
.feature-big .row.site-section:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: #ffdcc2;
}
/* thin gradient edge on the left */
.feature-big .row.site-section::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .35s ease;
}
.feature-big .row.site-section:hover::before { opacity: 1; }

/* kill leftover bootstrap margins inside the card */
.feature-big .row.site-section > [class*="col-"] { margin-top: 0 !important; }

/* image panel */
.feature-big .cont-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-big .cont-img img {
  border-radius: 20px;
  background: var(--grad-soft);
  padding: 32px;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  transition: transform .4s ease;
}
.feature-big .row.site-section:hover .cont-img img { transform: scale(1.02); }

/* text column */
.feature-big .row.site-section > [class*="col-"]:not(.cont-img) {
  padding: 22px 30px;
}
.feature-big h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.feature-big h2::before {
  content: counter(fb, decimal-leading-zero);
  flex: 0 0 52px;
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.feature-big p { font-size: 16px; line-height: 1.85; margin-bottom: 0; }

/* ---------- About ---------- */
.bg-light { background: linear-gradient(180deg, #fff7f0 0%, #fffaf5 100%) !important; }
.contact-cont .cont-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 22px;
}
.cont-matg h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--ink);
}
.cont-matg hr {
  width: 64px; border: 0; height: 4px;
  border-radius: 4px;
  background: var(--grad);
  margin: 16px 0 22px;
  opacity: 1;
}
.cont-matg p { font-size: 16px; line-height: 1.9; }

/* ---------- Contact / Subscribe (split, dark premium) ---------- */
.bg-image2.overlay {
  position: relative;
  padding: 110px 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
}
.bg-image2.overlay::before {
  background: linear-gradient(125deg, rgba(8,11,18,.96) 0%, rgba(11,15,23,.9) 40%, rgba(229,84,2,.78) 100%) !important;
}
.subscribe-row { position: relative; z-index: 2; }

/* left copy */
.subscribe-copy { padding-right: 40px; }
.subscribe-copy h2.titre-subs {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  color: #fff !important;
  margin: 6px 0 18px;
}
.subscribe-copy > p {
  color: #c4cdd9;
  font-size: 18px;
  max-width: 440px;
  margin-bottom: 26px;
}
.subscribe-benefits { list-style: none; padding: 0; margin: 0; }
.subscribe-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e6ebf2;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 14px;
}
.subscribe-benefits li::before {
  content: "✓";
  flex: 0 0 26px;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

/* right form card */
.subscribe-form-col { position: relative; }
.subscribe-form-col::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: var(--grad);
  filter: blur(50px);
  opacity: .25;
  border-radius: 40px;
  z-index: 0;
}
#subscribeForm {
  position: relative;
  z-index: 1;
  border-radius: var(--radius) !important;
  box-shadow: 0 40px 90px rgba(0,0,0,.4);
  padding: 44px !important;
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.5);
}
#subscribeForm h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 4px !important;
}
#subscribeForm .form-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 26px;
}
#subscribeForm label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2) !important;
  margin-bottom: 7px;
}
#subscribeForm .form-control {
  border-radius: 14px !important;
  border: 1.5px solid var(--line) !important;
  padding: 13px 16px;
  height: auto;
  font-size: 15px;
  background: #fbfbfc;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
#subscribeForm .form-control:focus {
  border-color: var(--brand) !important;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,106,0,.14) !important;
}
.iti { width: 100%; }
.iti input { border-radius: 14px !important; border: 1.5px solid var(--line) !important; }
#subscribeForm .btn-contact { margin-top: 6px; }
#validate { width: 100%; }

/* ---------- Footer (modern multi-column) ---------- */
.footer-2026 {
  background: linear-gradient(180deg, #0b0f17 0%, #070a10 100%) !important;
  color: #9aa6b6 !important;
  padding: 80px 0 0 !important;
  position: relative;
  overflow: hidden;
  text-align: left !important;
}
.footer-2026::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 300px;
  background: radial-gradient(circle, rgba(255,106,0,.20) 0%, rgba(255,106,0,0) 70%);
  pointer-events: none;
}
.footer-2026 .container { position: relative; z-index: 2; }
.footer-top { padding-bottom: 50px; }
.footer-2026 p, .footer-2026 a, .footer-2026 li { color: #9aa6b6 !important; }
.footer-2026 a { transition: color .2s ease; }
.footer-2026 a:hover { color: var(--brand-2) !important; }

/* brand col */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 44px; height: 44px;
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
}
.footer-logo span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff !important;
  letter-spacing: -.03em;
}
.footer-about p { font-size: 15px; line-height: 1.8; max-width: 340px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 16px;
  transition: all .25s ease;
}
.footer-social a:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff !important;
  transform: translateY(-3px);
}

/* link cols */
.footer-col h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff !important;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 15px; }

/* contact col */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-contact-item .fc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,106,0,.14);
  color: var(--brand-2);
  font-size: 15px;
}
.footer-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px !important;
  font-size: 15px;
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 10px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { margin: 0; font-size: 14px; }
.footer-bottom a { color: var(--brand-2) !important; font-weight: 600; }

/* ---------- Modal ---------- */
.modal-content { border-radius: var(--radius); border: 0; box-shadow: var(--shadow-md); }
.modal-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .hero-content { padding-right: 12px; }
}
@media (max-width: 991.98px) {
  .site-blocks-cover { padding: 120px 0 60px !important; }
  .hero-content { padding-right: 0; margin-bottom: 44px; text-align: center; }
  .hero-content .image-home ul { justify-content: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .site-blocks-cover h1 { font-size: 40px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; margin-top: 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .stats-strip { margin-top: 0; padding-top: 30px; }
  .nav-cta-item { display: none; }

  .site-navbar .container { padding: 8px 14px; border-radius: 22px; }
  .site-navbar { padding: 12px 0 !important; }

  .bg-image2.overlay { background-attachment: scroll; padding: 70px 0 !important; }
  .subscribe-copy { padding-right: 0; text-align: center; margin-bottom: 40px; }
  .subscribe-copy > p { margin-left: auto; margin-right: auto; }
  .subscribe-benefits { display: inline-block; text-align: left; }

  .footer-2026 { padding-top: 60px !important; text-align: center !important; }
  .footer-about { margin-bottom: 40px; }
  .footer-logo, .footer-social { justify-content: center; }
  .footer-about p { margin-left: auto; margin-right: auto; }
  .footer-col { margin-bottom: 30px; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 575.98px) {
  .site-blocks-cover { padding: 100px 0 50px !important; }
  .text-logo { font-size: 34px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 26px 16px; }
  .stat-num { font-size: 32px; }
  .stat-item::after { display: none !important; }
  #subscribeForm { padding: 28px !important; }
  .feature-big .cont-img img { padding: 22px; }
  .unit-4 { padding: 30px 26px !important; }
  .unit-4::after { font-size: 52px; }
  .feature-big .row.site-section { padding: 18px; }
  .feature-big .row.site-section > [class*="col-"]:not(.cont-img) { padding: 18px 14px 8px; }
  .feature-big .cont-img img { padding: 24px; }
  .feature-big h2::before { flex: 0 0 44px; width: 44px; height: 44px; font-size: 17px; }
}

/* ============================================================
   2026 POLISH LAYER
   ============================================================ */

/* scroll progress bar (CSS scroll-driven; degrades gracefully) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand-light));
  z-index: 10000;
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: growProgress linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes growProgress { to { transform: scaleX(1); } }

/* custom scrollbar */
* { scrollbar-width: thin; scrollbar-color: var(--brand) #fff4ec; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #fff4ec; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--brand-dark));
  border-radius: 20px;
  border: 3px solid #fff4ec;
}
::-webkit-scrollbar-thumb:hover { background: var(--brand-dark); }

/* animated gradient on the hero brand word */
.text-logo .logo {
  background: linear-gradient(90deg, #ff6a00, #ff9a3c, #ffc488, #ff9a3c, #ff6a00) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: shiftGrad 7s linear infinite;
}
@keyframes shiftGrad { to { background-position: 300% 0; } }

/* shine sweep on solid anchor buttons */
a.btn-primary { position: relative; overflow: hidden; }
a.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-22deg);
  transition: left .6s ease;
  pointer-events: none;
}
a.btn-primary:hover::after { left: 150%; }

/* gradient ring on the hero image card */
.hero-image-card {
  background:
    linear-gradient(160deg, #ffffff 0%, #fff7f0 100%) padding-box,
    linear-gradient(135deg, rgba(255,106,0,.5), rgba(255,154,60,.15)) border-box !important;
  border: 1.5px solid transparent !important;
}

/* stats card: gradient hairline border + lift */
.stats-grid {
  background:
    #fff padding-box,
    linear-gradient(135deg, rgba(255,106,0,.25), rgba(255,154,60,.06)) border-box;
  border: 1.5px solid transparent;
}

/* nicer focus-visible for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(255,106,0,.35);
  outline-offset: 2px;
  border-radius: 8px;
}

/* section reveal feel: soft fade for AOS-less browsers stays visible */
.site-section, .feature-big, .footer-2026 { will-change: auto; }

/* hero badge subtle float */
.hero-badge { animation: badgeFloat 4.5s ease-in-out infinite; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* live dot already pulses; add ring to stat numbers on hover of strip */
.stats-grid:hover .stat-num { filter: drop-shadow(0 6px 14px rgba(255,106,0,.25)); }

/* smoother card press feel */
.unit-4, .feature-big .row.site-section, .footer-social a, .image-home li {
  transition-timing-function: cubic-bezier(.2,.8,.2,1);
}

/* ============================================================
   SUBSCRIBE BUTTON LOADING + SUCCESS MODAL
   ============================================================ */

/* button spinner + loading state */
#validate { display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.btn-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: btnspin .7s linear infinite;
}
#validate.is-loading .btn-spinner { display: inline-block; }
#validate.is-loading { opacity: .85; cursor: progress; pointer-events: none; }
#validate:disabled { transform: none !important; }
@keyframes btnspin { to { transform: rotate(360deg); } }

/* success modal */
.modal-backdrop.show { opacity: .55; }
.success-modal .modal-content {
  border: 0;
  border-radius: 24px;
  padding: 14px 10px 8px;
  box-shadow: 0 40px 90px rgba(0,0,0,.35);
  overflow: hidden;
  position: relative;
}
.success-modal .modal-content::before {
  content: "";
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 180px;
  background: radial-gradient(circle, rgba(255,106,0,.18) 0%, rgba(255,106,0,0) 70%);
  pointer-events: none;
}
.success-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 26px;
  line-height: 1;
  border: 0;
  background: transparent;
  color: #98a2b3;
  opacity: 1;
  z-index: 2;
}
.success-close:hover { color: var(--ink); }
.success-modal .modal-body { padding: 28px 30px 30px; position: relative; z-index: 1; }
.success-check {
  width: 84px; height: 84px;
  margin: 6px auto 22px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  animation: pop .45s cubic-bezier(.2,1.4,.4,1) both;
}
.success-check svg {
  width: 42px; height: 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: drawCheck .5s .22s ease forwards;
}
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.success-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.success-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.success-modal .btn-primary { padding: 12px 40px !important; }
