/* Hurfi — base structure styles (full visual design later) */
:root {
  --brand: #0076F7;
  --brand-dark: #0056b8;
  --text: #111827;
  --muted: #4b5563;
  --bg: #ffffff;
  --bg-soft: #f3f7ff;
  --border: #e5e7eb;
  --max: 1100px;
  --font-sans: "Sora", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.home-hero .container {
  width: min(100% - 2rem, 1180px);
}

.container-nav {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: clamp(1rem, 3.5vw, 2.75rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  background: #070b14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(0, 118, 247, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding-block: 0.85rem;
  transition: padding 0.3s ease;
}

.site-header.is-scrolled .header-inner {
  padding-block: 0.65rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(180px, 52vw);
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: lighten;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(0, 118, 247, 0.4));
}

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-toggle:hover {
  background: rgba(0, 118, 247, 0.15);
  border-color: rgba(0, 118, 247, 0.45);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
}

.nav-toggle-lines {
  top: 50%;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(0, 118, 247, 0.2);
  border-color: var(--brand);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-backdrop,
.nav-drawer-head,
.nav-drawer-head[hidden] {
  display: none !important;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.55rem;
  align-items: center;
  list-style: none;
}

.nav > li {
  opacity: 1;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
  padding: 0.65rem 0.35rem;
  border-radius: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 44px;
  background: transparent !important;
  transition: color 0.2s ease;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible,
.nav a:not(.btn)[aria-current="page"] {
  color: #fff;
  background: transparent !important;
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus-visible::after,
.nav a:not(.btn)[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav .has-dropdown > a {
  position: relative;
  padding-right: 0.2rem;
}

.nav .has-dropdown > a.has-beep {
  padding-left: 0.85rem;
  padding-right: 0.2rem;
}

/* Beep dot — top-left corner; arrow stays beside Services text */
.nav-beep {
  position: absolute;
  top: 0.35rem;
  left: 0.05rem;
  right: auto;
  display: inline-flex;
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  pointer-events: none;
  z-index: 2;
}

.nav-beep-dot {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #ff4d4f;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.nav-beep::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 77, 79, 0.55);
  animation: nav-beep-ring 1.6s ease-out infinite;
}

.nav-caret {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.5rem;
  margin-right: 0.35rem;
  border-right: 2.5px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2.5px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.2s ease;
}

.nav .has-dropdown:hover > a .nav-caret,
.nav .has-dropdown:focus-within > a .nav-caret,
.nav .has-dropdown.is-open > a .nav-caret {
  transform: rotate(225deg) translateY(-1px);
  border-color: var(--brand);
}

.nav .has-dropdown {
  position: relative;
}

.nav .dropdown {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  min-width: 260px;
  background: #0c121c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.5rem;
  list-style: none;
  z-index: 90;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  /* easier to reach without closing */
  padding-top: 0.65rem;
}

.nav .has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.55rem;
}

.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown,
.nav .has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .dropdown a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
  background: transparent !important;
}

.nav-link-text {
  flex: 1;
  min-width: 0;
  margin-right: 0.35rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.25rem;
}

.badge-hot {
  gap: 0.28rem;
  color: #1a0a00;
  padding: 0.32rem 0.55rem 0.32rem 0.4rem;
  border-radius: 4px 12px 4px 12px;
  background:
    linear-gradient(135deg, #ffe56a 0%, #ff9f1a 42%, #ff3d2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 2px 8px rgba(255, 61, 46, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: badge-hot-glow 2s ease-in-out infinite;
  transform: rotate(-2deg);
}

.badge-hot-icon {
  display: inline-flex;
  font-size: 0.7rem;
  line-height: 1;
  animation: badge-hot-spark 1.2s ease-in-out infinite;
}

.badge-hot-text {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card-hot {
  position: relative;
  border-color: rgba(255, 122, 26, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 122, 26, 0.18);
  overflow: hidden;
}

.card-hot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffe56a, #ff9f1a, #ff3d2e);
}

.card-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.card-title-row h3 {
  margin-bottom: 0;
}

.page-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.page-title-row h1 {
  margin-bottom: 0;
}

@keyframes nav-beep-ring {
  0% {
    transform: scale(0.7);
    opacity: 0.85;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes badge-hot-glow {
  0%,
  100% {
    box-shadow:
      0 2px 8px rgba(255, 61, 46, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    filter: saturate(1);
  }
  50% {
    box-shadow:
      0 4px 16px rgba(255, 159, 26, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
    filter: saturate(1.15);
  }
}

@keyframes badge-hot-spark {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(12deg);
    opacity: 0.85;
  }
}

.nav .dropdown a::after {
  display: none;
}

.nav .dropdown a:hover,
.nav .dropdown a:focus-visible,
.nav .dropdown a[aria-current="page"] {
  background: rgba(0, 118, 247, 0.16) !important;
  color: #fff;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  padding: 0.65rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.nav a.btn {
  color: #fff !important;
  background: var(--brand) !important;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  margin-left: 0.45rem;
  min-height: 42px;
  box-shadow: 0 0 0 0 rgba(0, 118, 247, 0.45);
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.nav a.btn::after {
  display: none;
}

.nav a.btn:hover,
.nav a.btn:focus-visible {
  background: #1a86ff !important;
  box-shadow: 0 8px 24px rgba(0, 118, 247, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--brand) !important;
  border: 1px solid var(--brand);
}

.btn-outline:hover {
  background: var(--bg-soft);
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 118, 247, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 118, 247, 0);
  }
}

@media (max-width: 1100px) {
  .nav a {
    font-size: 0.84rem;
    padding: 0.5rem 0.55rem;
  }

  .nav a.btn {
    padding: 0.55rem 0.9rem;
  }

  .logo-img {
    height: 36px;
    max-width: min(150px, 48vw);
  }
}

@media (max-width: 960px) {
  .header-inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
    margin-left: auto;
  }

  .logo {
    order: 1;
  }

  .site-nav {
    order: 2;
  }

  .logo-img {
    height: 34px;
    max-width: min(150px, 55vw);
  }

  /* Overlay only dims the page — never sits on top of drawer */
  .nav-backdrop {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .nav-backdrop.is-open,
  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    z-index: 120;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 82vw);
    margin: 0;
    padding: 0;
    z-index: 130;
    display: flex;
    flex-direction: column;
    background: #070b14;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-drawer-head,
  .nav-drawer-head[hidden] {
    display: flex !important;
    align-items: center;
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    min-height: 64px;
  }

  .nav-drawer-brand {
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .nav-drawer-brand img,
  .nav-drawer-logo {
    display: block;
    height: 30px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    object-position: left center;
    mix-blend-mode: lighten;
  }

  .site-nav > .nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0.75rem 1.25rem;
    min-height: 0;
    width: 100%;
  }

  .nav > li {
    width: 100%;
  }

  .nav a {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    padding: 0.85rem 0.65rem;
    background: transparent !important;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav a:not(.btn)::after {
    display: none;
  }

  .nav a:not(.btn)[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--brand);
    padding-left: 0.65rem;
    color: #fff;
  }

  .nav a.btn {
    margin: 0.9rem 0 0;
    justify-content: center;
    text-align: center;
    animation: none;
    border-bottom: none;
    border-radius: 999px;
    width: 100%;
  }

  .nav .has-dropdown::after {
    display: none;
  }

  .nav .dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 0.25rem 0.55rem;
    min-width: 0;
  }

  .nav .has-dropdown.is-open .dropdown {
    display: block;
  }

  .nav-caret {
    margin-left: auto;
    margin-right: 0.15rem;
    width: 0.7rem;
    height: 0.7rem;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .nav .has-dropdown > a.has-beep .nav-beep {
    top: 0.85rem;
    left: 0.35rem;
    right: auto;
  }

  .nav .dropdown a {
    background: transparent !important;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
    padding: 0.85rem 0.65rem;
    gap: 0.7rem;
    flex-wrap: wrap;
    white-space: normal;
    align-items: center;
  }

  .nav .dropdown a .nav-link-text {
    flex: 1 1 auto;
    min-width: 8rem;
    line-height: 1.35;
    padding-right: 0.15rem;
  }

  .nav .dropdown a .badge,
  .nav .dropdown a .badge-hot {
    margin-left: 0.15rem;
    flex: 0 0 auto;
  }

  .nav .dropdown a:hover,
  .nav .dropdown a[aria-current="page"] {
    background: rgba(0, 118, 247, 0.12) !important;
  }
}

/* Hide drawer chrome on desktop — win over any stale/inline rules */
@media (min-width: 961px) {
  .nav-backdrop,
  .nav-drawer-head,
  .nav-drawer-head[hidden] {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav a.btn,
  .logo-img,
  .badge-hot,
  .nav-beep::before,
  .badge-hot-icon {
    animation: none !important;
  }

  .site-nav,
  .nav a,
  .nav .dropdown,
  .logo-img {
    transition: none !important;
  }
}

/* Page sections */
.page-hero,
.section {
  padding: 3rem 0;
}

.page-hero {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero h1,
.section h2 {
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

/* —— Home conversion hero —— */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 6.5vw, 5rem) 0 clamp(2.25rem, 4.5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 88% 30%, rgba(0, 118, 247, 0.2), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 85%, rgba(10, 42, 85, 0.1), transparent 52%),
    linear-gradient(165deg, #f8fbff 0%, #eaf3ff 48%, #f7fafc 100%);
  z-index: 0;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 118, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 118, 247, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
  pointer-events: none;
  animation: hero-grid-drift 28s linear infinite;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--d, 0) * 0.12s + 0.08s);
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 118, 247, 0.1);
  border: 1px solid rgba(0, 118, 247, 0.18);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 34rem;
}

.home-hero h1,
.home-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: #0b1220;
  margin-bottom: 1rem;
}

.hero-line {
  display: block;
}

.hero-line-animate {
  display: block;
}

.hero-word {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  transform: translateY(1.1em) rotateX(55deg);
  transform-origin: bottom center;
  animation: hero-word-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.18s + var(--w, 0) * 0.08s);
  will-change: transform, opacity;
}

.hero-line-animate .hero-word:last-child {
  margin-right: 0;
}

.hero-line-accent {
  margin-top: 0.25em;
}

.hero-line-accent .hero-word {
  background: linear-gradient(105deg, #0a2a55 0%, #0076f7 42%, #38bdf8 58%, #0076f7 78%, #0a2a55 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    hero-word-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    hero-shimmer 4.5s ease-in-out infinite;
  animation-delay:
    calc(0.18s + var(--w, 0) * 0.08s),
    calc(1.4s + var(--w, 0) * 0.05s);
}

@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes hero-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  max-width: 38rem;
  margin-bottom: 0.25rem;
}

.hero-cta {
  margin-top: 1.35rem;
  align-items: flex-start;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  list-style: none;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 118, 247, 0.18);
}

.hero-trust li {
  position: relative;
  padding-left: 1.15rem;
  color: #334155;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.home-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.hero-visual-frame {
  position: relative;
  width: min(100%, 540px);
  padding: 0.5rem;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 118, 247, 0.16), transparent 70%);
  animation: hero-pulse 4.5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-ecosystem-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-orbit-a {
  transform-origin: 280px 236px;
  animation: hero-spin 28s linear infinite;
}

