/* ═══════════════════════════════════════════
   QURAIX Solutions — Professional Theme
   ═══════════════════════════════════════════ */

:root {
  --brand: #581824;
  --brand-dark: #3d0812;
  --brand-light: #7a2840;
  --brand-50: #faf5f6;
  --brand-100: #f3e8eb;
  --ink: #0f0f0f;
  --ink-2: #525252;
  --ink-3: #737373;
  --line: #ebe4e7;
  --white: #ffffff;
  --surface: #f8f8f8;
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.65);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 2px 8px rgba(15, 15, 15, 0.04), 0 12px 32px rgba(88, 24, 36, 0.06);
  --shadow-lg: 0 8px 24px rgba(15, 15, 15, 0.06), 0 32px 64px rgba(88, 24, 36, 0.1);
  --shadow-float: 0 4px 6px rgba(0, 0, 0, 0.02), 0 20px 50px rgba(88, 24, 36, 0.14);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 76px;
  --header-zone: 92px;
  --header-float-max: 1080px;
  --header-progress: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(88, 24, 36, 0.06), transparent),
    var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--brand); color: white; }

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

/* ── Typography helpers ── */
.label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}
.label--light { color: rgba(255,255,255,.55); }

.section { padding: 100px 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--brand-dark); color: white; }

.section-head { max-width: 560px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.15; margin-bottom: 16px;
}
.section-head p { font-size: 17px; color: var(--ink-2); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  transition: all .3s var(--ease);
  border: 1.5px solid transparent;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(88, 24, 36, 0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 24, 36, 0.35);
}
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--white { background: white; color: var(--brand-dark); border-color: white; }
.btn--white:hover { background: var(--brand-50); transform: translateY(-1px); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .5; pointer-events: none; }

.btn--whatsapp {
  margin-top: 24px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* WhatsApp floating chat */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  overflow: visible;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.4),
    0 12px 32px rgba(18, 140, 126, 0.25);
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo);
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.45),
    0 16px 40px rgba(18, 140, 126, 0.3);
}

.whatsapp-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-fab__icon svg {
  width: 26px;
  height: 26px;
}

.whatsapp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.35);
  animation: whatsappPulse 2.5s var(--ease-out-quart) infinite;
  pointer-events: none;
}

.whatsapp-fab__text {
  white-space: nowrap;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 640px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    padding: 0;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .whatsapp-fab__text {
    display: none;
  }

  .whatsapp-fab__icon {
    width: 30px;
    height: 30px;
  }

  .whatsapp-fab__icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab__pulse {
    animation: none;
  }
}

