*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a1f44;
  --bg2: #081a38;
  --bg3: #061125;
  --orange: #ff6b00;
  --orange2: #ff8c00;
  --cream: #f0e8dc;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.07);
  --r: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 22px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    padding 0.3s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px);
  padding: 14px 6vw;
  border-color: var(--line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 44px;
  height: auto;
}

.logo-wordmark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-pill {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
}

.nav-pill:hover {
  background: var(--orange2) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--bg2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--orange);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -60px;
  right: 10%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.18) 0%,
    transparent 70%
  );
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: 20%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.08) 0%,
    transparent 70%
  );
}

.hero-split {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.22);
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
}

.hero-headline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 3.9rem);
  letter-spacing: -0.025em;
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line-inner {
  display: block;
  animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-headline .line:nth-child(2) .line-inner {
  animation-delay: 0.08s;
}

.hero-headline .line:nth-child(3) .line-inner {
  animation-delay: 0.16s;
}

@keyframes lineReveal {
  from {
    transform: translateY(110%);
  }

  to {
    transform: translateY(0);
  }
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  margin-top: 22px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
  animation: fadeInUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-fire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 12px 42px;
  border-radius: 100px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.2s;
  text-transform: uppercase;
}

.btn-fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.35);
  background: var(--orange2);
}

.btn-fire svg {
  transition: transform 0.25s;
}

.btn-fire:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-ghost-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-ghost:hover .btn-ghost-arrow {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
}

.hero-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.proof-avatars {
  display: flex;
}

.proof-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--orange) 0%, #c43200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  margin-left: -9px;
}

.proof-av:first-child {
  margin-left: 0;
}

.proof-text strong {
  display: block;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
}

.proof-text span {
  font-size: 12px;
  color: var(--muted);
}

.proof-divider {
  width: 1px;
  height: 45px;
  background: var(--line);
}

.proof-stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
}

.proof-stat span {
  font-size: 12px;
  color: var(--muted);
}

/* ── HERO RIGHT CARDS ── */
.hero-right {
  position: relative;
  height: 520px;
  animation: fadeInUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hcard {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

/* Dashboard card */
.hcard-dash {
  top: 30px;
  left: 0;
  width: 62%;
  padding: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.hcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hcard-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.hcard-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.hcard-platform {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.hcard-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.hcard-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.hm {
  background: var(--bg3);
  border-radius: 8px;
  padding: 9px 6px;
  text-align: center;
}

.hm-val {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1;
}

.hm-val.green {
  color: #22c55e;
}

.hm-val.orange {
  color: var(--orange);
}

.hm-lab {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
}

.hcard-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
  margin-bottom: 12px;
}

.hchart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 107, 0, 0.18);
}

.hchart-bar--active {
  background: var(--orange);
}

.hcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.hcard-up {
  color: #22c55e;
  font-weight: 700;
}

/* Facebook Ad Card */
.hcard-fb {
  top: 0;
  right: 0;
  width: 41%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hcard-fb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.hcard-fb-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hcard-fb-info strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.hcard-fb-info span {
  font-size: 9px;
  color: var(--muted);
}

.hcard-fb-img {
  height: 88px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.hcard-fb-body {
  padding: 10px 12px 12px;
}

.hcard-fb-url {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}

.hcard-fb-title {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hcard-fb-btn {
  display: inline-block;
  background: #1877f2;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
}

/* Instagram Ad Card */
.hcard-ig {
  bottom: 0;
  right: 16px;
  width: 37%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hcard-ig-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
}

.hcard-ig-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hcard-ig-info strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.hcard-ig-info span {
  font-size: 9px;
  color: var(--muted);
}

.hcard-ig-img {
  height: 76px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ff8800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hcard-ig-body {
  padding: 8px 12px 10px;
}

.hcard-ig-cta {
  display: inline-block;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--white);
}

.hcard-ig-body p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.4;
}

/* ROAS Badge */
.hcard-roas {
  bottom: 64px;
  left: 0;
  width: 52%;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(255, 107, 0, 0.2);
}

.hcard-roas-icon {
  font-size: 26px;
}

.hcard-roas-val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--orange);
  line-height: 1;
}

.hcard-roas-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
  margin-top: 2px;
}

.hcard-roas-lab {
  font-size: 10px;
  color: var(--muted);
}

/* ── STATS BAND ── */
.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg2);
}

.stat-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-align: center;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell:hover {
  background: var(--bg3);
}

