/* HANSTECH — Light Premium Landing */

:root {
  --blue: #0b3d91;
  --blue-bright: #1a5fd4;
  --blue-soft: #2563eb;
  --red: #e30613;
  --red-deep: #b80510;
  --bg: #f5f7fb;
  --bg-soft: #eef2f8;
  --panel: #ffffff;
  --border: rgba(15, 35, 70, 0.08);
  --border-hi: rgba(15, 35, 70, 0.14);
  --text: #0f1b2d;
  --muted: #5b6b82;
  --white: #fff;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(15, 35, 70, 0.08);
  --shadow-lg: 0 28px 60px rgba(15, 35, 70, 0.12);
  --header-h: 88px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Outfit", "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wa: #25d366;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}

body:hover .cursor-glow { opacity: 1; }

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* Background */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(11, 61, 145, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 145, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% -10%, #000 10%, transparent 70%);
  pointer-events: none;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.bg-orb--a {
  width: 520px;
  height: 520px;
  background: #93c5fd;
  top: -180px;
  right: -120px;
  opacity: 0.35;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.bg-orb--b {
  width: 420px;
  height: 420px;
  background: #fca5a5;
  bottom: 8%;
  left: -140px;
  opacity: 0.22;
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}

.bg-orb--c {
  width: 280px;
  height: 280px;
  background: #bfdbfe;
  top: 48%;
  left: 42%;
  opacity: 0.2;
}

@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-30px, 40px); }
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(15, 35, 70, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem));
}

.logo {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
}

.logo__img {
  height: 64px;
  width: auto;
  max-width: min(280px, 46vw);
  object-fit: contain;
  background: transparent;
}

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

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--blue);
  background: rgba(11, 61, 145, 0.06);
}

.nav__mobile-wa { display: none; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.icon-btn svg { width: 18px; height: 18px; }

.icon-btn:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.3);
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, filter 0.22s, background 0.22s;
  white-space: nowrap;
}

.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn--sm { font-size: 0.86rem; padding: 0.62rem 1.1rem; }
.btn--lg { font-size: 1rem; padding: 1rem 1.55rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, #ff2a36 50%, var(--red-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(227, 6, 19, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(227, 6, 19, 0.36);
  filter: brightness(1.04);
}

.btn--pulse { position: relative; }

.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(227, 6, 19, 0.35);
  animation: btn-ring 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes btn-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 0; }
}

.btn--glass {
  background: var(--panel);
  border: 1px solid var(--border-hi);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(15, 35, 70, 0.04);
}

.btn--glass:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 61, 145, 0.2);
}

.btn--wa {
  background: var(--wa);
  color: #05351a;
}

.btn--wa:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 2.5rem) 0 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 75% 35%, rgba(37, 99, 235, 0.1), transparent),
    radial-gradient(ellipse 40% 30% at 15% 70%, rgba(227, 6, 19, 0.06), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #15803d;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.28);
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
}

.badge__live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: live 2s infinite;
}

@keyframes live {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.hero__title-line { display: block; }

.text-gradient {
  display: block;
  background: linear-gradient(105deg, var(--blue) 0%, var(--blue-bright) 45%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-shine {
  color: var(--blue-soft);
}

.hero__lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 35, 70, 0.04);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* Hero stage */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-stage {
  position: relative;
  width: min(420px, 92vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-stage__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}

.hero-stage__ring--1 {
  inset: 0;
  border-top-color: rgba(37, 99, 235, 0.55);
  border-right-color: rgba(227, 6, 19, 0.35);
  animation: spin 14s linear infinite;
}

.hero-stage__ring--2 {
  inset: 18px;
  border-bottom-color: rgba(227, 6, 19, 0.4);
  border-left-color: rgba(37, 99, 235, 0.25);
  animation: spin 20s linear infinite reverse;
}

.hero-stage__core {
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  display: grid;
  place-items: center;
  overflow: visible;
  z-index: 2;
}

.hero-stage__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(15, 35, 70, 0.12));
}

.orbit-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
  color: var(--text);
}

