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

:root {
  /* ---- professional palette: graphite + copper, distinct from
     both the blue/teal draft and any gold/black theme. Surfaces
     carry a faint warm undertone (instead of neutral/cool grey)
     so they sit in the same family as the copper accent rather
     than fighting it. ---- */
  --ink:        #0b0c10;
  --surface:    #15141a;
  --surface-2:  #201d24;
  --surface-3:  #2b2730;
  --border:     #2a2530;
  --muted:      #a39a95;
  --text:       #f6f3f0;

  --accent:       #ff6a3d;
  --accent-light: #ff8a5c;
  --accent-dark:  #d9491f;
  --accent-soft:  rgba(255, 106, 61, .13);

  --steel:       #38bdf8;
  --steel-light: #7dd3fc;
  --steel-soft:  rgba(56, 189, 248, .13);

  --font-display: 'Segoe UI', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Segoe UI', Tahoma, Arial, sans-serif;

  --container-width: 1240px;
  --shadow-glow-sm: 0 8px 22px rgba(255, 106, 61, .22);
  --shadow-glow-md: 0 16px 40px rgba(255, 106, 61, .28);
  --shadow-glow-lg: 0 26px 60px rgba(255, 106, 61, .22), 0 6px 18px rgba(0, 0, 0, .35);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

a:focus-visible,
label:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 6px;
}

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

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  display: none;
  border-bottom: 1px solid var(--border);
  background: rgba(18, 22, 31, .6);
  font-size: 12.5px;
}

.top-bar__inner {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
}

.top-bar__info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar__info i {
  font-size: 11px;
  color: var(--accent);
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  transition: color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.top-bar__social a:hover {
  color: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 106, 61, .2);
}

@media (min-width: 992px) {
  .top-bar { display: block; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 13, 18, .86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 18px;
  box-shadow: var(--shadow-glow-sm);
  transition: transform .35s cubic-bezier(.34, 1.15, .28, 1), box-shadow .35s ease;
}

.logo:hover .logo__badge {
  transform: rotate(-8deg) scale(1.06);
  box-shadow: var(--shadow-glow-md);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--text);
}

.logo__name em {
  font-style: normal;
  color: var(--accent);
}

.logo__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.logo__tag i {
  font-size: 10px;
  color: var(--accent);
}

/* ---- Main Nav (desktop) ---- */
.main-nav {
  display: none;
  align-items: center;
  gap: 6px;
}

.main-nav__badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-left: 2px;
}

.main-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .25s ease, background .25s ease;
}

.main-nav__link i {
  font-size: 12px;
  color: var(--accent);
  opacity: .75;
  transition: transform .35s cubic-bezier(.34, 1.15, .28, 1), opacity .25s ease;
}

/* animated underline growing from the center */
.main-nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--steel));
  transition: width .35s cubic-bezier(.16, .84, .44, 1);
}

.main-nav__link:hover,
.main-nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}

.main-nav__link.is-active {
  position: relative;
}

/* small glowing dot marking the current page */
.main-nav__link.is-active::before {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 2px rgba(255, 106, 61, .6);
  animation: navDotPulse 2.4s ease-in-out infinite;
}

@keyframes navDotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

.main-nav__link:hover i,
.main-nav__link.is-active i {
  opacity: 1;
  transform: translateY(-1px) scale(1.1);
}

.main-nav__link:hover::after,
.main-nav__link.is-active::after {
  width: 60%;
}

@media (min-width: 992px) {
  .main-nav { display: flex; }
}

/* ---- Header actions: search, wishlist, CTA ---- */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-toggle-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.search-field {
  width: 0;
  min-width: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 13.5px;
  color: var(--text);
  opacity: 0;
  overflow: hidden;
  outline: none;
  order: -1;
  transition: width .35s ease, opacity .25s ease, padding .35s ease, border-color .25s ease, margin .35s ease;
}

.search-field::placeholder {
  color: var(--muted);
}

.search-toggle-checkbox:checked ~ .search-field {
  width: 170px;
  padding: 6px 2px;
  margin-right: 4px;
  opacity: 1;
  border-bottom-color: var(--accent);
}

.search-field:focus {
  border-bottom-color: var(--accent-light);
}

@media (max-width: 767px) {
  .search-toggle-checkbox:checked ~ .search-field { width: 110px; }
}

.icon-btn {
  position: relative;
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, transform .25s ease, background .25s ease;
}

.icon-btn:hover {
  color: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-2px);
  background: var(--accent-soft);
}

.icon-btn__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

@media (min-width: 576px) {
  .icon-btn { display: grid; }
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

/* =========================================================
   BUTTONS — shared language across the whole page
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, color .3s ease, border-color .3s ease;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: var(--shadow-glow-sm);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-lg);
}

.btn--ghost {
  background: rgba(255, 255, 255, .03);
  border: 1.5px solid var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-3px);
  background: rgba(255, 106, 61, .06);
}

/* one-shot diagonal shine sweeping across every button on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 30%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .7s ease;
}

.btn:hover::after {
  left: 140%;
}

.btn__arrow {
  font-size: 12px;
  transition: transform .3s cubic-bezier(.34, 1.15, .28, 1);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* =========================================================
   MOBILE NAV — pure CSS checkbox hack (no JavaScript)
   ========================================================= */
.nav-toggle-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

.nav-toggle:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.nav-toggle__icon {
  font-size: 16px;
  grid-area: 1 / 1;
  transition: opacity .2s ease, transform .3s cubic-bezier(.34, 1.15, .28, 1);
}

.nav-toggle {
  display: grid;
}

.nav-toggle__icon--open {
  opacity: 1;
  transform: rotate(0deg);
}

.nav-toggle__icon--close {
  opacity: 0;
  transform: rotate(-90deg);
}

.nav-toggle-checkbox:checked ~ .site-header .nav-toggle__icon--open {
  opacity: 0;
  transform: rotate(90deg);
}

.nav-toggle-checkbox:checked ~ .site-header .nav-toggle__icon--close {
  opacity: 1;
  transform: rotate(0deg);
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
}

/* backdrop, only relevant on mobile */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 90;
}

.nav-toggle-checkbox:checked ~ .site-header .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .nav-backdrop { display: block; }
}

/* the mobile dropdown panel itself */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  transition:
    max-height .5s cubic-bezier(.16, .84, .44, 1),
    opacity .35s ease,
    transform .35s ease,
    visibility .5s;
  z-index: 95;
}

.nav-toggle-checkbox:checked ~ .site-header .mobile-nav {
  max-height: 34rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .mobile-nav,
  .nav-backdrop {
    display: none !important;
  }
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__head-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 13px;
}

.mobile-nav__head-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-nav__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.mobile-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: background .25s ease, color .25s ease, padding-left .25s ease;
}

.mobile-nav__link i:first-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  transition: background .25s ease, color .25s ease, transform .3s cubic-bezier(.34, 1.15, .28, 1);
}

