/* ==========================================================================
   Ribaad Technology — style.css
   Palette taken from the company logo.
   ========================================================================== */

:root {
  /* Brand colours (sampled from the logo) */
  --navy-900: #061436;
  --navy-800: #0b1c44;
  --navy-700: #0f204a;
  --navy-600: #16295c;
  --royal-800: #09307f;
  --royal-600: #0552c5;
  --royal-500: #2456b5;
  --blue-400: #188ce4;
  --cyan-400: #23bff7;
  --cyan-200: #7fd9fb;
  --cyan-050: #e7f6fe;
  --white: #ffffff;

  /* Surfaces */
  --ink: #0a1a38;
  --body: #4e5c76;
  --muted: #808da6;
  --surface: #ffffff;
  --surface-alt: #f5f8fd;
  --card: #ffffff;
  --line: #e5ebf7;
  --line-soft: #eef3fb;
  --tint: rgba(5, 82, 197, .07);
  --tint-line: rgba(5, 82, 197, .14);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--royal-600) 0%, var(--cyan-400) 100%);
  --grad-deep: linear-gradient(135deg, var(--navy-900) 0%, var(--royal-800) 55%, var(--royal-600) 100%);
  --grad-soft: linear-gradient(135deg, rgba(5, 82, 197, .10), rgba(35, 191, 247, .10));

  /* Shadows */
  --sh-sm: 0 4px 14px rgba(6, 20, 54, .06);
  --sh-md: 0 14px 34px rgba(6, 20, 54, .10);
  --sh-lg: 0 26px 60px rgba(6, 20, 54, .16);
  --sh-brand: 0 14px 30px rgba(5, 82, 197, .30);
  --sh-ring: 0 0 0 1px rgba(5, 82, 197, .10);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;

  --nav-h: 84px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--body);
  background: var(--surface);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.16;
}

a { text-decoration: none; color: var(--royal-600); transition: color .25s ease; }
a:hover { color: var(--blue-400); }

img { max-width: 100%; height: auto; }

p { max-width: 68ch; }

::selection { background: var(--cyan-400); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 3000;
  background: var(--navy-900);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* Section rhythm */
.section {
  position: relative;
  padding: 6.5rem 0;
}
.section--tight { padding: 4.5rem 0; }
.section--alt { background: var(--surface-alt); }
.section--dark {
  background: var(--grad-deep);
  color: rgba(255, 255, 255, .78);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.section-head { max-width: 700px; margin: 0 auto 3.25rem; text-align: center; }
.section-head p { margin: 0 auto; color: var(--muted); }
.section--dark .section-head p { color: rgba(255, 255, 255, .72); }

.section-title {
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  margin-bottom: .9rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--royal-600);
  background: rgba(5, 82, 197, .09);
  border: 1px solid rgba(5, 82, 197, .16);
  padding: .4rem .95rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.kicker i { color: var(--cyan-400); }
.section--dark .kicker {
  color: var(--cyan-200);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}

.text-brand { color: var(--royal-600); }

/* Soft background pattern used behind several sections */
.pattern-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(5, 82, 197, .13) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 72%);
  pointer-events: none;
}
.section > .container { position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 999px;
  padding: .8rem 1.75rem;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease,
              background-color .28s ease, color .28s ease, border-color .28s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-magnet { transform: translate(var(--tx, 0), var(--ty, 0)); }

.btn-brand {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
  background-size: 180% 180%;
}
.btn-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transition: left .7s var(--ease);
}
.btn-brand:hover::before,
.btn-brand:focus-visible::before { left: 130%; }
.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(5, 82, 197, .38);
  background-position: 100% 0;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; transform: translateY(-3px); }

.btn-outline-brand {
  border-color: rgba(5, 82, 197, .35);
  color: var(--royal-600);
  background: var(--card);
}
.btn-outline-brand:hover {
  background: var(--royal-600);
  border-color: var(--royal-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-brand);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .9rem; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, .45);
  animation: ripple .6s linear;
  pointer-events: none;
}
.btn-outline-brand .ripple { background: rgba(5, 82, 197, .3); }
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* Text link with underline grow */
.link-more {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--royal-600);
}
.link-more i { transition: transform .3s ease; }
.link-more:hover i { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Preloader
   -------------------------------------------------------------------------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  background: var(--grad-deep);
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.loader-ring {
  width: 148px;
  height: 148px;
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  position: relative;
}
.loader-ring::before,
.loader-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.loader-ring::before {
  border-top-color: var(--cyan-400);
  border-right-color: var(--cyan-400);
  animation: spin 1.15s linear infinite;
}
.loader-ring::after {
  inset: 12px;
  border-bottom-color: rgba(255, 255, 255, .55);
  border-left-color: rgba(255, 255, 255, .25);
  animation: spin 1.7s linear reverse infinite;
}
.loader-ring img {
  width: 92px;
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

.loader-bar {
  width: 190px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-400), #fff);
  animation: slide 1.2s ease-in-out infinite;
}
@keyframes slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(360%); } }