.orbit-chip span { font-size: 0.95rem; }
.orbit-chip--1 { top: 6%; left: -2%; animation-delay: 0s; }
.orbit-chip--2 { top: 18%; right: -8%; animation-delay: 0.8s; }
.orbit-chip--3 { bottom: 16%; right: -4%; animation-delay: 1.5s; }
.orbit-chip--4 { bottom: 8%; left: -6%; animation-delay: 2.2s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Stats bar */
.hero__stats-bar {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-hi);
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--panel);
  padding: 0.95rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee__track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: block;
  flex-shrink: 0;
  opacity: 0.75;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 6.5rem 0;
  position: relative;
}

.section--tight { padding-bottom: 4rem; }

.section--alt {
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(37, 99, 235, 0.06), transparent),
    linear-gradient(180deg, transparent, rgba(238, 242, 248, 0.9), transparent);
}

.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.25rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.section__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1rem;
}

.section__title--left { text-align: left; }

.section__title em {
  font-style: normal;
  background: linear-gradient(105deg, var(--blue), var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(15, 35, 70, 0.04);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-soft), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card[data-accent="red"]::before {
  background: linear-gradient(90deg, var(--red), transparent);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 61, 145, 0.15);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { opacity: 1; }

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-soft);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.service-card[data-accent="red"] .service-card__icon {
  background: rgba(227, 6, 19, 0.07);
  color: var(--red);
  border-color: rgba(227, 6, 19, 0.14);
}

.service-card__icon svg { width: 28px; height: 28px; }

.service-card__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(15, 27, 45, 0.15);
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
  flex-grow: 1;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.service-card li {
  font-size: 0.84rem;
  color: #6b7c93;
  padding-left: 1rem;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-soft);
}

.service-card[data-accent="red"] li::before { background: var(--red); }

.service-card__cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-soft);
  margin-top: auto;
  transition: color 0.2s, letter-spacing 0.2s;
}

.service-card[data-accent="red"] .service-card__cta { color: var(--red); }

.service-card:hover .service-card__cta {
  letter-spacing: 0.02em;
  color: var(--text);
}

/* Showcase */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.showcase__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  box-shadow: var(--shadow);
  background: var(--panel);
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.showcase__item:hover img { transform: scale(1.05); }

.showcase__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 27, 45, 0.82));
  pointer-events: none;
}

.showcase__caption {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
}

.showcase__caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.15rem;
}

.showcase__caption span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15, 35, 70, 0.04);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow);
}

.step__n {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 8px 20px rgba(11, 61, 145, 0.22);
}

.step h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.step__line {
  width: 100%;
  height: 2px;
  margin-top: 2.4rem;
  background: linear-gradient(90deg, transparent, var(--blue-soft), var(--red), transparent);
  opacity: 0.4;
  min-width: 12px;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.about__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}

.about__glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), rgba(227, 6, 19, 0.08), transparent 70%);
  filter: blur(16px);
}

.about__logo {
  position: relative;
  width: min(360px, 88%);
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 18px 36px rgba(15, 35, 70, 0.12));
  z-index: 1;
}

.about__float {
  position: absolute;
  z-index: 2;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  animation: float 5.5s ease-in-out infinite;
}

.about__float strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.about__float span {
  font-size: 0.8rem;
  color: var(--muted);
}

.about__float--1 { top: 12%; left: 0; }
.about__float--2 { bottom: 14%; right: 0; animation-delay: 1s; }

.about__content p {
  color: var(--muted);
  margin-bottom: 0.95rem;
  font-size: 1.02rem;
}

.about__content strong { color: var(--text); }

.pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.9rem 1rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(15, 35, 70, 0.03);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.pillar:hover {
  border-color: rgba(11, 61, 145, 0.18);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

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

.pillar__icon--red {
  background: rgba(227, 6, 19, 0.08);
  color: var(--red);
  border: 1px solid rgba(227, 6, 19, 0.14);
}

.pillar__icon--blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-soft);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.pillar strong {
  display: block;
  font-size: 0.96rem;
  color: var(--text);
}

.pillar span {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Contact panel */
.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  padding: 2.75rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(227, 6, 19, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(37, 99, 235, 0.1), transparent 55%),
    var(--panel);
  box-shadow: var(--shadow-lg);
}

.contact-panel__left h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.contact-panel__left p {
  color: var(--muted);
  margin-bottom: 1.35rem;
  max-width: 34rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-benefits li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
}

.contact-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.contact-panel__right {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.contact-link:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow);
  background: #fff;
}

.contact-link--wa:hover { border-color: rgba(37, 211, 102, 0.45); }
.contact-link--ig:hover { border-color: rgba(225, 48, 108, 0.4); }

.contact-link__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-link__icon svg { width: 26px; height: 26px; }

.contact-link--wa .contact-link__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #16a34a;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.contact-link--ig .contact-link__icon {
  background: linear-gradient(45deg, rgba(240, 148, 51, 0.12), rgba(188, 24, 136, 0.12));
  color: #e1306c;
  border: 1px solid rgba(225, 48, 108, 0.2);
}

.contact-link small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-link strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.contact-link span {
  font-size: 0.84rem;
  color: var(--muted);
}

.contact-link__go {
  margin-left: auto;
  font-size: 1.35rem;
  color: var(--muted);
  transition: transform 0.25s, color 0.25s;
}

.contact-link:hover .contact-link__go {
  transform: translateX(4px);
  color: var(--text);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  background: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  height: 56px;
  width: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0.9rem;
  box-shadow: none;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__col h4 {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--blue); }

.footer__bottom {
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.82rem;
  color: #8a9bb0;
}

/* FAB */
.fab {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 90;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}

.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; }

.fab__tip {
  position: absolute;
  right: calc(100% + 10px);
  white-space: nowrap;
  background: var(--text);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.fab:hover .fab__tip {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .logo__img {
    height: 56px;
    max-width: min(240px, 42vw);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { order: -1; min-height: 340px; }
  .hero-stage { width: min(320px, 82vw); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; }
  .showcase__item { min-height: 240px; }
  .showcase__item--wide { min-height: 280px; }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .step__line { display: none; }

  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .section__title--left { text-align: center; }
  .about__content { text-align: center; }
  .about__content .eyebrow { display: block; }
  .pillars { text-align: left; }

  .contact-panel { grid-template-columns: 1fr; padding: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .header-wa { display: none; }
  .icon-btn { display: none; }

  .logo__img {
    height: 52px;
    max-width: min(220px, 58vw);
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.2rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 0.95rem 1rem;
    border-radius: 12px;
  }

  .nav__mobile-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.95rem;
    border-radius: 999px;
    background: var(--wa);
    color: #05351a;
    font-weight: 700;
  }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 1.25rem); }
  .section { padding: 4.25rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stats-bar { justify-content: space-around; text-align: center; gap: 1.25rem; }
  .hero__ctas .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .fab__tip { display: none; }
  .orbit-chip { font-size: 0.72rem; padding: 0.4rem 0.65rem; }
  .orbit-chip--2 { right: -2%; }
  .orbit-chip--3 { right: 0; }
}

@media (max-width: 420px) {
  .container, .showcase { width: calc(100% - 1.4rem); }
  .contact-panel { padding: 1.4rem; }
  .contact-link { flex-wrap: wrap; }
  .contact-link__go { display: none; }
  .fab { width: 56px; height: 56px; bottom: 1rem; right: 1rem; }
  .logo__img { height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-stage__ring, .orbit-chip, .about__float, .badge__live,
  .btn--pulse::after, .marquee__track, .bg-orb--a, .bg-orb--b {
    animation: none !important;
  }
}