.hero-orbit-b {
  transform-origin: 280px 236px;
  animation: hero-spin-rev 40s linear infinite;
}

.hero-links line {
  animation: hero-dash 2.8s linear infinite;
}

.hero-globe {
  transform-origin: 280px 236px;
  animation: hero-globe-breathe 5s ease-in-out infinite;
}

.hero-node {
  animation: hero-node-float 3.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.18s);
}

.hero-flow-core {
  animation: hero-core-pulse 2.4s ease-in-out infinite;
}

.hero-flow-arrow {
  stroke-dasharray: 8 8;
  animation: hero-dash 1.6s linear infinite;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}

@keyframes hero-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes hero-dash {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes hero-globe-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes hero-node-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes hero-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes hero-core-pulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.18);
  }
}

@media (max-width: 900px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 0;
    order: 0;
  }

  .hero-visual-frame {
    width: min(100%, 420px);
  }

  .hero-eyebrow,
  .home-hero h1,
  .hero-lead {
    text-align: center;
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-bg::after,
  .hero-orbit-a,
  .hero-orbit-b,
  .hero-links line,
  .hero-globe,
  .hero-node,
  .hero-flow-core,
  .hero-flow-arrow,
  .hero-visual-frame::before {
    animation: none !important;
  }

  .hero-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-word {
    opacity: 1;
    transform: none;
    animation: none;
    color: inherit;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }

  .hero-line-accent .hero-word {
    color: #0a2a55;
  }
}