/* ═══ NAVBAR: smooth full-width → floating morph ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  --header-bar-max: 100%;
}

.header__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out-quart);
}

.header__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header__shell {
  pointer-events: auto;
  width: 100%;
  min-height: var(--header-zone);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(var(--header-progress) * 14px);
  padding-inline: calc(var(--header-progress) * clamp(14px, 3.5vw, 40px));
}

.header__bar {
  width: 100%;
  max-width: var(--header-bar-max);
  margin-inline: auto;
  background: #fff;
  background: color-mix(in srgb, #fff calc(96% + var(--header-progress) * 4%), transparent);
  border: 1px solid color-mix(in srgb, var(--line) calc(var(--header-progress) * 100%), transparent);
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--header-progress) * 999px);
  box-shadow:
    0 calc(var(--header-progress) * 4px) calc(var(--header-progress) * 12px) rgba(88, 24, 36, 0.04),
    0 calc(var(--header-progress) * 16px) calc(var(--header-progress) * 48px) rgba(88, 24, 36, 0.1);
  backdrop-filter: blur(calc(var(--header-progress) * 18px)) saturate(calc(1 + var(--header-progress) * 0.4));
  -webkit-backdrop-filter: blur(calc(var(--header-progress) * 18px)) saturate(calc(1 + var(--header-progress) * 0.4));
  transform: translateY(calc(var(--header-progress) * 1px));
  contain: layout style;
}

.header__inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: calc(var(--header-h) - var(--header-progress) * 12px);
  padding-inline: calc(24px - var(--header-progress) * 6px);
}

.header.is-floating .header__inner {
  width: 100%;
  max-width: none;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 10;
  min-width: 0;
  height: 22px;
}

.header__logo-img {
  display: block;
  height: 22px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  transform: scale(calc(1 - var(--header-progress) * 0.08));
  transform-origin: left center;
  will-change: transform;
}

@media (max-width: 480px) {
  .header__inner {
    width: min(100% - 32px, var(--max));
    padding-inline: calc(16px - var(--header-progress) * 4px);
  }

  .header__logo {
    height: 20px;
  }

  .header__logo-img {
    height: 20px;
    max-width: 105px;
    transform: scale(calc(1 - var(--header-progress) * 0.06));
  }
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 10;
  border-radius: 12px;
  transition: background 0.2s;
}

.header__burger:hover {
  background: var(--brand-50);
}

.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header__nav {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: var(--header-zone);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  padding: 28px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-float);
  z-index: 1002;
}

@media (max-width: 1023px) {
  .header__nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition:
      opacity 0.45s var(--ease-out-quart),
      transform 0.5s var(--ease-out-expo),
      visibility 0s linear 0.5s;
  }

  .header__nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition:
      opacity 0.45s var(--ease-out-quart),
      transform 0.5s var(--ease-out-expo),
      visibility 0s linear 0s;
  }
}

.header__menu { display: flex; flex-direction: column; gap: 4px; }

.header__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: background 0.35s var(--ease-out-quart), color 0.35s var(--ease-out-quart), transform 0.35s var(--ease-out-quart);
}

.header__link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.has-dropdown.is-open > .header__link svg { transform: rotate(180deg); }
.header__link:hover {
  color: var(--brand);
  background: var(--brand-50);
}

.header__link.is-active {
  color: var(--brand);
  background: var(--brand-50);
}

.dropdown { display: none; padding: 8px 0 8px 16px; }
.has-dropdown.is-open > .dropdown { display: block; }

.dropdown__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  margin-bottom: 8px;
}

.dropdown__heading svg { width: 18px; height: 18px; }

.dropdown__sub-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.dropdown__sub-btn svg { width: 12px; height: 12px; }
.dropdown__group.is-open .dropdown__sub-btn { color: var(--brand); }
.dropdown__group-label { display: none; }
.dropdown__links { display: none; padding: 4px 0 8px 12px; margin: 0; list-style: none; }
.dropdown__group.is-open .dropdown__links { display: block; }
.dropdown__links a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--ink-3);
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.dropdown__links a:hover { color: var(--brand); background: var(--brand-50); }

.dropdown__project {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.2s;
}

.dropdown__project:hover { background: var(--brand-50); }
.dropdown__project img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.dropdown__project strong { display: block; font-size: 13px; }
.dropdown__project small { font-size: 11px; color: var(--ink-3); }
.dropdown__more { display: block; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--brand); }

.header__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.header__actions-divider {
  display: none;
}

.header__portal {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
}

.header__portal:hover {
  color: var(--brand);
  background: var(--brand-50);
}

@media (min-width: 1024px) {
  .header__burger { display: none; }

  .header__nav {
    display: flex !important;
    position: static;
    inset: auto;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 8px;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .header__actions {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding-top: 0;
    border-top: none;
  }

  .header__actions-divider {
    display: block;
    width: 1px;
    height: 22px;
    background: var(--line);
    margin: 0 4px;
  }

  .header__menu {
    flex-direction: row;
    align-items: center;
    gap: 2px;
    margin-right: auto;
    margin-left: 24px;
  }

  .header__link {
    padding: 9px 15px;
    font-size: 13px;
    letter-spacing: -0.01em;
  }

  .header__portal { padding: 8px 14px; }

  .has-dropdown { position: relative; }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-float);
    padding: 20px;
    z-index: 50;
    animation: dropIn 0.3s var(--ease);
  }

  /* Invisible bridge so the menu stays open while moving the cursor down */
  .dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }

  .has-dropdown:hover > .dropdown,
  .has-dropdown.is-open > .dropdown,
  .has-dropdown:focus-within > .dropdown { display: block; }

  .dropdown--mega {
    width: min(1100px, 94vw);
    left: 50%;
    transform: translateX(-50%);
    padding: 24px;
    animation: dropInMega 0.3s var(--ease);
  }

  .dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
  }

  @media (min-width: 1200px) {
    .dropdown__grid { grid-template-columns: repeat(6, 1fr); }
  }

  .dropdown__col { border-top: 2px solid var(--brand-100); padding-top: 16px; }

  .dropdown__sub-btn { display: none; }

  .dropdown__group-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 14px 0 6px;
  }

  .dropdown__group:first-of-type .dropdown__group-label { margin-top: 8px; }

  .dropdown__links {
    display: block !important;
    padding: 0;
  }

  .dropdown__links li { margin: 0; }

  .dropdown__links a {
    padding: 5px 8px;
    font-size: 12px;
    line-height: 1.4;
  }

  .dropdown__all {
    display: block;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
    text-align: center;
    text-decoration: none;
    transition: color 0.2s;
  }

  .dropdown__all:hover { color: var(--brand-light); }

  .dropdown--projects { width: 320px; left: -40px; padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .header__shell,
  .header__bar,
  .header__inner,
  .header__logo-img,
  .header__link,
  .header__nav {
    transition: none !important;
  }
}

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