.stat-cell::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-cell:hover::before {
  transform: scaleX(1);
}

.stat-cell-contract {
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-align: center;
  border-bottom: 1px solid var(--bg2);
}

.stat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}

.stat-num span {
  color: var(--orange);
}

.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 0;
}

.marquee-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  padding: 24px 0 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  padding: 22px 48px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.marquee-item::after {
  content: "◆";
  font-size: 6px;
  color: var(--orange);
  opacity: 0.5;
}

/* ── SECTION BASE ── */
section {
  padding: 120px 6vw;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sec-tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h2 em {
  font-style: normal;
  color: var(--orange);
}

.sec-sub {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 505px;
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg2);
}

.about-body {
  margin-top: 24px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.about-body p + p {
  margin-top: 16px;
}

.about-tags {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 7px 16px;
  background: var(--orange);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.tag:hover {
  background: rgba(255, 107, 0, 0.1);
}

.about-visual-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-visual-side img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 100px;
}

.about-metric-card {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.about-metric-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateX(6px);
}

.amc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.amc-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1;
}

.amc-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── SERVICES ── */
#services {
  background: var(--bg);
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.svc-card {
  background: var(--bg2);
  padding: 44px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  background: var(--bg3);
}

.svc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 24px;
  display: block;
}

.svc-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: rgba(255, 107, 0, 0.4);
  transition: color 0.3s;
}

.svc-icon svg {
  width: 32px;
  height: 32px;
}

.svc-card:hover .svc-icon {
  color: var(--orange);
}

.svc-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.svc-chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-chip {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 107, 0, 0.08);
  color: rgba(255, 107, 0, 0.7);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ── PROCESS ── */
#process {
  background: var(--bg2);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
  cursor: default;
}

.proc-step:first-child {
  border-top: 1px solid var(--line);
}

.proc-step:hover {
  background: rgba(255, 107, 0, 0.03);
}

.proc-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}

.proc-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  transition: color 0.3s;
}

.proc-step:hover .proc-num {
  color: var(--orange);
}

.proc-body h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.proc-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.proc-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  transform: translateX(-8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.proc-step:hover .proc-tag {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESULTS ── */
#results {
  background: var(--bg);
}

.results-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.res-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.res-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-6px);
}

.res-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.res-bg-num {
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 120px;
  color: rgba(255, 107, 0, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.res-metric {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--orange);
  line-height: 1;
}

.res-label {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 500;
}

.res-desc {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.res-segment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 107, 0, 0.6);
  text-transform: uppercase;
}

.res-segment::before {
  content: "";
  width: 12px;
  height: 1px;
  background: currentColor;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg2);
  overflow: hidden;
}

.testi-top {
  margin-bottom: 72px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.testi-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateY(-4px);
}

.testi-card-top {
  display: flex;
  justify-content: space-between;
}

.testi-quote-mark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 0.8;
  color: var(--orange);
  opacity: 0.15;
  margin-bottom: 12px;
  display: block;
}

.testi-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-style: italic;
}

.testi-author {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #b83200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.testi-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.testi-stars {
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
}

.star {
  color: var(--orange);
  font-size: 16px;
}

/* ── FAQ ── */
#faq {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.faq-header-col h2 {
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-q span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}

.faq-icone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.25s;
}

.faq-item.open .faq-icone {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 24px;
}

/* ── CTA SECTION ── */
#cta-section {
  background: var(--bg);
  padding: 120px 6vw 120px;
}

.cta-block {
  background: var(--bg3);
  border-radius: 24px;
  padding: 90px 8vw;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.cta-block::after {
  content: "C";
  position: absolute;
  right: -20px;
  top: -60px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 320px;
  color: rgba(0, 0, 0, 0.09);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--white);
}

.cta-text p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 505px;
}

.cta-text em {
  color: var(--orange);
}

.btn-cta-white {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--orange);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 18px 38px;
  border-radius: 100px;
  white-space: nowrap;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* ── CONTACT ── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  background: var(--bg2);
}

.contact-info h2 {
  margin-bottom: 0;
}

.contact-info .sec-sub {
  max-width: 600px;
}

.contact-items {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* ── LUCIDE ICON SIZING ── */
.amc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}

.ci-icon svg {
  width: 26px;
  height: 26px;
}