.problem-section {
  background: #041428;
  color: #e8eef8;
  border-top: none;
}

.problem-section h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  max-width: 36rem;
}

.problem-list {
  list-style: none;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
}

.problem-list li {
  position: relative;
  padding-left: 1.65rem;
  color: rgba(232, 238, 248, 0.88);
  font-weight: 500;
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.75rem;
  height: 2px;
  background: #f87171;
  border-radius: 2px;
}

.problem-fix {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: #9ec5ff;
  font-size: 1.05rem;
  font-weight: 600;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.problem-section + .section {
  border-top: none;
}

.lead,
.section p {
  color: var(--muted);
  max-width: 48rem;
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem;
  background: #fff;
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.list-plain {
  margin: 1rem 0 0 1.1rem;
  color: var(--muted);
}

.list-plain li + li {
  margin-top: 0.35rem;
}

.note {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #eff6ff;
  border-left: 3px solid var(--brand);
  color: var(--muted);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 0.85rem;
  max-width: 32rem;
  margin-top: 1.25rem;
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
}

/* —— Limited offer bar —— */
.site-offer-bar {
  background: linear-gradient(105deg, #041428 0%, #0a2a55 50%, #0056b8 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-bar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  grid-template-areas: "badge text countdown cta close";
  align-items: center;
  gap: 0.65rem 0.85rem;
  padding-block: 0.7rem;
  line-height: 1.35;
}

.offer-bar-badge {
  grid-area: badge;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: #ffb020;
  color: #1a1200;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.offer-bar-text {
  grid-area: text;
  margin: 0;
  min-width: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.92rem;
  font-weight: 600;
}

.offer-countdown {
  grid-area: countdown;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-variant-numeric: tabular-nums;
}

.offer-countdown-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.offer-countdown-time {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.offer-bar-cta {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  background: #fff !important;
  color: #0056b8 !important;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.offer-bar-cta:hover {
  background: #f0f7ff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  text-decoration: none !important;
}

.offer-bar-cta-free {
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.42rem;
  border-radius: 4px;
  background: #16a34a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.offer-bar-close {
  grid-area: close;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.offer-bar-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 960px) {
  .offer-bar-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "badge close"
      "text text"
      "countdown countdown"
      "cta cta";
    gap: 0.55rem 0.65rem;
    padding-block: 0.8rem;
  }

  .offer-bar-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .offer-countdown {
    width: 100%;
    justify-content: center;
  }

  .offer-countdown-time {
    font-size: 1.05rem;
  }

  .offer-bar-cta {
    width: 100%;
    min-height: 50px;
    font-size: 1.05rem;
    padding: 0.8rem 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  }

  .offer-bar-cta-free {
    font-size: 0.72rem;
    padding: 0.18rem 0.48rem;
  }

  .nav a.btn {
    justify-content: center;
  }

  .nav a.btn .cta-free-tag {
    margin-left: 0.55rem;
  }
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  max-width: 100%;
}

.cta-stack > .btn {
  margin: 0;
}

.cta-free-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #b45309;
  text-transform: uppercase;
}

.cta-free-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb020;
  box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.25);
}

