/* ═══════════════════════════════════════════════════════════
   LEDGERPRO — DESIGN SYSTEM
   Palette: Copper & Slate
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --copper:       #B87333;
  --copper-light: #D4A574;
  --copper-dark:  #8B5A1E;
  --slate:        #2F3640;
  --slate-light:  #3D4A57;
  --slate-dark:   #1E2730;
  --cream:        #F5F0EB;
  --cream-dark:   #EDE5D8;
  --white:        #FFFFFF;
  --text-dark:    #1A2028;
  --text-mid:     #4A5568;
  --text-light:   #8A9BB0;
  --border:       rgba(184,115,51,0.15);
  --border-light: rgba(255,255,255,0.12);

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
  --gap:         2rem;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(47,54,64,0.08);
  --shadow-md:  0 8px 32px rgba(47,54,64,0.12);
  --shadow-lg:  0 24px 64px rgba(47,54,64,0.16);
  --shadow-copper: 0 8px 32px rgba(184,115,51,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 3px; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: var(--shadow-copper);
}
.btn--primary:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,115,51,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--slate);
  border: 2px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-2px);
}
.btn--service {
  background: color-mix(in srgb, var(--btn-color) 12%, transparent);
  color: var(--btn-color);
  border: 1.5px solid color-mix(in srgb, var(--btn-color) 30%, transparent);
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
}
.btn--service:hover {
  background: var(--btn-color);
  color: white;
  transform: translateY(-2px);
}
.btn--outline-copper {
  background: transparent;
  color: var(--copper);
  border: 2px solid var(--copper);
}
.btn--outline-copper:hover {
  background: var(--copper);
  color: white;
  transform: translateY(-2px);
}
.btn--white {
  background: white;
  color: var(--slate);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--large { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── SECTION HELPERS ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(184,115,51,0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-tag--light {
  color: var(--copper-light);
  background: rgba(212,165,116,0.15);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--copper);
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,0.75); }
.section-header { margin-bottom: 4rem; }
.section-header--light { margin-bottom: 4rem; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.35s var(--ease);
}
.nav.scrolled {
  background: rgba(245,240,235,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.875rem 0;
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate);
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 36px; height: 36px;
  background: var(--copper);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.nav__logo-text strong { color: var(--copper); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
}
.nav__link:hover { color: var(--copper); background: rgba(184,115,51,0.07); }
.nav__link--cta {
  background: var(--copper);
  color: white !important;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav__link--cta:hover {
  background: var(--copper-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-copper);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE5D8 50%, #E8DDD0 100%);
  padding: 7rem 0 4rem;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,115,51,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,115,51,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,115,51,0.18) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(47,54,64,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  background: white;
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: italic;
  color: var(--copper);
}
.hero__headline-accent {
  position: relative;
  display: inline-block;
}
.hero__headline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 0.8s 1s var(--ease-spring) forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__trust-avatars {
  display: flex;
}
.hero__trust-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}
.hero__trust-avatars img:first-child { margin-left: 0; }
.hero__trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.hero__trust-stars { color: #F59E0B; font-size: 0.9rem; }

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__card--main {
  width: 100%;
  max-width: 420px;
  padding: 0;
}
.hero__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--slate);
  color: white;
}
.hero__card-dots { display: flex; gap: 5px; }
.hero__card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.hero__card-dots span:nth-child(1) { background: #FF5F57; }
.hero__card-dots span:nth-child(2) { background: #FFBD2E; }
.hero__card-dots span:nth-child(3) { background: #28CA41; }
.hero__card-title { font-size: 0.85rem; font-weight: 500; margin-left: auto; }
.hero__card-chart { padding: 1.25rem 1.25rem 0.5rem; }
.hero__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}
.hero__bar {
  flex: 1;
  height: var(--h);
  background: var(--cream-dark);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1s var(--ease-spring);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__bar--active { background: linear-gradient(180deg, var(--copper) 0%, var(--copper-light) 100%); }
.hero__bar span {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--text-light);
  white-space: nowrap;
}
.hero__card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: 1.5rem;
}
.hero__stat {
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid var(--cream-dark);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--copper);
}
.hero__stat span { font-size: 1rem; font-weight: 700; color: var(--copper); }
.hero__stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__card--float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 12px;
  animation: float 3s ease-in-out infinite;
  white-space: nowrap;
}
.hero__card--float-1 {
  bottom: 20px; left: -20px;
  animation-delay: 0s;
}
.hero__card--float-2 {
  top: 30px; right: -20px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--copper), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--slate);
  padding: 3rem 0;
}
.stats-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats-bar__item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1rem 2rem;
}
.stats-bar__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
}
.stats-bar__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper-light);
}
.stats-bar__label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stats-bar__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.services__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Service Cards */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 3.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184,115,51,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--reverse { direction: rtl; }
.service-card--reverse > * { direction: ltr; }
.service-card__accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.service-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-card__icon-wrap {
  width: 56px; height: 56px;
  background: var(--icon-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__platform {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.service-card__desc {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-size: 0.97rem;
}
.service-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.service-card__features li svg { flex-shrink: 0; margin-top: 2px; }
.service-card__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.service-card__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--cream);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Service Mockups */
.service-card__visual { display: flex; justify-content: center; }
.service-card__mockup {
  width: 100%;
  max-width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}
.mockup__header {
  background: var(--mh-bg);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}
.mockup__dots { display: flex; gap: 5px; }
.mockup__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.mockup__body { padding: 1.25rem; }
.mockup__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.85rem;
}
.mockup__row:last-of-type { border-bottom: none; }
.mockup__label { color: var(--text-mid); }
.mockup__val { font-weight: 700; color: var(--text-dark); }
.mockup__val--highlight {
  background: color-mix(in srgb, var(--hl) 12%, transparent);
  color: var(--hl);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}
.mockup__bar-wrap {
  height: 6px;
  background: var(--cream-dark);
  border-radius: 3px;
  margin: 1rem 0;
  overflow: hidden;
}
.mockup__bar-fill {
  height: 100%;
  width: var(--fill);
  background: var(--fill-color);
  border-radius: 3px;
  animation: bar-grow 1.5s var(--ease-spring) forwards;
  transform-origin: left;
}
@keyframes bar-grow { from { width: 0; } }
.mockup__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.mockup__tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tag-c);
  background: color-mix(in srgb, var(--tag-c) 10%, transparent);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.mockup__spreadsheet { font-size: 0.78rem; }