@keyframes dropInMega {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%); }
}

main { padding-top: var(--header-zone); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-zone));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(45,6,16,.94) 0%, rgba(88,24,36,.82) 45%, rgba(45,6,16,.75) 100%);
}

.hero__content {
  position: relative; z-index: 2;
  display: grid; gap: 48px; align-items: center;
  padding: 90px 0;
}
.hero__badge {
  display: inline-block; padding: 6px 14px; margin-bottom: 20px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: .18em; color: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
}
.hero__text h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.08;
  margin-bottom: 20px;
}
.hero__text h1 span { color: #f0c4cc; }
.hero__text p { font-size: 18px; color: rgba(255,255,255,.82); max-width: 500px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero__trust {
  display: flex; gap: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__trust strong { display: block; font-size: 24px; font-weight: 800; }
.hero__trust span { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 500; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 88px;
}

.hero__orbit {
  --orbit-r: clamp(168px, 30vw, 248px);
  position: relative;
  width: min(600px, 96vw);
  height: min(600px, 96vw);
  margin: 0 auto;
}

.hero__orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--orbit-r) * 2 + 24px);
  height: calc(var(--orbit-r) * 2 + 24px);
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__orbit-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.hero__orbit-track {
  position: absolute;
  inset: 0;
  z-index: 3;
  --track-rot: 0;
  transform: rotate(0deg);
  will-change: transform;
}

.hero__orbit.is-spinning .hero__orbit-track {
  transition: transform 4.8s cubic-bezier(0.14, 0.92, 0.18, 1);
}

.hero__logo-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(230px, 34vw);
  height: min(230px, 34vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: visible;
  box-shadow: none;
  line-height: 0;
  background: transparent;
}

.hero__spin-btn {
  pointer-events: auto;
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  transition: transform 0.35s var(--ease-out-expo);
}

.hero__spin-btn:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.hero__spin-btn:active {
  transform: translate(-50%, -50%) scale(0.97);
}

.hero__spin-btn.is-spinning {
  pointer-events: none;
}

.hero__spin-btn.is-spinning .hero__spin-label {
  animation: spinLabelPulse 0.6s ease-in-out infinite alternate;
}

.hero__logo-card::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

.hero__spin-label {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(88, 24, 36, 0.75);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.hero__orbit-hint {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  white-space: nowrap;
}

.hero__orbit-result {
  position: absolute;
  left: 50%;
  bottom: -72px;
  transform: translateX(-50%);
  width: min(100%, 320px);
  padding: 12px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-dark);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
  z-index: 8;
}

.hero__orbit-result strong {
  display: block;
  font-size: 16px;
  color: var(--brand);
  margin-bottom: 2px;
}

.hero__orbit-result a {
  display: inline-flex;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__orbit-result.is-visible {
  animation: resultPop 0.5s var(--ease-out-expo);
}

.hero__logo-img {
  display: block;
  width: 78%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.45));
  animation: cardFloat 6s ease-in-out infinite;
  pointer-events: none;
}

.hero__spin-btn.is-spinning .hero__logo-img {
  animation: spinLogoPulse 0.8s ease-in-out infinite alternate;
}

.hero__float {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--orbit-angle) * 1deg))
    translateY(calc(-1 * var(--orbit-r)));
}

.hero__float-inner {
  width: max-content;
  max-width: 118px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--brand-dark);
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(88, 24, 36, 0.12);
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: rotate(calc(var(--orbit-angle) * -1deg - var(--track-rot, 0) * 1deg));
  animation: none;
  transition: transform 0.25s var(--ease-out-quart), background-color 0.25s var(--ease-out-quart);
}

.hero__orbit.is-paused .hero__logo-img {
  animation: none;
}