.consult-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0;
  width: min(100%, 22rem);
}

.consult-timeline__step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 0.35rem 0 0;
  text-align: left;
}

.consult-timeline__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 14px;
  right: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, #0076f7, rgba(0, 118, 247, 0.25));
  pointer-events: none;
}

.consult-timeline__dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #0076f7;
  box-shadow: 0 0 0 3px rgba(0, 118, 247, 0.12);
  position: relative;
  z-index: 1;
}

.consult-timeline__step:first-child .consult-timeline__dot {
  background: #0076f7;
  box-shadow: 0 0 0 3px rgba(0, 118, 247, 0.2);
}

.consult-timeline__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.consult-timeline__hint {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0076f7;
  line-height: 1.2;
}

.consult-timeline--compact {
  width: min(100%, 18rem);
}

.consult-timeline--compact .consult-timeline__label {
  font-size: 0.72rem;
}

.consult-timeline--compact .consult-timeline__hint {
  font-size: 0.65rem;
}

.consult-timeline--page {
  width: min(100%, 28rem);
  margin-top: 1rem;
}

.consult-timeline--page .consult-timeline__dot {
  width: 14px;
  height: 14px;
}

.consult-timeline--page .consult-timeline__step:not(:last-child)::after {
  top: 7px;
  left: 16px;
}

.consult-timeline--page .consult-timeline__label {
  font-size: 0.9rem;
}

.consult-timeline--page .consult-timeline__hint {
  font-size: 0.78rem;
}

.free-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 176, 32, 0.16);
  color: #9a6700;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.free-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb020;
}

.nav a.btn .cta-free-tag {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: #fff;
  color: #0076f7;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 960px) {
  .nav a.btn {
    justify-content: center;
  }

  .nav a.btn .cta-free-tag {
    margin-left: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-free-chip::before {
    box-shadow: none;
  }
}