.loader-text {
  color: rgba(255, 255, 255, .8);
  font-family: 'Outfit', sans-serif;
  letter-spacing: .16em;
  font-size: .78rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */

.navbar {
  --bs-navbar-padding-y: 1rem;
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease,
              backdrop-filter .35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(6, 20, 54, .10);
  --bs-navbar-padding-y: .55rem;
  border-bottom: 1px solid rgba(226, 233, 246, .9);
}

.navbar-brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 6px 18px rgba(6, 20, 54, .22);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}
.navbar-brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  letter-spacing: -.01em;
  transition: color .35s ease;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--cyan-200);
  font-weight: 500;
  transition: color .35s ease;
}
.navbar.scrolled .brand-name { color: var(--navy-900); }
.navbar.scrolled .brand-sub { color: var(--royal-600); }

.navbar .nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, .86);
  margin: 0 .18rem;
  padding: .5rem .85rem !important;
  position: relative;
  transition: color .3s ease;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .2rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: -2.5px;
  background: var(--cyan-400);
  transform: scale(0);
  transition: transform .35s var(--ease);
}
.navbar .nav-link.active::after { transform: scale(1); }
.navbar .nav-link:hover::after { transform: scale(.7); }
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff; }


.navbar.scrolled .nav-link { color: var(--ink); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--royal-600); }

.navbar-toggler {
  border: 1.5px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  padding: .45rem .6rem;
}
.navbar.scrolled .navbar-toggler { border-color: rgba(5, 82, 197, .3); }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bars { display: block; width: 22px; height: 16px; position: relative; }
.toggler-bars span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--card);
  transition: transform .3s ease, opacity .3s ease, background-color .35s ease;
}
.navbar.scrolled .toggler-bars span { background: var(--navy-900); }
.toggler-bars span:nth-child(1) { top: 0; }
.toggler-bars span:nth-child(2) { top: 7px; }
.toggler-bars span:nth-child(3) { top: 14px; }
.navbar-toggler[aria-expanded="true"] .toggler-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bars span:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    border-radius: var(--r-md);
    padding: 1rem;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--line);
  }
  .navbar .nav-link,
  .navbar.scrolled .nav-link { color: var(--ink); }
  .navbar .nav-link::after { left: .3rem; bottom: 50%; margin: 0 0 -2.5px 0; }
  .navbar .navbar-nav { gap: .1rem; }
  .nav-cta { margin-top: .85rem; display: block; }
  .nav-cta .btn { width: 100%; }
}

#scrollProgress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .3s ease;
}
.navbar.scrolled #scrollProgress { opacity: 1; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 6rem;
  background: var(--grad-deep);
  background-size: 220% 220%;
  animation: gradientShift 18s ease infinite;
  color: rgba(255, 255, 255, .8);
  overflow: hidden;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(to top, var(--surface), transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  pointer-events: none;
}
.hero-glow.one { width: 460px; height: 460px; background: var(--cyan-400); top: -140px; right: -90px; }
.hero-glow.two { width: 380px; height: 380px; background: var(--royal-600); bottom: -160px; left: -120px; opacity: .6; }

/* Circuit grid, echoing the logo's traces */
.hero-circuit {
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
}
.hero-circuit path { stroke: var(--cyan-200); stroke-width: 1; fill: none; }
.hero-circuit circle { fill: var(--cyan-400); }
.hero-circuit .spark {
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 24 460;
  animation: trace 6s linear infinite;
}
.hero-circuit .spark.d2 { animation-delay: 1.4s; }
.hero-circuit .spark.d3 { animation-delay: 2.9s; }
.hero-circuit .spark.d4 { animation-delay: 4.2s; }
@keyframes trace { from { stroke-dashoffset: 484; } to { stroke-dashoffset: 0; } }