.mobile-nav__link span {
  flex: 1;
}

.mobile-nav__chevron {
  font-size: 11px;
  opacity: 0;
  transform: translateX(-6px);
  color: var(--accent-light);
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  padding-left: 18px;
}

.mobile-nav__link:hover i:first-child,
.mobile-nav__link.is-active i:first-child {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
}

.mobile-nav__link:hover .mobile-nav__chevron,
.mobile-nav__link.is-active .mobile-nav__chevron {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav__cta {
  margin-top: 10px;
  width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 100px) 0 clamp(64px, 10vw, 128px);
}

/* soft drifting glow blobs — transform-only, cheap */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero__blob--a {
  width: 380px;
  height: 380px;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 106, 61, .22), transparent 70%);
  animation: heroDrift 10s ease-in-out infinite;
}

.hero__blob--b {
  width: 420px;
  height: 420px;
  bottom: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(56, 189, 248, .16), transparent 70%);
  animation: heroDrift 12s ease-in-out infinite 1s;
}

.hero__blob--c {
  width: 320px;
  height: 320px;
  top: 30%;
  left: -140px;
  background: radial-gradient(circle, rgba(217, 73, 31, .2), transparent 70%);
  animation: heroDrift 14s ease-in-out infinite 2s;
}

@keyframes heroDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -24px); }
}

/* faint technical grid, slowly panning */
.hero__grid {
  position: absolute;
  inset: -20% -10%;
  background-image:
    linear-gradient(rgba(255, 106, 61, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 61, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: heroGridPan 24s linear infinite;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent);
}

@keyframes heroGridPan {
  to { background-position: 46px 46px, 46px 46px; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 56px;
}

@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
  }
}

/* ---------- Content ---------- */
.hero__content {
  text-align: center;
}

@media (min-width: 992px) {
  .hero__content { text-align: left; }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-light);
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .05s;
}

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

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.14;
  color: var(--text);
  margin-top: 20px;
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .18s;
}

.hero__title-accent {
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--steel-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__desc {
  max-width: 540px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .31s;
}

@media (min-width: 992px) {
  .hero__desc { margin-inline: 0; }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .44s;
}

@media (min-width: 576px) {
  .hero__actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 992px) {
  .hero__actions { justify-content: flex-start; }
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__kicker,
.hero__title,
.hero__desc,
.hero__actions,
.hero__trust {
  transform: translateY(22px);
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .57s;
}

@media (min-width: 992px) {
  .hero__trust { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform .3s ease;
}

@media (min-width: 992px) {
  .trust-item { justify-content: flex-start; }
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-item__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 16px;
  font-size: 17px;
  transition: transform .4s cubic-bezier(.34, 1.15, .28, 1), box-shadow .3s ease;
}

.trust-item__icon--accent {
  color: var(--accent-light);
  background: var(--accent-soft);
}

.trust-item__icon--steel {
  color: var(--steel-light);
  background: var(--steel-soft);
}

.trust-item:hover .trust-item__icon {
  transform: rotate(-8deg) scale(1.08);
}

.trust-item:hover .trust-item__icon--accent {
  box-shadow: 0 0 0 1px rgba(255, 106, 61, .3), 0 0 22px rgba(255, 106, 61, .25);
}

.trust-item:hover .trust-item__icon--steel {
  box-shadow: 0 0 0 1px rgba(56, 189, 248, .3), 0 0 22px rgba(56, 189, 248, .25);
}

.trust-item__text {
  text-align: left;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* ---------- Media ---------- */
.hero__media {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(28px) scale(.96);
  animation: heroPop .8s cubic-bezier(.16, .84, .44, 1) forwards .3s;
}

@media (min-width: 992px) {
  .hero__media { max-width: none; margin-inline: 0; }
}

@keyframes heroPop {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* slow-rotating conic glow ring hugging the image frame */
.hero__glow-ring {
  position: absolute;
  inset: -14px;
  z-index: 0;
  border-radius: 34px;
  background: conic-gradient(from 0deg, var(--accent), var(--steel), var(--accent-light), var(--accent-dark), var(--accent));
  filter: blur(24px);
  opacity: .55;
  animation: heroRingSpin 16s linear infinite;
}

@keyframes heroRingSpin {
  to { transform: rotate(360deg); }
}

.hero__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

.hero__img {
  width: 100%;
  height: clamp(280px, 34vw, 480px);
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2, .8, .2, 1);
}

.hero__frame:hover .hero__img {
  transform: scale(1.08);
}

/* placeholder fill so the layout never looks broken while the
   <img src> is still empty */
.hero__img:not([src]),
.hero__img[src=""] {
  background: linear-gradient(150deg, var(--surface-2), var(--surface-3));
}

.hero__frame-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 13, 18, .7), transparent 55%);
  pointer-events: none;
}

/* certified ribbon badge, top-left corner of the image */
.hero__ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(11, 12, 16, .85);
  border: 1px solid rgba(255, 106, 61, .4);
  backdrop-filter: blur(8px);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.hero__ribbon i {
  color: var(--accent);
  font-size: 11px;
}

/* floating info chips */
.hero__chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(18, 22, 31, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
  opacity: 0;
  animation: heroPop .7s cubic-bezier(.16, .84, .44, 1) forwards;
}

.hero__chip--top {
  top: -18px;
  right: 18px;
  animation-delay: .75s;
}

.hero__chip--bottom {
  bottom: -20px;
  left: 18px;
  animation-delay: .9s;
}

/* gentle continuous float once they've appeared */
.hero__chip--top {
  animation: heroPop .7s cubic-bezier(.16, .84, .44, 1) forwards .75s,
             heroChipFloat 5s ease-in-out infinite 1.6s;
}

.hero__chip--bottom {
  animation: heroPop .7s cubic-bezier(.16, .84, .44, 1) forwards .9s,
             heroChipFloat 5.5s ease-in-out infinite 1.8s;
}

@keyframes heroChipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero__chip-stars {
  display: flex;
  gap: 2px;
  font-size: 11px;
  color: var(--accent-light);
}

.hero__chip-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-size: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--steel));
  flex-shrink: 0;
}

.hero__chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.hero__chip-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.hero__chip-text em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
}

/* =========================================================
   RESPONSIVE — fine-tuning beyond the fluid clamp() sizes
   already used throughout
   ========================================================= */