.btn-fire svg.lucide-arrow-right {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-ghost svg.lucide-arrow-down {
  width: 13px;
  height: 13px;
}

.btn-cta-white svg.lucide-arrow-right {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-submit svg.lucide-arrow-right {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.ci strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.ci span {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.2s,
    background 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select option {
  background: #1a1a1a;
}

.btn-submit {
  width: 100%;
  padding: 17px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  text-transform: uppercase;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.35);
  background: var(--orange2);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--orange);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 6vw 36px;
  background: var(--bg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 72px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 44px;
  height: auto;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.75;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 15px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.footer-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-col ul span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  font-size: 0.82rem;
  color: var(--orange);
  text-decoration: none;
}

/* ── WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
  animation: waPulse 2.5s infinite;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
  }

  50% {
    box-shadow: 0 6px 36px rgba(34, 197, 94, 0.7);
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    display: block;
  }

  #hero {
    text-align: center;
    padding: 110px 6vw 60px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-proof {
    justify-content: center;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .res-card-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) {
    border-right: none;
  }

  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .cta-block {
    flex-direction: column;
    text-align: center;
    gap: 48px;
  }
}

/* ── HERO LEAD FORM ── */
.hero-form-wrap {
  height: auto;
  animation: fadeInUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(12px);
}

.hero-form-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.28);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.hero-form-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 7px;
}

.hero-form-card > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hlf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.hlf-group label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hlf-group input,
.hlf-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
  appearance: none;
}

.hlf-group input:focus,
.hlf-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.06);
}

.hlf-group input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.hlf-group select option {
  background: #1a1a1a;
  color: #fff;
}

.hlf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-form-disclaimer {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.28);
}

/* ── LIGHT SECTIONS (bg2 → white) ── */
.stats-band {
  background: var(--bg);
  border-color: var(--bg2);
}

.stats-band .stat-cell {
  border-right-color: var(--bg2);
}

.stats-band .stat-cell:nth-child(1),
.stats-band .stat-cell:nth-child(2) {
  border-bottom-color: var(--bg2);
}

.stats-band .stat-cell:hover {
  background: var(--bg2);
}

.stats-band .stat-num {
  color: var(--orange);
}

.stats-band .stat-num span {
  color: var(--orange);
}

.stats-band .stat-label {
  color: #64748b;
}

#about {
  background: #ffffff;
}

#about h2 {
  color: var(--bg);
}

#about .about-body {
  color: #475569;
}

#about .tag {
  color: var(--white);
}

#about .tag:hover {
  background: var(--orange2);
}

#about .about-metric-card {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.07);
}

#about .about-metric-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

#about .amc-label {
  color: #64748b;
}

#process {
  background: #ffffff;
}

#process h2 {
  color: var(--bg);
}

#process .sec-sub {
  color: #64748b;
}

#process .proc-step {
  border-color: rgba(0, 0, 0, 0.07);
}

#process .proc-step:first-child {
  border-top-color: rgba(0, 0, 0, 0.07);
}

#process .proc-step:hover {
  background: rgba(255, 107, 0, 0.03);
}

#process .proc-body h3 {
  color: var(--bg);
}

#process .proc-body p {
  color: #64748b;
}

#testimonials {
  background: #ffffff;
}

#testimonials h2 {
  color: var(--bg);
}

#testimonials .sec-sub {
  color: #64748b;
}

#testimonials .testi-card {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.07);
}

#testimonials .testi-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
}

#testimonials .testi-text {
  color: #475569;
}

#testimonials .testi-author {
  border-color: rgba(0, 0, 0, 0.08);
}

#testimonials .testi-info strong {
  color: var(--bg);
}

#testimonials .testi-info span {
  color: #94a3b8;
}

#contact {
  background: #ffffff;
}

#contact h2 {
  color: var(--bg);
}

#contact .sec-sub {
  color: #64748b;
}

#contact .ci strong {
  color: var(--bg);
}

#contact .ci span {
  color: #64748b;
}

#contact .contact-form-wrap {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.07);
}

#contact .form-group label {
  color: #475569;
}

#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--bg);
}

#contact .form-group input:focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.03);
}

#contact .form-group input::placeholder,
#contact .form-group textarea::placeholder {
  color: #94a3b8;
}

#contact .form-group select option {
  background: #ffffff;
  color: var(--bg);
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hlf-row {
    grid-template-columns: 1fr;
  }

  .cta-block {
    flex-direction: column;
    text-align: center;
    padding: 64px 6vw;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .stat-cell {
    padding: 30px 16px;
  }

  .hero-form-card {
    padding: 24px;
  }

  #cta-section {
    padding: 80px 5vw;
  }

  .cta-block {
    padding: 48px 22px;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}