.hero-enter > * { animation: heroIn .9s var(--ease) both; }
.hero-enter > *:nth-child(1) { animation-delay: .10s; }
.hero-enter > *:nth-child(2) { animation-delay: .18s; }
.hero-enter > *:nth-child(3) { animation-delay: .26s; }
.hero-enter > *:nth-child(4) { animation-delay: .34s; }
.hero-enter > *:nth-child(5) { animation-delay: .42s; }
.hero-visual { animation: heroIn 1.1s var(--ease) .30s both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.1vw, 4rem);
  margin-bottom: 1.35rem;
}
.hero-lead {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, .8);
  max-width: 60ch;
  margin-bottom: 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  margin-top: 2.9rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero-trust div span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.hero-trust div small { color: rgba(255, 255, 255, .62); font-size: .85rem; }

/* Hero visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 420px; }

.hero-orb {
  width: min(360px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .22), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 60px rgba(35, 191, 247, .25), 0 30px 70px rgba(0, 0, 0, .35);
  animation: float 7s ease-in-out infinite;
}
.hero-orb img { width: 74%; border-radius: 50%; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.orb-ring {
  position: absolute;
  width: min(470px, 92vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .28);
  animation: spin 40s linear infinite;
}
.orb-ring::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 18px var(--cyan-400);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}
.float-card i { color: var(--cyan-400); font-size: 1.1rem; }
.float-card.fc1 { top: 6%; left: -2%; animation-delay: .2s; }
.float-card.fc2 { top: 26%; right: -6%; animation-delay: 1.1s; }
.float-card.fc3 { bottom: 22%; left: -8%; animation-delay: 2s; }
.float-card.fc4 { bottom: 4%; right: 2%; animation-delay: 2.8s; }
.float-card.fc5 { top: 49%; right: -7%; animation-delay: 3.6s; }

@media (max-width: 991.98px) {
  .hero { padding-top: calc(var(--nav-h) + 2.5rem); text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 3.5rem; min-height: 340px; }
  .float-card.fc1 { left: 0; }
  .float-card.fc3 { left: -2%; }
  .float-card.fc5 { display: none; }
}
@media (max-width: 575.98px) {
  .float-card { font-size: .8rem; padding: .55rem .8rem; }
  .float-card.fc2 { right: -2%; }
}

/* --------------------------------------------------------------------------
   Cards, shared
   -------------------------------------------------------------------------- */

.card-soft {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 2.1rem 1.85rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, border-color .4s ease;
}
.card-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%),
              rgba(35, 191, 247, .13), transparent 62%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.card-soft::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.card-soft:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-md), var(--sh-ring);
  border-color: transparent;
}
.card-soft:hover::before { opacity: 1; }
.card-soft:hover::after { transform: scaleX(1); }
.card-soft > * { position: relative; z-index: 1; }

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--royal-600);
  background: var(--tint);
  border: 1px solid var(--tint-line);
  margin-bottom: 1.35rem;
  transition: color .4s var(--ease), background-color .4s var(--ease),
              border-color .4s var(--ease), transform .5s var(--ease),
              box-shadow .4s var(--ease);
}
.card-soft:hover .icon-badge {
  color: #fff;
  background: var(--grad-brand);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--sh-brand);
}

.card-soft h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.card-soft p { font-size: .97rem; color: var(--body); margin-bottom: 1.1rem; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-visual { position: relative; }
.about-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grad-deep);
  padding: 3rem;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-lg);
}
.about-frame img { width: 80%; border-radius: 50%; }

.about-badge {
  position: absolute;
  right: -10px;
  bottom: -24px;
  background: var(--card);
  border-radius: var(--r-md);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: .85rem;
  border: 1px solid var(--line);
}
.about-badge .icon-badge { margin: 0; width: 46px; height: 46px; font-size: 1.05rem; border-radius: 14px; }
.about-badge strong { font-family: 'Outfit', sans-serif; color: var(--ink); display: block; line-height: 1.2; }
.about-badge small { color: var(--muted); }