.hero__float.is-winner .hero__float-inner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  transform: rotate(calc(var(--orbit-angle) * -1deg - var(--track-rot, 0) * 1deg)) scale(1.12);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.45),
    0 12px 32px rgba(88, 24, 36, 0.35);
  animation: winnerPop 0.6s var(--ease-out-expo);
}

.hero__float.is-winner .hero__float-inner small {
  color: rgba(255, 255, 255, 0.82);
}

.hero__orbit.is-spinning .hero__float-inner {
  animation: none;
}

.hero__float-inner span {
  display: block;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.hero__float-inner small {
  display: block;
  font-size: 10px;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.3;
}

@media (min-width: 960px) {
  .hero__orbit {
    width: min(640px, 48vw);
    height: min(640px, 48vw);
    --orbit-r: clamp(228px, 19vw, 272px);
  }

  .hero__logo-card {
    width: min(260px, 22vw);
    height: min(260px, 22vw);
  }

  .hero__float-inner {
    max-width: 128px;
    padding: 12px 16px;
  }

  .hero__float-inner span { font-size: 14px; }
  .hero__float-inner small { font-size: 11px; }
}

@media (max-width: 639px) {
  .hero__orbit {
    width: min(400px, 96vw);
    height: min(400px, 96vw);
    --orbit-r: 152px;
    margin-bottom: 48px;
  }

  .hero__logo-card {
    width: min(160px, 42vw);
    height: min(160px, 42vw);
  }

  .hero__orbit-hint {
    bottom: -32px;
    font-size: 11px;
    white-space: normal;
    max-width: 260px;
  }

  .hero__orbit-result {
    bottom: -88px;
  }

  .hero__float-inner {
    max-width: 96px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .hero__float-inner span { font-size: 11px; }
  .hero__float-inner small { font-size: 9px; }
}

.hero__float:hover .hero__float-inner {
  transform: rotate(calc(var(--orbit-angle) * -1deg - var(--track-rot, 0) * 1deg)) scale(1.08);
  background: rgba(252, 245, 247, 0.98);
}

@media (min-width: 960px) {
  .hero__content { grid-template-columns: 1.05fr .95fr; gap: 64px; }
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spinLogoPulse {
  from { transform: scale(1); filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.45)); }
  to { transform: scale(1.06); filter: drop-shadow(0 32px 64px rgba(255, 255, 255, 0.2)); }
}

@keyframes spinLabelPulse {
  from { opacity: 0.75; }
  to { opacity: 1; }
}

@keyframes winnerPop {
  0% { scale: 1; }
  50% { scale: 1.14; }
  100% { scale: 1.12; }
}

@keyframes resultPop {
  from { opacity: 0; transform: translateX(-50%) translateY(8px) scale(0.96); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* ═══ MARQUEE ═══ */
.marquee {
  background: var(--brand); color: white;
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
}
.marquee__track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap; opacity: .85;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ PROCESS TIMELINE ═══ */
.process-timeline {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .process-timeline { grid-template-columns: repeat(4,1fr); } }

.process-step {
  position: relative; background: white;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: transform .3s, box-shadow .3s;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-step__num {
  font-size: 32px; font-weight: 800; color: var(--brand-100);
  line-height: 1; margin-bottom: 12px;
  transition: color .3s;
}
.process-step:hover .process-step__num { color: var(--brand); }
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* ═══ UNIQUE TOOLS ═══ */
.unique-grid {
  display: grid; gap: 32px;
}
@media (min-width: 900px) { .unique-grid { grid-template-columns: 1fr 1fr; } }

.unique-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 36px;
  backdrop-filter: blur(8px);
}
.unique-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.unique-card > p { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 24px; }
.unique-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.5); }
.unique-note a { color: #f0c4cc; font-weight: 600; }

.finder-form label, .tracker-form label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 8px; color: rgba(255,255,255,.8);
}
.finder-form select, .tracker-form input {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: white; font: inherit; font-size: 14px;
}
.finder-form select option { color: var(--ink); }
.finder-result {
  margin-top: 20px; padding: 20px;
  background: rgba(255,255,255,.08); border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  animation: dropIn .4s var(--ease);
}
.finder-result h3 { font-size: 18px; margin-bottom: 8px; }
.finder-result p { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 14px; }

.tracker-row { display: flex; gap: 10px; }
.tracker-row input { flex: 1; }
.track-results { margin-top: 16px; }
.track-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
}
.track-item:last-child { border: none; }
.track-status {
  padding: 4px 10px; border-radius: 100px; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.15);
}