@media (max-width: 575px) {
  .site-header__inner { height: 72px; }
  .logo__badge { width: 38px; height: 38px; font-size: 15px; border-radius: 13px; }
  .logo__name { font-size: 16px; }
  .btn--lg { width: 100%; }

  /* chips no longer float over the image at very small widths —
     they stack neatly underneath instead, so nothing clips or
     overlaps the frame on narrow phones */
  .hero__media {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero__chip {
    position: static;
    animation: heroPop .7s cubic-bezier(.16, .84, .44, 1) forwards .75s !important;
  }

  .hero__chip-text strong { font-size: 13px; }
}

@media (max-width: 420px) {
  .container,
  .top-bar__inner,
  .site-header__inner,
  .hero__inner {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero__blob--a,
  .hero__blob--b,
  .hero__blob--c,
  .hero__grid,
  .hero__glow-ring,
  .main-nav__link.is-active::before,
  .hero__chip--top,
  .hero__chip--bottom {
    animation: none !important;
  }

  .hero__kicker,
  .hero__title,
  .hero__desc,
  .hero__actions,
  .hero__trust,
  .hero__media,
  .hero__chip {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ////////////////////////////////////////////////////////////// */
.services {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 10vw, 130px);
}

.services__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.services__glow--a {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.18), transparent 70%);
  animation: svcDrift 13s ease-in-out infinite;
}
.services__glow--b {
  width: 460px;
  height: 460px;
  bottom: -200px;
  right: -140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14), transparent 70%);
  animation: svcDrift 15s ease-in-out infinite 1.2s;
}
@keyframes svcDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -22px); }
}

.services__grid-pattern {
  position: absolute;
  inset: -15% -10%;
  background-image:
    linear-gradient(rgba(255, 106, 61, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 61, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
  pointer-events: none;
  animation: svcGridPan 26s linear infinite;
  mask-image: radial-gradient(65% 55% at 50% 30%, #000, transparent);
  -webkit-mask-image: radial-gradient(65% 55% at 50% 30%, #000, transparent);
}
@keyframes svcGridPan {
  to { background-position: 46px 46px, 46px 46px; }
}

/* ---- .services__head : kicker + title + description ---- */
.services__head {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 68px);
  text-align: center;
}

.services__rule {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--accent-light);
  font-size: 14px;
  box-shadow: var(--shadow-glow-sm);
}
.services__rule::before,
.services__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
  transform: translateY(-50%);
}
.services__rule::before { right: 100%; margin-right: 10px; }
.services__rule::after  { left: 100%; margin-left: 10px; background: linear-gradient(90deg, var(--steel), transparent); }

.services__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(16px);
  animation: svcFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .02s;
}
.services__kicker i { color: var(--accent); }

.services__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  margin-top: 18px;
  opacity: 0;
  transform: translateY(16px);
  animation: svcFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .12s;
}

.services__title-accent {
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--steel-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services__desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  animation: svcFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .22s;
}

@keyframes svcFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- .services__grid : the 4-card layout ---- */
.services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1180px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   BLOCK: .service-card
   ========================================================= */
.service-card {
  position: relative;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .04) 60%, transparent);
  opacity: 0;
  transform: translateY(26px) scale(.98);
  animation: svcCardIn .75s cubic-bezier(.16, .84, .44, 1) forwards;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}
.services__grid .service-card:nth-child(1) { animation-delay: .10s; }
.services__grid .service-card:nth-child(2) { animation-delay: .20s; }
.services__grid .service-card:nth-child(3) { animation-delay: .30s; }
.services__grid .service-card:nth-child(4) { animation-delay: .40s; }

@keyframes svcCardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card--featured {
  background: linear-gradient(180deg, rgba(255, 106, 61, .65), rgba(255, 106, 61, .18) 60%, transparent);
  box-shadow: 0 0 0 1px rgba(255, 106, 61, .1), 0 30px 80px -30px rgba(255, 106, 61, .35);
}

.service-card__badge {
  position: absolute;
  top: -13px;
  right: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -6px rgba(255, 106, 61, .6);
}
.service-card__badge i { font-size: 10px; }

.service-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border-radius: 22.5px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 65%);
  padding: 34px 30px;
  transition: box-shadow .4s ease;
}

.service-card__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(140px 100px at 85% -10%, rgba(255, 255, 255, .06), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.service-card:hover .service-card__inner::before { opacity: 1; }

.service-card:hover .service-card__inner {
  box-shadow: 0 30px 70px -20px rgba(255, 106, 61, .28);
}
.service-card:nth-child(2):hover .service-card__inner,
.service-card:nth-child(4):hover .service-card__inner {
  box-shadow: 0 30px 70px -20px rgba(56, 189, 248, .26);
}

.service-card__watermark {
  position: absolute;
  top: 6px;
  right: 18px;
  z-index: 0;
  font-size: clamp(58px, 7vw, 78px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .045);
  user-select: none;
  pointer-events: none;
}

.service-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 22px;
  color: #fff;
  transition: transform .45s cubic-bezier(.34, 1.15, .28, 1), box-shadow .35s ease;
}
.service-card__icon--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 30px -8px rgba(255, 106, 61, .55);
}
.service-card__icon--steel {
  background: linear-gradient(135deg, var(--steel), var(--steel-deep));
  box-shadow: 0 12px 30px -8px rgba(56, 189, 248, .5);
}

.service-card__icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, .18);
  opacity: 0;
  animation: svcRingPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes svcRingPulse {
  0%   { transform: scale(.85); opacity: .55; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { opacity: 0; }
}

.service-card:hover .service-card__icon {
  transform: rotate(-8deg) scale(1.08);
}

.service-card__title {
  position: relative;
  z-index: 1;
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-top: 22px;
  margin-bottom: 12px;
}

.service-card__desc {
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #d8d3ce;
}
.service-card__list i {
  font-size: 13px;
  color: var(--steel-light);
  flex-shrink: 0;
}

.service-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--accent-light);
  transition: gap .3s ease, color .3s ease;
}
.service-card__link--steel { color: var(--steel-light); }
.service-card__link i { font-size: 12px; transition: transform .3s cubic-bezier(.34, 1.15, .28, 1); }
.service-card:hover .service-card__link { gap: 12px; }
.service-card:hover .service-card__link i { transform: translateX(3px); }

/* =========================================================
   BLOCK: .stats-banner
   Deliberately the SAME visual language as .services above:
   var(--ink) base + soft glow blobs + panning grid. No special
   "banner" gradient — this section belongs to the same page.
   ========================================================= */
.stats-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(70px, 9vw, 110px) 0 clamp(76px, 9vw, 116px);
  border-top: 1px solid var(--border);
}

.stats-banner__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.stats-banner__glow--a {
  width: 440px;
  height: 440px;
  top: -180px;
  right: -140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16), transparent 70%);
  animation: svcDrift 14s ease-in-out infinite .6s;
}
.stats-banner__glow--b {
  width: 400px;
  height: 400px;
  bottom: -170px;
  left: -130px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.16), transparent 70%);
  animation: svcDrift 12s ease-in-out infinite;
}