.mv-card {
  display: flex;
  gap: 1.1rem;
  padding: 1.4rem;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.mv-card:hover { transform: translateX(6px); box-shadow: var(--sh-md); }
.mv-card i {
  font-size: 1.2rem;
  color: var(--royal-600);
  background: var(--tint);
  border: 1px solid var(--tint-line);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
  transition: color .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
}
.mv-card:hover i { color: #fff; background: var(--grad-brand); border-color: transparent; }
.mv-card h4 { font-size: 1.08rem; margin-bottom: .25rem; }
.mv-card p { margin: 0; font-size: .95rem; }

.stat-tile {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  height: 100%;
  transition: transform .35s ease, background-color .35s ease;
}
.stat-tile:hover { transform: translateY(-8px); background: rgba(255, 255, 255, .13); }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-tile span.suffix { color: var(--cyan-400); }
.stat-tile p { color: rgba(255, 255, 255, .72); margin: .55rem 0 0; font-size: .95rem; }


/* --------------------------------------------------------------------------
   Meet the CEO band
   -------------------------------------------------------------------------- */

.ceo-band {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.6rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
}
.ceo-band::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--cyan-400);
  filter: blur(120px);
  opacity: .16;
  top: -160px;
  right: -80px;
  pointer-events: none;
}
.ceo-band > * { position: relative; z-index: 1; }

.ceo-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background: var(--grad-brand);
  box-shadow: var(--sh-brand);
}
.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: var(--surface-alt);
}
.ceo-photo::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed var(--tint-line);
  animation: spin 44s linear infinite;
}

.ceo-role {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--royal-600);
  margin-bottom: .5rem;
  display: block;
}
.ceo-band h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: .3rem; }
.ceo-band .ceo-title { color: var(--muted); font-family: 'Outfit', sans-serif; margin-bottom: 1rem; }
.ceo-band p { font-size: 1rem; margin-bottom: 1.6rem; }

.ceo-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }

@media (max-width: 767.98px) {
  .ceo-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.4rem;
    gap: 1.8rem;
  }
  .ceo-photo { width: 190px; margin: 0 auto; }
  .ceo-band p { margin-left: auto; margin-right: auto; }
  .ceo-actions { justify-content: center; }
}

[data-theme="dark"] .ceo-role { color: var(--cyan-200); }

/* --------------------------------------------------------------------------
   Technology strip
   -------------------------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.tech-card {
  flex: 0 0 auto;
  width: 158px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 1.5rem .8rem;
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.tech-card i {
  font-size: 1.85rem;
  color: var(--royal-600);
  transition: transform .4s var(--ease), color .4s ease;
  display: block;
  margin-bottom: .65rem;
}
.tech-card span {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--tint-line);
}
.tech-card:hover i { transform: translateY(-2px) scale(1.1); color: var(--cyan-400); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}
.filter-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--body);
  padding: .55rem 1.35rem;
  border-radius: 999px;
  transition: all .3s ease;
}
.filter-btn:hover { border-color: var(--royal-600); color: var(--royal-600); }
.filter-btn.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-brand);
}

.work-item { transition: opacity .35s ease, transform .35s ease; }
.work-item.hide { display: none; }
.work-item.fade-out { opacity: 0; transform: scale(.96); }

.work-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  background: var(--navy-900);
  height: 100%;
}
.work-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.work-card:hover img { transform: scale(1.07); }


.work-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(6, 20, 54, .92) 8%, rgba(6, 20, 54, .45) 46%, rgba(6, 20, 54, 0) 76%);
  transition: background .45s ease;
}
.work-card:hover .work-overlay,
.work-card:focus-within .work-overlay {
  background: linear-gradient(to top, rgba(6, 20, 54, .96) 20%, rgba(6, 20, 54, .72) 62%, rgba(6, 20, 54, .25) 100%);
}

/* Category and title are always readable. */
.work-cat {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  font-family: 'Outfit', sans-serif;
  margin-bottom: .35rem;
}
.work-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-bottom: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}