.mockup__sheet-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0.25rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
}
.mockup__sheet-row--head {
  font-weight: 700;
  color: var(--text-dark);
  background: var(--cream);
  padding: 0.45rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}
.mockup__sheet-row--total {
  font-weight: 700;
  color: var(--text-dark);
  border-top: 2px solid var(--cream-dark);
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--slate);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,115,51,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-us__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,115,51,0.3);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 52px; height: 52px;
  background: rgba(184,115,51,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.process__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper));
  z-index: 0;
}
.process__step {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  text-align: center;
}
.process__step-num {
  width: 5rem; height: 5rem;
  background: var(--copper);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1.75rem;
  box-shadow: var(--shadow-copper);
  border: 4px solid var(--cream);
}
.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.process__step-content p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.process__step-arrow {
  display: none;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--slate-dark);
}
.testimonials__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testi-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(184,115,51,0.25);
}
.testi-card__stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }
.testi-card__quote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-card__author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(184,115,51,0.3);
}
.testi-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}
.testi-card__author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.testi-card__platform {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.pricing__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  background: var(--slate);
  border-color: var(--copper);
  box-shadow: var(--shadow-copper);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__header { margin-bottom: 2rem; }
.pricing-card__name {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.pricing-card--featured .pricing-card__name { color: var(--copper-light); }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.pricing-card__currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  align-self: flex-start;
  margin-top: 0.5rem;
}
.pricing-card--featured .pricing-card__currency { color: white; }
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.pricing-card--featured .pricing-card__amount { color: white; }
.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-light);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}
.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,0.5); }
.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.65); }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.8); }
.pricing-card__features li svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%);
  padding: 5rem 0;
  overflow: hidden;
}
.cta-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cta-banner__content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.cta-banner__content h2 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.cta-banner__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-banner__decoration { position: absolute; inset: 0; pointer-events: none; }
.cta-banner__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-banner__circle--1 {
  width: 400px; height: 400px;
  top: -200px; left: -100px;
}
.cta-banner__circle--2 {
  width: 300px; height: 300px;
  bottom: -150px; right: -50px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__left .section-title { margin-bottom: 1rem; }
.contact__left p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
}
.contact__info { display: flex; flex-direction: column; gap: 1rem; }
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact__info-item svg { flex-shrink: 0; }

/* Form */
.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all 0.2s var(--ease);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--copper);
  background: white;
  box-shadow: 0 0 0 3px rgba(184,115,51,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}
.contact-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1rem;
}
.contact-form__success.visible { display: flex; }
.contact-form__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}
.contact-form__success p { color: var(--text-mid); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--slate-dark);
  padding: 5rem 0 2rem;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand .nav__logo { margin-bottom: 1.25rem; color: white; }
.footer__brand .nav__logo-text { color: rgba(255,255,255,0.9); }
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s var(--ease);
}
.footer__social a:hover {
  background: var(--copper);
  color: white;
  transform: translateY(-2px);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--copper-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s var(--ease);
}
.footer__legal a:hover { color: var(--copper-light); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { display: none; }
  .hero__content { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__sub { margin: 0 auto 2.25rem; }
  .hero__badge { margin: 0 auto 1.75rem; }

  .service-card { grid-template-columns: 1fr; gap: 2rem; }
  .service-card--reverse { direction: ltr; }
  .service-card__visual { order: -1; }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process__steps::before { display: none; }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: white; padding: 5rem 2rem 2rem; box-shadow: var(--shadow-lg); z-index: 999; gap: 0.25rem; }
  .nav__links.open { display: flex; }
  .nav__link { padding: 0.75rem 1rem; border-radius: 8px; font-size: 1rem; }
  .nav__link--cta { margin-left: 0; margin-top: 1rem; text-align: center; justify-content: center; }
  .nav__hamburger { display: flex; z-index: 1000; }

  .stats-bar__inner { gap: 0; }
  .stats-bar__divider { display: none; }
  .stats-bar__item { min-width: 50%; padding: 1rem; }

  .why-us__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }

  .service-card { padding: 2rem; }
  .service-card__features { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__links { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
}