.stats-banner__grid-pattern {
  position: absolute;
  inset: -15% -10%;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
  pointer-events: none;
  animation: svcGridPan 28s linear infinite;
  mask-image: radial-gradient(65% 55% at 50% 30%, #000, transparent);
  -webkit-mask-image: radial-gradient(65% 55% at 50% 30%, #000, transparent);
}

/* ---- head ---- */
.stats-banner__head {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto clamp(44px, 6vw, 62px);
  text-align: center;
}

.stats-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--steel-light);
  opacity: 0;
  transform: translateY(16px);
  animation: svcFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .02s;
}
.stats-banner__kicker i { color: var(--steel); }

.stats-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-top: 18px;
  opacity: 0;
  transform: translateY(16px);
  animation: svcFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .12s;
}
.stats-banner__title-accent {
  background: linear-gradient(90deg, var(--steel-light), var(--steel), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-banner__desc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  animation: svcFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .22s;
}
.stats-banner__desc i { color: var(--accent); }

/* ---- .stats-banner__grid : simple, bulletproof single row ----
   Flexbox with equal flex-basis: all 4 tiles share the row equally
   from tablet width upward, and only wrap when there is genuinely
   not enough space (small phones). No mixed grid-children bug like
   the previous version. */
.stats-banner__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.stats-banner__item {
  position: relative;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: 22px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 65%);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .5);
  opacity: 0;
  transform: translateY(20px) scale(.96);
  animation: svcStatIn .7s cubic-bezier(.16, .84, .44, 1) forwards;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
}
.stats-banner__grid .stats-banner__item:nth-child(1) { animation-delay: .06s; }
.stats-banner__grid .stats-banner__item:nth-child(2) { animation-delay: .16s; }
.stats-banner__grid .stats-banner__item:nth-child(3) { animation-delay: .26s; }
.stats-banner__grid .stats-banner__item:nth-child(4) { animation-delay: .36s; }

@keyframes svcStatIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stats-banner__item:hover {
  transform: translateY(-8px);
}
.stats-banner__grid .stats-banner__item:nth-child(odd):hover {
  box-shadow: 0 30px 70px -20px rgba(255, 106, 61, .3);
}
.stats-banner__grid .stats-banner__item:nth-child(even):hover {
  box-shadow: 0 30px 70px -20px rgba(56, 189, 248, .28);
}

.stats-banner__item-trend {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(74, 222, 128, .14);
  color: #4ade80;
  font-size: 11px;
}

.stats-banner__item-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fff;
  font-size: 20px;
  transition: transform .45s cubic-bezier(.34, 1.15, .28, 1);
}
.stats-banner__item-icon--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 30px -8px rgba(255, 106, 61, .55);
}
.stats-banner__item-icon--steel {
  background: linear-gradient(135deg, var(--steel), var(--steel-deep));
  box-shadow: 0 12px 30px -8px rgba(56, 189, 248, .5);
}
.stats-banner__item-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, .18);
  opacity: 0;
  animation: svcRingPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.stats-banner__grid .stats-banner__item:nth-child(2) .stats-banner__item-icon::after { animation-delay: .4s; }
.stats-banner__grid .stats-banner__item:nth-child(3) .stats-banner__item-icon::after { animation-delay: .8s; }
.stats-banner__grid .stats-banner__item:nth-child(4) .stats-banner__item-icon::after { animation-delay: 1.2s; }
.stats-banner__item:hover .stats-banner__item-icon {
  transform: rotate(-8deg) scale(1.08);
}

.stats-banner__item-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: .3px;
}

.stats-banner__item-label {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .2px;
}

/* =========================================================
   BLOCK: .trust-strip  — closing badge row, same surface language
   ========================================================= */
.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(32px, 4vw, 42px);
  border-top: 1px solid var(--border);
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.trust-strip__item:hover {
  border-color: var(--accent);
  background: rgba(255, 106, 61, .06);
  transform: translateY(-3px);
}

.trust-strip__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-light);
  font-size: 11px;
}

.trust-strip__item-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .2px;
  white-space: nowrap;
}

/* =============================================================================
   RESPONSIVE FINE-TUNING
   ============================================================================= */
@media (max-width: 700px) {
  .stats-banner__item { flex-basis: calc(50% - 11px); }
}

@media (max-width: 480px) {
  .stats-banner__item { flex-basis: 100%; }
  .service-card__inner { padding: 28px 24px; }
  .trust-strip { gap: 10px; }
  .trust-strip__item { padding: 8px 14px; }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  .services__glow--a,
  .services__glow--b,
  .services__grid-pattern,
  .stats-banner__glow--a,
  .stats-banner__glow--b,
  .stats-banner__grid-pattern,
  .service-card__icon::after,
  .stats-banner__item-icon::after {
    animation: none !important;
  }

  .services__kicker,
  .services__title,
  .services__desc,
  .service-card,
  .stats-banner__kicker,
  .stats-banner__title,
  .stats-banner__desc,
  .stats-banner__item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* //////////////////////////////////////////////////////////////////////// */

.team {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 10vw, 130px);
  border-top: 1px solid var(--border);
}

.team__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.team__glow--a {
  width: 420px;
  height: 420px;
  top: -150px;
  left: 50%;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.15), transparent 70%);
  animation: teamDriftCenter 13s ease-in-out infinite;
}
.team__glow--b {
  width: 440px;
  height: 440px;
  bottom: -190px;
  right: -140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%);
  animation: teamDrift 15s ease-in-out infinite 1s;
}
@keyframes teamDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -22px); }
}
@keyframes teamDriftCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-20px); }
}

.team__grid-pattern {
  position: absolute;
  inset: -15% -10%;
  background-image:
    linear-gradient(rgba(255, 106, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 61, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
  pointer-events: none;
  animation: teamGridPan 27s linear infinite;
  mask-image: radial-gradient(65% 55% at 50% 30%, #000, transparent);
  -webkit-mask-image: radial-gradient(65% 55% at 50% 30%, #000, transparent);
}
@keyframes teamGridPan {
  to { background-position: 46px 46px, 46px 46px; }
}

/* ---- floating decorative background icons ---- */
.team__float {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
  animation: teamFloat 10s ease-in-out infinite;
}
.team__float--a { top: 12%;  left: 5%;   font-size: 46px; animation-delay: 0s;  color: rgba(255, 106, 61, .1); }
.team__float--b { top: 68%;  left: 10%;  font-size: 30px; animation-delay: 1.2s; }
.team__float--c { top: 18%;  right: 6%;  font-size: 38px; animation-delay: .6s;  color: rgba(56, 189, 248, .1); }
.team__float--d { bottom: 12%; right: 12%; font-size: 32px; animation-delay: 1.8s; }
@keyframes teamFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(8deg); }
}

/* ---- head ---- */
.team__head {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto clamp(48px, 6vw, 68px);
  text-align: center;
}

.team__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(16px);
  animation: teamFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .02s;
}
.team__kicker i { color: var(--accent); }

.team__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-top: 18px;
  opacity: 0;
  transform: translateY(16px);
  animation: teamFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .12s;
}
.team__title-accent {
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--steel-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.team__desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  animation: teamFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .22s;
}