/* The description and the link slide in on hover. */
.work-overlay p,
.work-overlay .link-more {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), margin .4s var(--ease);
}
.work-overlay p {
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
  margin: .5rem 0 0;
  max-height: 0;
  overflow: hidden;
}
.work-overlay .link-more {
  color: var(--cyan-200);
  align-self: flex-start;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
}
.work-card:hover .work-overlay p,
.work-card:focus-within .work-overlay p {
  opacity: 1;
  transform: none;
  max-height: 8rem;
  margin-bottom: .85rem;
}
.work-card:hover .work-overlay .link-more,
.work-card:focus-within .work-overlay .link-more {
  opacity: 1;
  transform: none;
  max-height: 3rem;
}
.work-overlay .link-more:hover { color: #fff; }

@media (max-width: 575.98px) {
  .work-overlay h3 { font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Domain & hosting
   -------------------------------------------------------------------------- */

.domain-panel {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
}
.domain-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.domain-form .form-control {
  flex: 1 1 260px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding: .95rem 1.4rem;
  font-size: 1rem;
}
.domain-form .form-control::placeholder { color: rgba(255, 255, 255, .55); }
.domain-form .form-control:focus {
  background: rgba(255, 255, 255, .16);
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(35, 191, 247, .2);
  color: #fff;
}

.tld-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.35rem; }
.tld-chip {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .85);
}
.tld-chip b { color: var(--cyan-400); }

.domain-result {
  margin-top: 1.5rem;
  border-radius: var(--r-md);
  padding: 1.15rem 1.35rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  display: none;
}
.domain-result.show { display: block; animation: fadeUp .45s ease both; }
.domain-result ul { list-style: none; margin: .8rem 0 0; padding: 0; }
.domain-result li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  flex-wrap: wrap;
}
.domain-result .dom-name { font-family: 'Outfit', sans-serif; font-weight: 600; }
.domain-result .taken { color: #ffb4b4; font-size: .88rem; }
.domain-result .free { color: #8ff0c4; font-size: .88rem; }

.host-feature {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  height: 100%;
  transition: transform .35s ease, background-color .35s ease;
}
.host-feature:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .13); }
.host-feature i { color: var(--cyan-400); font-size: 1.3rem; margin-top: .15rem; }
.host-feature h4 { font-size: 1rem; margin-bottom: .2rem; }
.host-feature p { margin: 0; font-size: .9rem; color: rgba(255, 255, 255, .72); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem;
  box-shadow: var(--sh-sm);
  margin-bottom: .9rem;
}

.bt-opt {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: .6rem 1.5rem;
  cursor: pointer;
  transition: color .3s var(--ease), background-color .3s var(--ease),
              box-shadow .3s var(--ease);
}
.bt-opt:hover { color: var(--ink); }
.bt-opt.active {
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--sh-brand);
}
.bt-opt.active:hover { color: #fff; }

.save-pill {
  font-size: .74rem;
  background: rgba(35, 191, 247, .16);
  color: var(--royal-600);
  border-radius: 999px;
  padding: .16rem .55rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: background-color .3s ease, color .3s ease;
}
.bt-opt.active .save-pill { background: rgba(255, 255, 255, .24); color: #fff; }

.billing-note {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 auto 2.4rem;
  max-width: 46ch;
}

@media (max-width: 400px) {
  .bt-opt { padding: .6rem 1rem; font-size: .9rem; }
  .bt-opt .save-pill { display: none; }
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.9rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, border-color .4s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md), var(--sh-ring); border-color: transparent; }
.price-card.featured:hover { box-shadow: var(--sh-lg); }
.price-value { transition: opacity .25s ease; }
.price-value.flip { opacity: 0; }
.price-card.featured {
  background: var(--grad-deep);
  border-color: transparent;
  color: rgba(255, 255, 255, .78);
  box-shadow: var(--sh-lg);
  position: relative;
}
.price-card.featured h3, .price-card.featured .price-amount { color: #fff; }
.price-card.featured .price-list li { color: rgba(255, 255, 255, .82); }
.price-card.featured .price-list i { color: var(--cyan-400); }

.plan-flag {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  font-size: .74rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  background: var(--cyan-400);
  color: var(--navy-900);
  padding: .22rem .7rem;
  border-radius: 999px;
}

.price-card h3 { font-size: 1.22rem; margin-bottom: .3rem; }
.price-card .plan-note { font-size: .9rem; color: var(--muted); margin-bottom: 1.3rem; }
.price-card.featured .plan-note { color: rgba(255, 255, 255, .62); }
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.price-amount small { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-card.featured .price-amount small { color: rgba(255, 255, 255, .65); }
.price-list { list-style: none; padding: 0; margin: 1.6rem 0; flex: 1; }
.price-list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .42rem 0;
  font-size: .95rem;
}
.price-list i { color: var(--cyan-400); margin-top: .3rem; font-size: .8rem; }

/* --------------------------------------------------------------------------
   Why us
   -------------------------------------------------------------------------- */

.why-tile {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--line-soft);
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.why-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-md), var(--sh-ring); border-color: transparent; }
.why-tile i {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--royal-600);
  background: var(--tint);
  border: 1px solid var(--tint-line);
  font-size: 1.05rem;
  transition: color .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
}
.why-tile:hover i { color: #fff; background: var(--grad-brand); border-color: transparent; }
.why-tile h4 { font-size: 1.03rem; margin-bottom: .2rem; }
.why-tile p { margin: 0; font-size: .92rem; }

/* --------------------------------------------------------------------------
   Process timeline
   -------------------------------------------------------------------------- */

.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(5, 82, 197, .35), rgba(35, 191, 247, .35), transparent);
}
.tl-step {
  position: relative;
  width: 50%;
  padding: 0 3rem 2.6rem 0;
  text-align: right;
}
.tl-step:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 2.6rem 3rem;
  text-align: left;
}
.tl-dot {
  position: absolute;
  top: .35rem;
  right: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 0 0 8px var(--surface-alt), 0 8px 20px rgba(5, 82, 197, .28);
  z-index: 2;
}
.tl-step:nth-child(even) .tl-dot { right: auto; left: -25px; }
.tl-num {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  color: var(--cyan-400);
  font-weight: 600;
  letter-spacing: .1em;
}
.tl-step h4 { font-size: 1.15rem; margin: .25rem 0 .35rem; }
.tl-step p { font-size: .95rem; margin: 0; display: inline-block; max-width: 44ch; }