/* ═══ STATS STRIP ═══ */
.stats-strip {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-light) 100%);
  color: white;
  padding: 56px 0;
}
.stats-strip__grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
@media (min-width: 768px) { .stats-strip__grid { grid-template-columns: repeat(4,1fr); } }
.stats-strip__item { text-align: center; }
.stats-strip__item strong { display: block; font-size: 32px; font-weight: 800; }
.stats-strip__item span { font-size: 13px; opacity: .75; }

.footer__logo { display: inline-flex; margin-bottom: 4px; }
.footer__logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

/* ═══ SERVICES ═══ */
.services-grid { display: grid; gap: 32px; }
.service-card {
  display: grid;
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  border-color: var(--brand-100);
}
.service-card__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-card__body { padding: 32px; }
.service-card__icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand); border-radius: 10px; margin-bottom: 16px;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__body h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.service-card__body p { color: var(--ink-2); font-size: 15px; margin-bottom: 16px; }
.service-card__body ul li {
  font-size: 14px; color: var(--ink-2); padding: 6px 0 6px 20px;
  position: relative;
}
.service-card__body ul li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.service-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  transition: transform 0.25s var(--ease);
}
.service-card:hover .service-card__link { transform: translateX(4px); }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.services-grid--6 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .services-grid--6 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1100px) { .services-grid--6 { grid-template-columns: repeat(3,1fr); } }

/* Service catalog */
.catalog {
  margin-top: 72px;
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--brand-50) 0%, rgba(255, 255, 255, 0.6) 100%);
  border: 1px solid var(--brand-100);
  box-shadow: var(--shadow);
}

.catalog__head {
  max-width: 520px;
  margin: 0 auto 48px;
  text-align: center;
}

.catalog__head h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.catalog__head p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
}

.catalog__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .catalog { padding: 64px; }
  .catalog__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.catalog__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.03);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.4s var(--ease-out-quart);
}

.catalog__card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-100);
  box-shadow: var(--shadow-lg);
}

.catalog__card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.catalog__card-top:hover { opacity: 0.85; }

.catalog__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
  color: var(--brand);
}

.catalog__icon svg {
  width: 22px;
  height: 22px;
}

.catalog__card-meta h4 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2px;
}

.catalog__count {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-50);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.catalog__card-desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.catalog__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.catalog__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 10px;
  transition:
    background 0.3s var(--ease-out-quart),
    color 0.3s var(--ease-out-quart),
    transform 0.3s var(--ease-out-quart);
}

.catalog__list a span {
  flex: 1;
  line-height: 1.4;
}

.catalog__list a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  color: var(--brand);
  transition:
    opacity 0.3s var(--ease-out-quart),
    transform 0.3s var(--ease-out-expo);
}

.catalog__list a:hover {
  background: var(--brand-50);
  color: var(--brand);
  transform: translateX(2px);
}

.catalog__list a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.catalog__foot {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--brand-100);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.catalog__foot p {
  font-size: 15px;
  color: var(--ink-2);
}

@media (max-width: 639px) {
  .catalog {
    margin-top: 48px;
    padding: 28px 20px;
    border-radius: var(--radius);
  }
}

/* ═══ PROJECTS ═══ */
.projects-grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3,1fr); } }