@keyframes teamFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- grid ---- */
.team__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1180px) {
  .team__grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   BLOCK: .team-card
   ========================================================= */
.team-card {
  position: relative;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .04) 60%, transparent);
  opacity: 0;
  transform: translateY(26px) scale(.98);
  animation: teamCardIn .75s cubic-bezier(.16, .84, .44, 1) forwards;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), background .5s ease;
}
.team__grid .team-card:nth-child(1) { animation-delay: .10s; }
.team__grid .team-card:nth-child(2) { animation-delay: .20s; }
.team__grid .team-card:nth-child(3) { animation-delay: .30s; }
.team__grid .team-card:nth-child(4) { animation-delay: .40s; }

@keyframes teamCardIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.team-card:hover {
  transform: translateY(-10px);
}

/* glowing gradient border ring that fades in on hover */
.team__grid .team-card:nth-child(odd):hover {
  background: linear-gradient(180deg, rgba(255, 106, 61, .7), rgba(255, 106, 61, .15) 65%, transparent);
}
.team__grid .team-card:nth-child(even):hover {
  background: linear-gradient(180deg, rgba(56, 189, 248, .7), rgba(56, 189, 248, .15) 65%, transparent);
}

.team-card__inner {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 22.5px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 65%);
  transition: box-shadow .4s ease;
}
.team__grid .team-card:nth-child(odd):hover .team-card__inner {
  box-shadow: 0 34px 76px -20px rgba(255, 106, 61, .32);
}
.team__grid .team-card:nth-child(even):hover .team-card__inner {
  box-shadow: 0 34px 76px -20px rgba(56, 189, 248, .3);
}

/* ---- photo tile ---- */
.team-card__photo {
  position: relative;
  aspect-ratio: 4 / 4.6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-card__photo--accent {
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 100%);
}
.team-card__photo--steel {
  background: linear-gradient(150deg, var(--steel) 0%, var(--steel-deep) 100%);
}

.team-card__photo::before,
.team-card__photo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .18);
  pointer-events: none;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
}
.team-card__photo::before { width: 130px; height: 130px; }
.team-card__photo::after  { width: 180px; height: 180px; border-color: rgba(255, 255, 255, .1); }
.team-card:hover .team-card__photo::before { transform: scale(1.15); opacity: .7; }
.team-card:hover .team-card__photo::after  { transform: scale(1.25); opacity: .4; }

/* large faint index numeral, echoes .service-card__watermark for consistency */
.team-card__watermark {
  position: absolute;
  top: 8px;
  left: 14px;
  z-index: 1;
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .14);
  user-select: none;
  pointer-events: none;
}

/* diagonal light sweep across the photo on hover */
.team-card__shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left .85s ease;
}
.team-card:hover .team-card__shine {
  left: 140%;
}

.team-card__avatar-icon {
  position: relative;
  z-index: 1;
  font-size: 64px;
  color: rgba(255, 255, 255, .92);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .25));
  transition: transform .5s cubic-bezier(.34, 1.15, .28, 1);
}
.team-card:hover .team-card__avatar-icon {
  transform: scale(1.12) translateY(-6px) rotate(-4deg);
}

/* role-icon chip, top-left */
.team-card__role-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(11, 12, 16, .55);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  transition: transform .4s cubic-bezier(.34, 1.15, .28, 1), background .3s ease;
}
.team-card:hover .team-card__role-chip {
  transform: rotate(-10deg) scale(1.1);
  background: rgba(11, 12, 16, .75);
}

/* experience badge, top-right */
.team-card__exp-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11, 12, 16, .55);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .4s ease, background .3s ease;
}
.team-card__exp-badge i { color: #facc15; font-size: 9px; }
.team-card:hover .team-card__exp-badge {
  transform: translateY(-2px);
  background: rgba(11, 12, 16, .75);
}

/* ---- hover overlay + staggered social icons ---- */
.team-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(7, 8, 11, .92) 0%, rgba(7, 8, 11, .55) 55%, rgba(7, 8, 11, .15) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__socials {
  display: flex;
  gap: 12px;
}

.team-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transform: translateY(14px) scale(.7) rotate(-20deg);
  transition: transform .45s cubic-bezier(.34, 1.15, .28, 1), opacity .35s ease,
              background .3s ease, border-color .3s ease, color .3s ease;
}
.team-card:hover .team-card__social {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}
.team-card:hover .team-card__social:nth-child(1) { transition-delay: .05s; }
.team-card:hover .team-card__social:nth-child(2) { transition-delay: .12s; }
.team-card:hover .team-card__social:nth-child(3) { transition-delay: .19s; }

.team-card__social:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  transform: translateY(-5px) scale(1.12) !important;
}

/* ---- body ---- */
.team-card__body {
  position: relative;
  z-index: 1;
  padding: 24px 22px 26px;
  text-align: center;
}

.team-card__name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.team-card__verified {
  font-size: 13px;
  color: var(--steel-light);
  transition: transform .4s cubic-bezier(.34, 1.15, .28, 1);
}
.team-card:hover .team-card__verified {
  transform: scale(1.25) rotate(10deg);
}

.team-card__role {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.team-card__role--accent { color: var(--accent-light); }
.team-card__role--steel  { color: var(--steel-light); }

/* star rating row */
.team-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 14px;
  font-size: 11px;
  color: #facc15;
}
.team-card__rating span {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.team-card__rating i {
  transition: transform .3s ease;
}
.team-card:hover .team-card__rating i {
  animation: teamStarPop .5s ease forwards;
}
.team-card:hover .team-card__rating i:nth-child(1) { animation-delay: 0s; }
.team-card:hover .team-card__rating i:nth-child(2) { animation-delay: .06s; }
.team-card:hover .team-card__rating i:nth-child(3) { animation-delay: .12s; }
.team-card:hover .team-card__rating i:nth-child(4) { animation-delay: .18s; }
.team-card:hover .team-card__rating i:nth-child(5) { animation-delay: .24s; }
@keyframes teamStarPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.4) rotate(10deg); }
  100% { transform: scale(1); }
}

.team-card__bio {
  position: relative;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
  padding-left: 4px;
}
.team-card__bio i {
  font-size: 10px;
  color: var(--border);
  margin-right: 6px;
  vertical-align: middle;
}

/* skill tag pills */
.team-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.team-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.team-card__tag i { font-size: 10px; color: var(--accent-light); }
.team-card:hover .team-card__tag {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

/* footer actions: Message + Profile */
.team-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.team-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--muted);
  transition: color .3s ease, gap .3s ease;
}
.team-card__link i { font-size: 11px; transition: transform .3s cubic-bezier(.34, 1.15, .28, 1); }
.team-card:hover .team-card__link {
  color: var(--accent-light);
  gap: 9px;
}
.team-card:hover .team-card__link i {
  transform: translateX(2px);
}