@media (max-width: 767.98px) {
  .timeline::before { left: 25px; }
  .tl-step,
  .tl-step:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 2.4rem 4.6rem;
    text-align: left;
  }
  .tl-dot,
  .tl-step:nth-child(even) .tl-dot { left: 0; right: auto; width: 44px; height: 44px; }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.quote-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 2rem 1.9rem;
  height: 100%;
  box-shadow: var(--sh-sm);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md), var(--sh-ring); border-color: transparent; }
.quote-card .qmark {
  font-size: 2.2rem;
  color: rgba(5, 82, 197, .16);
  line-height: 1;
  margin-bottom: .6rem;
  display: block;
}
.stars { color: #f5a623; font-size: .9rem; margin-bottom: .9rem; }
.quote-card p { font-size: .98rem; color: var(--body); }
.who { display: flex; align-items: center; gap: .85rem; margin-top: 1.4rem; }
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #fff;
  background: var(--grad-brand);
  flex: none;
}
.who strong { display: block; font-family: 'Outfit', sans-serif; color: var(--ink); line-height: 1.25; }
.who small { color: var(--muted); }

.carousel-nav { display: flex; gap: .6rem; justify-content: center; margin-top: 2.4rem; }
.carousel-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--royal-600);
  transition: all .3s ease;
}
.carousel-nav button:hover { background: var(--royal-600); color: #fff; border-color: var(--royal-600); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.cta-band {
  border-radius: var(--r-lg);
  background: var(--grad-deep);
  background-size: 200% 200%;
  animation: gradientShift 16s ease infinite;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--cyan-400);
  filter: blur(110px);
  opacity: .35;
  top: -180px;
  right: -100px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: .8rem; }
.cta-band p { color: rgba(255, 255, 255, .78); margin: 0 auto 2rem; max-width: 52ch; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  box-shadow: var(--sh-md);
}
.form-label { font-family: 'Outfit', sans-serif; font-weight: 500; color: var(--ink); font-size: .93rem; margin-bottom: .35rem; }
.form-control, .form-select {
  border-radius: 14px;
  border: 1.5px solid var(--line);
  padding: .8rem 1.05rem;
  font-size: .97rem;
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--royal-600);
  box-shadow: 0 0 0 4px rgba(5, 82, 197, .12);
}
.form-control::placeholder { color: var(--muted); }
.invalid-note { display: none; color: #d33a3a; font-size: .85rem; margin-top: .3rem; }
.is-error .form-control, .is-error .form-select { border-color: #d33a3a; }
.is-error .invalid-note { display: block; }

.form-status {
  display: none;
  margin-top: 1.2rem;
  padding: .95rem 1.15rem;
  border-radius: 14px;
  background: rgba(35, 191, 247, .12);
  border: 1px solid rgba(5, 82, 197, .22);
  color: var(--royal-800);
  font-size: .95rem;
}
.form-status.show { display: block; animation: fadeUp .4s ease both; }

.contact-line {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-of-type { border-bottom: 0; }
.contact-line i {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--royal-600);
  background: var(--tint);
  border: 1px solid var(--tint-line);
  font-size: 1.05rem;
  transition: color .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease);
}
.contact-line:hover i { color: #fff; background: var(--grad-brand); border-color: transparent; }
.contact-line h4 { font-size: 1rem; margin-bottom: .1rem; }
.contact-line a, .contact-line p { color: var(--body); margin: 0; font-size: .96rem; }
.contact-line a:hover { color: var(--royal-600); }

.social-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--royal-600);
  background: var(--tint);
  border: 1px solid var(--tint-line);
  transition: all .35s var(--ease);
}
.social-row a:hover {
  background: var(--grad-brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--sh-brand);
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .68);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--royal-600);
  filter: blur(140px);
  opacity: .3;
  top: -220px;
  left: -140px;
}
.site-footer > .container { position: relative; z-index: 1; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.15rem; }
.site-footer p { font-size: .95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255, 255, 255, .68); font-size: .95rem; display: inline-block; transition: transform .25s ease, color .25s ease; }
.footer-links a:hover { color: var(--cyan-400); transform: translateX(5px); }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--grad-brand); transform: translateY(-4px); border-color: transparent; }