.project-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-100);
}
.project-card__img { position: relative; overflow: hidden; }
.project-card__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .5s var(--ease); }
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card__img .chip { position: absolute; top: 14px; left: 14px; }
.project-card__body { padding: 24px; }
.project-card__body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.project-card__body p { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

.chip {
  display: inline-block; padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; background: var(--brand); color: white;
}
.chip--outline { background: transparent; border: 1px solid var(--line); color: var(--ink-2); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* ═══ ABOUT ═══ */
.about-split { display: grid; gap: 48px; }
.about-split__text h2 { font-size: clamp(26px,3.5vw,36px); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 16px; }
.about-split__text p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 24px; }
.about-split__photo { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 16/10; object-fit: cover; margin-top: 24px; }
.about-cards { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 24px;
  transition: background .3s;
}
.about-card:hover { background: rgba(255,255,255,.1); }
.about-card__org { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px; display: block; }
.about-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.about-card p { font-size: 14px; color: rgba(255,255,255,.65); }
@media (min-width: 900px) { .about-split { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ═══ CONTACT ═══ */
.contact-split { display: grid; gap: 48px; }
.contact-split__info h2 { font-size: clamp(26px,3.5vw,36px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
.contact-split__info p { color: var(--ink-2); font-size: 16px; }
.contact-split__info a { color: var(--brand); font-weight: 600; }
.check-list { margin-top: 24px; }
.check-list li {
  padding: 10px 0 10px 28px; position: relative;
  font-size: 15px; color: var(--ink-2);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0;
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand); border-radius: 6px;
  font-size: 11px; font-weight: 800;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 16px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(88,24,36,.1);
}
.form-field textarea { resize: vertical; min-height: 120px; }
@media (min-width: 900px) { .contact-split { grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; } }

.alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; }
.alert--success { background: #ecfdf5; color: #065f46; }
.alert--error { background: #fef2f2; color: #991b1b; }

/* ═══ FOOTER ═══ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 0; background: var(--surface); }
.footer__grid {
  display: grid; gap: 40px; padding-bottom: 48px;
  grid-template-columns: 1.5fr repeat(3,1fr);
}
.footer__brand p { margin-top: 16px; font-size: 14px; color: var(--ink-3); max-width: 280px; line-height: 1.7; }
.footer__links h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: var(--ink); }
.footer__links a { display: block; font-size: 14px; color: var(--ink-3); padding: 4px 0; transition: color .2s; }
.footer__links a:hover { color: var(--brand); }
.footer__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  padding: 20px 0; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }

/* ═══ Animations ═══ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * .1s);
}
.reveal--d1 { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__orb, .hero__showcase-card { animation: none; }
  .btn:hover, .service-card:hover, .project-card:hover { transform: none; }
}

/* ═══ SERVICE DETAIL PAGE ═══ */
.svc-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.svc-hero--compact {
  min-height: 420px;
  align-items: flex-end;
}

.svc-hero--compact .svc-hero__content {
  padding-top: 120px;
  padding-bottom: 56px;
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 12, 20, 0.55) 0%,
    rgba(45, 12, 20, 0.88) 100%
  );
}

.svc-hero__content {
  position: relative;
  z-index: 2;
  padding: 140px 0 72px;
  color: #fff;
}

.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.svc-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.svc-breadcrumb a:hover { color: #fff; }

.svc-hero__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.svc-hero__icon svg { width: 28px; height: 28px; }

.svc-hero__text h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 720px;
}

.svc-hero__tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.svc-overview__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .svc-overview__grid { grid-template-columns: 1.2fr 0.8fr; }
}

.svc-overview__text h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.svc-overview__text p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 24px;
}

.svc-highlights li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 15px;
  color: var(--ink-2);
}

.svc-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.svc-stats {
  display: grid;
  gap: 16px;
}

.svc-stat {
  padding: 28px 32px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.35s var(--ease);
}

.svc-stat:hover { transform: scale(1.03); }

.svc-stat strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.svc-stat span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.svc-steps {
  display: grid;
  gap: 24px;
}

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

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

.svc-step {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.svc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.svc-step__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 16px;
}

.svc-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.svc-step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

.svc-gallery__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .svc-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

.svc-gallery__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.4s var(--ease-out-expo);
}

.svc-gallery__item:hover { transform: scale(1.03); }

.svc-gallery__item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.svc-gallery__item figcaption {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.svc-benefits__grid {
  display: grid;
  gap: 24px;
}

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

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

.svc-benefit {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.svc-benefit:hover {
  transform: scale(1.03);
  border-color: var(--brand-100);
}

.svc-benefit__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: 10px;
  margin-bottom: 16px;
}

.svc-benefit__icon svg { width: 22px; height: 22px; }

.svc-benefit h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-benefit p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

.svc-related__grid {
  display: grid;
  gap: 24px;
}

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

@media (min-width: 1100px) {
  .svc-related__grid { grid-template-columns: repeat(3, 1fr); }
}

.svc-related__card {
  display: grid;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.svc-related__card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.svc-related__card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.svc-related__body {
  padding: 24px;
}

.svc-related__body > span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: 8px;
  margin-bottom: 12px;
}

.svc-related__body > span svg { width: 18px; height: 18px; }

.svc-related__body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-related__body p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-cta__box {
  text-align: center;
  padding: 64px 48px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
}

.svc-cta__box h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.svc-cta__box p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.svc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