.team-card__link--ghost {
  padding-left: 14px;
  border-left: 1px solid var(--border);
}
.team-card:hover .team-card__link--ghost {
  color: var(--steel-light);
}

/* =============================================================================
   RESPONSIVE FINE-TUNING
   ============================================================================= */
@media (max-width: 640px) {
  .team-card__photo { aspect-ratio: 4 / 4; }
  .team-card__body { padding: 20px 18px 22px; }
  .team__float { display: none; }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  .team__glow--a,
  .team__glow--b,
  .team__grid-pattern,
  .team__float {
    animation: none !important;
  }
  .team__kicker,
  .team__title,
  .team__desc,
  .team-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .team-card__social,
  .team-card__rating i {
    transition-delay: 0s !important;
    animation: none !important;
  }
}
/* ////////////////////////////////////////////////////////////////////////////// */
/* =============================================================================
   LUMENAUTO — "CONTACT US" (final section) + SITE FOOTER  ·  FINAL
   100% hand-written CSS. No Tailwind, no external libraries, no JS.
   Load immediately after creative-team.css — reuses the exact same
   tokens (--ink, --accent, --steel, --accent-deep, --steel-deep,
   --shadow-glow-*...) already established by the earlier sections.

   NAMING GUIDE (strict BEM):
     .contact / .contact__*             → section wrapper + heading + layout
     .contact-form / .contact-form__*   → the message form card
     .contact-side                      → right column wrapper
     .contact-info / .contact-info__*   → info card (address/phone/email/hours)
     .contact-directions / __*          → "Get Directions" gradient panel
     .site-footer / .site-footer__*     → page footer
     .back-to-top                       → floating scroll-to-top button
   ============================================================================= */

/* =========================================================
   BLOCK: .contact
   ========================================================= */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 10vw, 130px);
  border-top: 1px solid var(--border);
}

.contact__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.contact__glow--a {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.16), transparent 70%);
  animation: cDrift 13s ease-in-out infinite;
}
.contact__glow--b {
  width: 460px;
  height: 460px;
  bottom: -190px;
  right: -140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%);
  animation: cDrift 15s ease-in-out infinite 1.1s;
}
@keyframes cDrift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -22px); }
}

.contact__grid-pattern {
  position: absolute;
  inset: -15% -10%;
  background-image:
    linear-gradient(rgba(255, 106, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 61, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
  pointer-events: none;
  animation: cGridPan 27s linear infinite;
  mask-image: radial-gradient(65% 55% at 50% 25%, #000, transparent);
  -webkit-mask-image: radial-gradient(65% 55% at 50% 25%, #000, transparent);
}
@keyframes cGridPan {
  to { background-position: 46px 46px, 46px 46px; }
}

/* ---- head ---- */
.contact__head {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto clamp(48px, 6vw, 64px);
  text-align: center;
}

.contact__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(16px);
  animation: cFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .02s;
}
.contact__kicker i { color: var(--accent); }

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-top: 18px;
  opacity: 0;
  transform: translateY(16px);
  animation: cFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .12s;
}
.contact__title-accent {
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--steel-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact__desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0;
  transform: translateY(16px);
  animation: cFadeUp .7s cubic-bezier(.16, .84, .44, 1) forwards .22s;
}

@keyframes cFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- two-column layout ---- */
.contact__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 960px) {
  .contact__layout { grid-template-columns: 1.3fr 1fr; gap: 32px; }
}

/* =========================================================
   BLOCK: .contact-form
   ========================================================= */
.contact-form {
  position: relative;
  border-radius: 26px;
  padding: 1.5px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .04) 60%, transparent);
  opacity: 0;
  transform: translateY(26px);
  animation: cCardIn .75s cubic-bezier(.16, .84, .44, 1) forwards .1s;
  transition: background .5s ease;
}
.contact-form:hover {
  background: linear-gradient(180deg, rgba(255, 106, 61, .55), rgba(255, 106, 61, .1) 65%, transparent);
}

@keyframes cCardIn {
  to { opacity: 1; transform: translateY(0); }
}

.contact-form__inner {
  position: relative;
  overflow: hidden;
  border-radius: 24.5px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 65%);
  padding: clamp(30px, 4vw, 44px);
}

.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 30px -8px rgba(255, 106, 61, .55);
  color: #fff;
  font-size: 20px;
}

.contact-form__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 520px) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}

/* ---- fields ---- */
.contact-form__field {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 14px;
  background: var(--surface-3);
  border: 1.5px solid var(--border);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.contact-form__field i {
  width: 44px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  transition: color .3s ease;
  flex-shrink: 0;
}

.contact-form__field input,
.contact-form__field textarea {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 14px 14px 0;
  font: inherit;
  font-size: 14px;
  color: var(--text);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--muted);
  opacity: .8;
}

.contact-form__field--textarea {
  align-items: flex-start;
}
.contact-form__field--textarea i {
  margin-top: 14px;
}
.contact-form__field--textarea textarea {
  padding-top: 14px;
  padding-right: 14px;
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
  font-family: var(--font-body);
}

.contact-form__field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  transform: translateY(-2px);
}
.contact-form__field:focus-within i {
  color: var(--accent-light);
}

/* ---- custom CSS-only dropdown (replaces the native <select>) ----
   Built on <details>/<summary> so it needs zero JavaScript: clicking
   the summary toggles the [open] attribute natively, and every part
   of the option list — background, icon, hover color, checkmark — is
   fully ours to style, unlike a native <select>'s popup list. */
.select-dd {
  position: relative;
  border-radius: 14px;
  background: var(--surface-3);
  border: 1.5px solid var(--border);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease, background .3s ease;
}
.select-dd:hover {
  border-color: rgba(255, 106, 61, .45);
  background: var(--surface-2);
}
.select-dd[open] {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 18px 40px -18px rgba(255, 106, 61, .5);
}

.select-dd__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  color: var(--text);
  user-select: none;
}
.select-dd__trigger::-webkit-details-marker { display: none; }
.select-dd__trigger::marker { content: ''; }

.select-dd__trigger-icon {
  font-size: 14px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color .3s ease, transform .4s cubic-bezier(.34, 1.15, .28, 1);
}
.select-dd:hover .select-dd__trigger-icon { color: var(--accent-light); }
.select-dd[open] .select-dd__trigger-icon { color: var(--accent-light); transform: rotate(-10deg) scale(1.1); }

.select-dd__label,
.select-dd__label-value {
  flex: 1;
  color: var(--muted);
}
.select-dd__label-value { display: none; color: var(--text); font-weight: 700; }

/* progressive enhancement: browsers supporting :has() swap the summary
   text to the chosen option with zero JavaScript. Older browsers simply
   keep showing the default prompt below — nothing breaks either way. */