.news-form { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.news-form .form-control {
  flex: 1 1 170px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  border-radius: 999px;
}
.news-form .form-control::placeholder { color: rgba(255, 255, 255, .5); }
.news-form .form-control:focus { background: rgba(255, 255, 255, .14); color: #fff; border-color: var(--cyan-400); }
.news-note { font-size: .86rem; margin-top: .7rem; display: none; color: var(--cyan-200); }
.news-note.show { display: block; }

.footer-bottom {
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

#toTop {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1050;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: var(--sh-brand);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .35s cubic-bezier(.22, 1, .36, 1);
}
#toTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#toTop:hover { transform: translateY(-4px) scale(1.06); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.hero-enter .reveal, .hero-visual .reveal { opacity: 1; transform: none; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}


/* --------------------------------------------------------------------------
   Dark theme — every colour below overrides a token from :root
   -------------------------------------------------------------------------- */

[data-theme="dark"] {
  --ink: #eaf1fb;
  --body: #a9b6cd;
  --muted: #7d8ba4;
  --surface: #060e20;
  --surface-alt: #0a1428;
  --card: #0e1a33;
  --line: #1d2c4a;
  --line-soft: #16233d;
  --tint: rgba(35, 191, 247, .10);
  --tint-line: rgba(35, 191, 247, .22);
  --sh-sm: 0 4px 14px rgba(0, 0, 0, .35);
  --sh-md: 0 14px 34px rgba(0, 0, 0, .45);
  --sh-lg: 0 26px 60px rgba(0, 0, 0, .55);
  --sh-ring: 0 0 0 1px rgba(35, 191, 247, .18);
  --grad-deep: linear-gradient(135deg, #04091a 0%, #08214f 55%, #0a3a8f 100%);
  color-scheme: dark;
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(6, 14, 32, .90);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}
[data-theme="dark"] .navbar.scrolled .brand-name { color: #fff; }
[data-theme="dark"] .navbar.scrolled .brand-sub { color: var(--cyan-200); }
[data-theme="dark"] .navbar.scrolled .toggler-bars span { background: #fff; }
[data-theme="dark"] .navbar-toggler { border-color: rgba(255, 255, 255, .28); }

[data-theme="dark"] .navbar-collapse { background: rgba(14, 26, 51, .98); border-color: var(--line); }
[data-theme="dark"] .navbar .nav-link,
[data-theme="dark"] .navbar.scrolled .nav-link { color: var(--body); }
[data-theme="dark"] .navbar .nav-link:hover,
[data-theme="dark"] .navbar .nav-link.active,
[data-theme="dark"] .navbar.scrolled .nav-link.active { color: #fff; }

[data-theme="dark"] .section--alt { background: var(--surface-alt); }
[data-theme="dark"] .pattern-dots::before {
  background-image: radial-gradient(rgba(35, 191, 247, .16) 1.5px, transparent 1.6px);
}
[data-theme="dark"] .kicker { background: rgba(35, 191, 247, .10); border-color: rgba(35, 191, 247, .24); color: var(--cyan-200); }
[data-theme="dark"] .btn-outline-brand { background: var(--card); color: var(--cyan-200); border-color: var(--tint-line); }
[data-theme="dark"] .btn-outline-brand:hover { background: var(--royal-600); border-color: var(--royal-600); color: #fff; }
[data-theme="dark"] .icon-badge,
[data-theme="dark"] .why-tile i,
[data-theme="dark"] .mv-card i,
[data-theme="dark"] .contact-line i,
[data-theme="dark"] .social-row a { color: var(--cyan-200); }
[data-theme="dark"] .link-more { color: var(--cyan-200); }
[data-theme="dark"] .filter-btn { background: var(--card); color: var(--body); border-color: var(--line); }
[data-theme="dark"] .filter-btn:hover { color: var(--cyan-200); border-color: var(--tint-line); }
[data-theme="dark"] .billing-toggle { background: var(--card); border-color: var(--line); }
[data-theme="dark"] .save-pill { color: var(--cyan-200); background: rgba(35, 191, 247, .14); }
[data-theme="dark"] .bt-opt.active .save-pill { color: #fff; background: rgba(255, 255, 255, .22); }
[data-theme="dark"] .bt-opt:hover { color: var(--ink); }
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
  background-color: var(--surface-alt);
  border-color: var(--line);
  color: var(--ink);
}
[data-theme="dark"] .form-control::placeholder { color: var(--muted); }
[data-theme="dark"] .domain-form .form-control,
[data-theme="dark"] .news-form .form-control {
  background-color: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}
[data-theme="dark"] .domain-form .form-control::placeholder,
[data-theme="dark"] .news-form .form-control::placeholder { color: rgba(255, 255, 255, .5); }
[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a9b6cd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus { background-color: var(--card); border-color: var(--cyan-400); }
[data-theme="dark"] .form-status { background: rgba(35, 191, 247, .10); border-color: var(--tint-line); color: var(--cyan-200); }
[data-theme="dark"] .carousel-nav button { background: var(--card); border-color: var(--line); color: var(--cyan-200); }
[data-theme="dark"] .carousel-nav button:hover { background: var(--royal-600); color: #fff; }
[data-theme="dark"] .tl-dot { box-shadow: 0 0 0 8px var(--surface-alt), 0 8px 20px rgba(0, 0, 0, .5); }
[data-theme="dark"] .site-footer { background: #04091a; }
[data-theme="dark"] .quote-card .qmark { color: rgba(35, 191, 247, .22); }
[data-theme="dark"] .hero::after { background: linear-gradient(to top, var(--surface), transparent); }
[data-theme="dark"] .about-badge { background: var(--card); border-color: var(--line); }

/* --------------------------------------------------------------------------
   Navbar utility buttons (theme + language)
   -------------------------------------------------------------------------- */

.nav-tools { display: flex; align-items: center; gap: .45rem; }

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  transition: all .32s var(--ease);
}
.icon-btn:hover { background: rgba(255, 255, 255, .18); color: #fff; transform: translateY(-2px); }
.navbar.scrolled .icon-btn { border-color: var(--tint-line); background: var(--tint); color: var(--royal-600); }
.navbar.scrolled .icon-btn:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }
[data-theme="dark"] .navbar.scrolled .icon-btn { color: var(--cyan-200); }

.icon-btn .lbl-dark { display: none; }
[data-theme="dark"] .icon-btn .lbl-light { display: none; }
[data-theme="dark"] .icon-btn .lbl-dark { display: block; }

@media (max-width: 991.98px) {
  .nav-tools { margin-top: .85rem; justify-content: center; }
  .icon-btn { border-color: var(--tint-line); background: var(--tint); color: var(--royal-600); }
  [data-theme="dark"] .icon-btn { color: var(--cyan-200); }
}

/* --------------------------------------------------------------------------
   Floating WhatsApp button
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: .6rem;
  height: 56px;
  padding: 0 1.15rem 0 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .42);
  transition: transform .35s var(--ease), box-shadow .35s ease;
  white-space: nowrap;
}
.wa-float:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 20px 40px rgba(37, 211, 102, .52); }
.wa-float i { font-size: 1.5rem; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #25d366;
  animation: waPing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPing {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}
@media (max-width: 575.98px) {
  .wa-float { padding: 0; width: 56px; justify-content: center; }
  .wa-float span { display: none; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::before { display: none; } }

/* --------------------------------------------------------------------------
   Trust line under the hero buttons
   -------------------------------------------------------------------------- */

.trust-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  font-size: 1rem;
}
.trust-line i { color: var(--cyan-400); font-size: 1.05rem; }
.trust-line b { color: #fff; font-weight: 600; }
@media (max-width: 991.98px) { .trust-line { justify-content: center; } }

/* --------------------------------------------------------------------------
   Motion & responsive fallbacks
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 767.98px) {
  .section { padding: 4.5rem 0; }
  .cta-band { padding: 3rem 1.5rem; }
  .contact-form, .domain-panel { padding: 1.6rem; }
  .about-badge { position: static; margin-top: 1.5rem; }
}