.select-dd:has(#inq-general:checked) .select-dd__label   { display: none; }
.select-dd:has(#inq-general:checked) .select-dd__label-value[data-for="general"]   { display: inline; }
.select-dd:has(#inq-sales:checked) .select-dd__label      { display: none; }
.select-dd:has(#inq-sales:checked) .select-dd__label-value[data-for="sales"]       { display: inline; }
.select-dd:has(#inq-service:checked) .select-dd__label    { display: none; }
.select-dd:has(#inq-service:checked) .select-dd__label-value[data-for="service"]   { display: inline; }
.select-dd:has(#inq-financing:checked) .select-dd__label  { display: none; }
.select-dd:has(#inq-financing:checked) .select-dd__label-value[data-for="financing"] { display: inline; }

.select-dd__chevron {
  font-size: 11px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.34, 1.15, .28, 1), color .3s ease;
}
.select-dd:hover .select-dd__chevron { color: var(--accent-light); }
.select-dd[open] .select-dd__chevron {
  transform: rotate(180deg);
  color: var(--accent-light);
}

/* the options panel */
.select-dd__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  padding: 9px;
  border-radius: 16px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface-3) 70%);
  border: 1px solid var(--border);
  box-shadow: 0 26px 56px -12px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 106, 61, .08);
  animation: ddPanelOpen .32s cubic-bezier(.16, .84, .44, 1);
}
@keyframes ddPanelOpen {
  from { opacity: 0; transform: translateY(-10px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.select-dd__option {
  --op-clr: var(--accent);
  --op-clr-dark: var(--accent-dark);
  --op-clr-soft: var(--accent-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px 13px 18px;
  margin-bottom: 3px;
  border-radius: 11px;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-10px);
  animation: ddOptionIn .35s cubic-bezier(.16, .84, .44, 1) forwards;
  transition: background .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}
.select-dd__option:last-child { margin-bottom: 0; }

/* each option is individually themed: accent / steel alternating,
   so hovering different rows visibly shifts to a different color family */
.select-dd__option:nth-child(2) { --op-clr: var(--steel); --op-clr-dark: var(--steel-deep); --op-clr-soft: var(--steel-soft); }
.select-dd__option:nth-child(4) { --op-clr: var(--steel); --op-clr-dark: var(--steel-deep); --op-clr-soft: var(--steel-soft); }

/* staggered slide-in every time the panel opens */
.select-dd__option:nth-child(1) { animation-delay: .04s; }
.select-dd__option:nth-child(2) { animation-delay: .09s; }
.select-dd__option:nth-child(3) { animation-delay: .14s; }
.select-dd__option:nth-child(4) { animation-delay: .19s; }
@keyframes ddOptionIn {
  to { opacity: 1; transform: translateX(0); }
}

/* colored indicator bar, grows in from the left edge on hover */
.select-dd__option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: var(--op-clr);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.34, 1.15, .28, 1);
}
.select-dd__option:hover::before,
.select-dd__option:has(.select-dd__radio:checked)::before {
  transform: scaleY(1);
}

/* soft radial glow that blooms behind the icon on hover */
.select-dd__option::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--op-clr);
  opacity: 0;
  filter: blur(14px);
  transform: translateY(-50%) scale(.6);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.select-dd__option:hover::after {
  opacity: .55;
  transform: translateY(-50%) scale(1.3);
}

.select-dd__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.select-dd__option-icon {
  position: relative;
  z-index: 1;
  width: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color .3s ease, transform .45s cubic-bezier(.34, 1.4, .3, 1);
}

.select-dd__option span {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  transition: color .3s ease, transform .3s ease;
}

.select-dd__check {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--op-clr-soft);
  font-size: 10px;
  color: var(--op-clr);
  opacity: 0;
  transform: scale(.3) rotate(-45deg);
  transition: opacity .3s ease, transform .4s cubic-bezier(.34, 1.4, .3, 1), background .3s ease, color .3s ease;
}

/* every option gets a real, immediate color change on hover:
   background gradient, icon, label text and the check bubble all
   shift together, themed per-row (accent rows vs steel rows) */
.select-dd__option:hover {
  background: linear-gradient(135deg, var(--op-clr), var(--op-clr-dark));
  transform: translateX(5px);
  box-shadow: 0 10px 26px -10px var(--op-clr);
}
.select-dd__option:hover span {
  color: #fff;
  transform: translateX(1px);
}
.select-dd__option:hover .select-dd__option-icon {
  color: #fff;
  transform: scale(1.25) rotate(-10deg);
}
.select-dd__option:hover .select-dd__check {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

/* the currently-selected option stays visibly marked even without hover */
.select-dd__radio:checked ~ span {
  color: var(--op-clr);
  font-weight: 800;
}
.select-dd__radio:checked ~ .select-dd__option-icon {
  color: var(--op-clr);
}
.select-dd__radio:checked ~ .select-dd__check {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.select-dd__option:hover .select-dd__radio:checked ~ span,
.select-dd__option:hover .select-dd__radio:checked ~ .select-dd__option-icon {
  color: #fff;
}

/* ---- submit button ----
   Gradient genuinely SHIFTS color on hover (accent → steel), not just
   a shadow change: background-size 200% + position sweep. */
.contact-form__submit {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 16px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-dark) 35%, var(--accent-dark) 65%, var(--steel) 100%);
  background-size: 240% 100%;
  background-position: 0% 0%;
  color: #fff;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: var(--shadow-glow-sm);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease, background-position .6s cubic-bezier(.2, .8, .2, 1);
}
.contact-form__submit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-lg), 0 0 40px -8px rgba(56, 189, 248, .35);
  background-position: 100% 0%;
}
.contact-form__submit:active {
  transform: translateY(-1px) scale(.97);
}

/* pulsing outer ring, same language as .back-to-top */
.contact-form__submit::before {
  content: '';
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 106, 61, .5);
  opacity: 0;
  pointer-events: none;
}
.contact-form__submit:hover::before {
  opacity: 1;
  animation: cSubmitRing 1.6s ease-out infinite;
}
@keyframes cSubmitRing {
  0%   { transform: scale(.94); opacity: .7; }
  70%  { transform: scale(1.14); opacity: 0; }
  100% { opacity: 0; }
}
/* diagonal shine sweep, same language as the header's .btn */
.contact-form__submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 30%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .7s ease;
}
.contact-form__submit:hover::after { left: 140%; }

.contact-form__submit-arrow {
  font-size: 12px;
  transition: transform .3s cubic-bezier(.34, 1.15, .28, 1);
}
.contact-form__submit:hover .contact-form__submit-arrow {
  transform: translateX(4px);
}

.contact-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}
.contact-form__privacy i {
  color: var(--steel-light);
  font-size: 11px;
}

/* =========================================================
   BLOCK: .contact-side  (right column wrapper)
   ========================================================= */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(26px);
  animation: cCardIn .75s cubic-bezier(.16, .84, .44, 1) forwards .22s;
}

/* =========================================================
   BLOCK: .contact-info
   ========================================================= */
.contact-info {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 65%);
  padding: clamp(28px, 3.6vw, 36px);
}

.contact-info__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 22px;
}
.contact-info__title i { color: var(--accent); font-size: 15px; }

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  margin: -10px;
  border-radius: 14px;
  transition: background .3s ease, transform .3s ease;
}
.contact-info__item:hover {
  background: rgba(255, 255, 255, .03);
  transform: translateX(4px);
}

.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  transition: transform .4s cubic-bezier(.34, 1.15, .28, 1), box-shadow .3s ease;
}
.contact-info__icon--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.contact-info__icon--steel {
  background: linear-gradient(135deg, var(--steel), var(--steel-deep));
}
.contact-info__item:hover .contact-info__icon {
  transform: rotate(-8deg) scale(1.08);
}
.contact-info__item:hover .contact-info__icon--accent {
  box-shadow: 0 0 0 1px rgba(255, 106, 61, .3), 0 0 20px rgba(255, 106, 61, .3);
}
.contact-info__item:hover .contact-info__icon--steel {
  box-shadow: 0 0 0 1px rgba(56, 189, 248, .3), 0 0 20px rgba(56, 189, 248, .3);
}

.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info__text em {
  font-style: normal;
  font-size: 11.5px;
  color: var(--muted);
}
.contact-info__text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* ---- follow row ---- */
.contact-info__follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}

.contact-info__follow-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .3px;
  text-transform: uppercase;
}

.contact-info__follow-icons {
  display: flex;
  gap: 9px;
}
.contact-info__follow-icons a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  transition: color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.34, 1.15, .28, 1), box-shadow .25s ease, background .3s ease;
}
/* every icon gets its own real brand color on hover, not one repeated accent */
.contact-info__follow-icons a:nth-child(1):hover {
  color: #fff; border-color: #1877f2;
  background: linear-gradient(135deg, #1877f2, #0d5cd6);
  box-shadow: 0 8px 20px rgba(24, 119, 242, .4);
}
.contact-info__follow-icons a:nth-child(2):hover {
  color: #fff; border-color: #e1306c;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  box-shadow: 0 8px 20px rgba(225, 48, 108, .4);
}
.contact-info__follow-icons a:nth-child(3):hover {
  color: #fff; border-color: #fff;
  background: linear-gradient(135deg, #2a2530, #000);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
}
.contact-info__follow-icons a:nth-child(4):hover {
  color: #fff; border-color: #ff0000;
  background: linear-gradient(135deg, #ff0000, #b60000);
  box-shadow: 0 8px 20px rgba(255, 0, 0, .4);
}
.contact-info__follow-icons a:hover {
  transform: translateY(-4px) rotate(-8deg) scale(1.08);
}

/* =========================================================
   BLOCK: .contact-directions
   ========================================================= */
.contact-directions {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 24px;
  background: linear-gradient(120deg, var(--accent-dark) 0%, var(--accent) 45%, var(--steel) 100%);
  background-size: 220% 220%;
  background-position: 0% 50%;
  box-shadow: 0 20px 50px -18px rgba(255, 106, 61, .4);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease, background-position .7s ease;
}
.contact-directions:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -16px rgba(56, 189, 248, .45);
  background-position: 100% 50%;
}

.contact-directions__shine {
  position: absolute;
  top: 0;
  left: -40%;
  width: 30%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .8s ease;
}
.contact-directions:hover .contact-directions__shine { left: 140%; }

.contact-directions__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 20px;
  transition: transform .4s cubic-bezier(.34, 1.15, .28, 1);
}
.contact-directions:hover .contact-directions__icon {
  transform: rotate(8deg) scale(1.08);
}

.contact-directions__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.contact-directions__text strong {
  font-size: 15.5px;
  font-weight: 800;
  color: #fff;
}
.contact-directions__text em {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, .85);
}

.contact-directions__arrow {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  transition: transform .3s cubic-bezier(.34, 1.15, .28, 1);
}
.contact-directions:hover .contact-directions__arrow {
  transform: translateX(5px);
}

/* =========================================================
   BLOCK: .site-footer
   ========================================================= */
.site-footer {
  position: relative;
  background: var(--ink);
  padding: 30px 0;
}

.site-footer__rule {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 26px;
  text-align: center;
}
@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__badge {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 12px;
}

.site-footer__copy {
  font-size: 12.5px;
  color: var(--muted);
}

.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  transition: color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.34, 1.15, .28, 1), box-shadow .25s ease, background .3s ease;
}
.site-footer__social a:nth-child(1):hover {
  color: #fff; border-color: #1877f2;
  background: linear-gradient(135deg, #1877f2, #0d5cd6);
  box-shadow: 0 8px 18px rgba(24, 119, 242, .4);
}
.site-footer__social a:nth-child(2):hover {
  color: #fff; border-color: #e1306c;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  box-shadow: 0 8px 18px rgba(225, 48, 108, .4);
}
.site-footer__social a:nth-child(3):hover {
  color: #fff; border-color: #fff;
  background: linear-gradient(135deg, #2a2530, #000);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .5);
}
.site-footer__social a:nth-child(4):hover {
  color: #fff; border-color: #ff0000;
  background: linear-gradient(135deg, #ff0000, #b60000);
  box-shadow: 0 8px 18px rgba(255, 0, 0, .4);
}
.site-footer__social a:hover {
  transform: translateY(-4px) rotate(-8deg) scale(1.08);
}

/* =========================================================
   BLOCK: .back-to-top
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  background-size: 200% 200%;
  background-position: 0% 0%;
  color: #fff;
  font-size: 15px;
  box-shadow: var(--shadow-glow-md);
  transition: transform .3s cubic-bezier(.34, 1.15, .28, 1), box-shadow .3s ease, background .5s ease;
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--steel), var(--accent));
}
.back-to-top::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 106, 61, .4);
  opacity: 0;
  animation: cRingPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes cRingPulse {
  0%   { transform: scale(.85); opacity: .6; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}
.back-to-top:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: var(--shadow-glow-lg);
}

/* =============================================================================
   RESPONSIVE FINE-TUNING
   ============================================================================= */
@media (max-width: 640px) {
  .contact-form__inner { padding: 26px 22px; }
  .contact-info { padding: 24px 20px; }
  .contact-directions { flex-wrap: wrap; }
  .back-to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

/* =============================================================================
   REDUCED MOTION
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  .contact__glow--a,
  .contact__glow--b,
  .contact__grid-pattern,
  .back-to-top::after {
    animation: none !important;
  }
  .contact__kicker,
  .contact__title,
  .contact__desc,
  .contact-form,
  .contact-side {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}