/* ==========================================
   CSS — High-Fidelity Dixie Pacheco Replica
   Extracted from live site computed styles
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES (exact Dixie match)
   ========================================== */
:root {
  --color-primary: #2c2cf3;
  --color-primary-hover: #4040ff;
  --color-dark: #171b27;
  --color-dark-2: #1e2235;
  --color-surface-light: #c9d3d7;
  --color-surface-light-2: #d8d8fd;
  --color-white: #ffffff;
  --color-black: #0a0a0f;
  --color-text: rgb(23, 27, 39);
  --color-text-secondary: rgb(76, 92, 122);
  --color-text-light: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(23, 27, 39, 0.5);
  --color-border-light: rgba(23, 27, 39, 0.08);
  --color-border-dark: rgba(255, 255, 255, 0.1);

  --font-base: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --header-height: 88px;
  --container-max: 1280px;
  --section-pad-y: 120px;
  --section-pad-y-mobile: 72px;
}

/* ==========================================
   LENIS / SMOOTH SCROLL BASE
   ========================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ==========================================
   UTILITY: Section Label (Uppercase Tracking)
   ========================================== */
.label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
}

.label--muted {
  color: var(--color-text-secondary);
}

.label--light {
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   UTILITY: Heading styles
   ========================================== */
.heading-xl {
  font-family: var(--font-base);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.heading-lg {
  font-family: var(--font-base);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-md {
  font-family: var(--font-base);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Italic emphasis (Premium serif feel) */
.heading-xl em,
.heading-lg em,
.heading-md em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
}

/* ==========================================
   BUTTONS (exact Dixie spec)
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(44, 44, 243, 0.25);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
}

.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn--large {
  padding: 18px 40px;
  font-size: 15px;
}

.btn--arrow::after {
  content: '→';
  margin-left: 4px;
  transition: transform 0.2s;
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}

/* ==========================================
   HEADER / NAV (exact: fixed, h88, z50)
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.header__logo-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1.1;
}

.header__logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.2s;
  position: relative;
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--color-text);
}

.header__nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

.header__toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.header__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay a {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 24px;
  display: block;
}

/* ==========================================
   HERO SECTION (sticky, clip-path anims)
   ========================================== */
.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  /* Soft blended background like the reference site */
  background: radial-gradient(circle at 80% 10%, rgba(201, 211, 215, 1) 0%, rgba(220, 228, 231, 1) 50%, rgba(206, 215, 219, 1) 100%);
  overflow: clip;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero__label {
  margin-bottom: 28px;
}

.hero__title {
  margin-bottom: 36px;
}

/* Word reveal animation container */
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.25em;
}

.hero__title .word-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__title .word-inner.is-visible {
  transform: translateY(0);
}

.hero__checks {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__check.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__check svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  /* Green color match */
  flex-shrink: 0;
}

/* Trust cluster */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero__trust.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -10px;
  background: var(--color-surface-light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero__trust-text {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* Hero Visual (right) */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.hero__big-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.hero__big-text span {
  font-size: clamp(200px, 25vw, 360px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.hero__photo-area {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 420px;
}

.hero__photo-placeholder {
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__photo-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

.hero__experience-label {
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}

/* ==========================================
   PUSH-DOWN SECTION (dark italic statement)
   Need a dark section that "pushes" over hero
   ========================================== */
.statement {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.statement__text {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.45);
  max-width: 900px;
  margin: 0 auto 40px;
}

.statement__text strong {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.statement__sub {
  font-size: 16px;
  color: var(--color-text-light);
  margin-top: 16px;
}

/* ==========================================
   AWARDS / LOCAL AUTHORITY (dark grid)
   ========================================== */
.authority {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  padding: var(--section-pad-y) 0;
}

.authority__header {
  text-align: center;
  margin-bottom: 64px;
}

.authority__header .heading-lg {
  color: var(--color-white);
}

.authority__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  overflow: hidden;
}

.authority-card {
  background: var(--color-dark);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
}

.authority-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.authority-card__icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
}

.authority-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.authority-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ==========================================
   SERVICES (light bg, white cards, rounded)
   ========================================== */
.services {
  position: relative;
  z-index: 2;
  background: var(--color-surface-light);
  padding: var(--section-pad-y) 0;
}

.services__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px;
}

.services__subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-top: 20px;
}

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

.service-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 44px 32px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================
   WHO FOR (light bg, icon grid cards)
   ========================================== */
.who-for {
  position: relative;
  z-index: 2;
  background: var(--color-surface-light);
  padding: 0 0 var(--section-pad-y);
}

.who-for__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.who-for__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.who-for__item {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: default;
}

.who-for__item:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.who-for__icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.who-for__item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

/* ==========================================
   PROJECTS (dark, large ghost heading, cards)
   ========================================== */
.projects {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  padding: var(--section-pad-y) 0;
}

.projects__ghost-heading {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 72px;
}

.projects__ghost-heading em {
  font-style: italic;
  font-weight: 400;
}

.project-card {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.project-card:last-child {
  margin-bottom: 0;
}

.project-card__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-dark-2);
}

.project-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-dark-2), rgba(44, 44, 243, 0.08));
  color: var(--color-text-light);
  font-size: 14px;
}

.project-card__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.15;
}

.project-card__info h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1px solid var(--color-border-dark);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   PROCESS (sticky milestone with progress line)
   ========================================== */
.process {
  position: relative;
  z-index: 2;
  background: var(--color-surface-light);
  padding: var(--section-pad-y) 0;
}

.process__header {
  margin-bottom: 80px;
}

.process__layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  position: relative;
}

.process__left {
  display: flex;
  flex-direction: column;
  gap: 200px;
  padding-right: 64px;
}

.process__number {
  font-size: clamp(140px, 20vw, 260px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 0.75;
  text-align: right;
  letter-spacing: -0.04em;
}

/* Milestone progress line */
.process__milestone {
  position: relative;
  width: 1px;
  background: rgba(23, 27, 39, 0.08);
}

.process__milestone-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #10b981, #059669);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.1s linear;
}

.process__milestone-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 27, 39, 0.12);
  left: -3.5px;
  transition: background 0.3s;
}

.process__milestone-dot.is-active {
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.process__right {
  display: flex;
  flex-direction: column;
  gap: 200px;
  padding-left: 64px;
}

.process__step {
  padding-top: 48px;
}

.process__step-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}


.process__step-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

/* ==========================================
   TESTIMONIALS (2x2 grid, light bg)
   ========================================== */
.testimonials {
  position: relative;
  z-index: 2;
  background: var(--color-surface-light);
  padding: var(--section-pad-y) 0;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 44px 36px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.testimonial-card__quote {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-text);
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 500;
}

/* ==========================================
   FAQ (accordion, light bg)
   ========================================== */
.faq {
  position: relative;
  z-index: 2;
  background: var(--color-surface-light);
  padding: var(--section-pad-y) 0;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(23, 27, 39, 0.08);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-base);
  transition: color 0.2s;
}

.faq-item__q:hover {
  color: var(--color-primary);
}

.faq-item__q-num {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-right: 16px;
  min-width: 24px;
}

.faq-item__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
  color: var(--color-text-secondary);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.is-open .faq-item__a {
  max-height: 300px;
}

.faq-item__a p {
  padding: 0 0 24px 40px;
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ==========================================
   CONSULTATION (dark, split layout)
   ========================================== */
.consultation {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  padding: var(--section-pad-y) 0;
}

.consultation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.consultation__value h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
}

.audit-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  transition: all 0.2s;
}

.audit-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.audit-item__icon {
  font-size: 22px;
  flex-shrink: 0;
}

.audit-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}

.audit-item__desc {
  font-size: 13px;
  color: var(--color-text-light);
}

/* Form Panel */
.form-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  border-radius: 20px;
  padding: 44px;
}

.form-panel__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.form-panel__sub {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--color-border-dark);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--color-dark);
  color: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 44px 20px;
}

.form-success.is-active {
  display: block;
}

.form-success__icon {
  font-size: 56px;
  margin-bottom: 14px;
}

.form-success__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.form-success__desc {
  font-size: 14px;
  color: var(--color-text-light);
}

/* ==========================================
   FINAL CTA (dark, centered)
   ========================================== */
.final-cta {
  position: relative;
  z-index: 2;
  background: var(--color-dark);
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.final-cta__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.12;
  max-width: 800px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}

.final-cta__sub {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.final-cta__note {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 14px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  position: relative;
  z-index: 2;
  background: var(--color-dark-2);
  padding: 56px 0 36px;
  border-top: 1px solid var(--color-border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  margin-bottom: 40px;
}

.footer__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 380px;
  margin-top: 14px;
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--color-text-light);
}

.footer__contact-label {
  font-weight: 700;
  color: var(--color-white);
  min-width: 90px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-dark);
}

.footer__copy {
  font-size: 12px;
  color: var(--color-text-light);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 16px;
  transition: all 0.2s;
}

.footer__social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================
   SIDE DOTS NAV
   ========================================== */
.side-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-dots__item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-text-secondary);
  font-size: 16px;
}

.side-dots__item:hover,
.side-dots__item.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.side-dots__item svg {
  width: 16px;
  height: 16px;
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-ping 2s infinite;
}

@keyframes wa-ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  :root {
    --section-pad-y: 80px;
  }

  .container {
    padding: 0 24px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }

  .hero__checks {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .authority__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-for__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .consultation__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .side-dots {
    display: none;
  }

  .process__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process__left {
    display: none;
  }

  .process__milestone {
    display: none;
  }

  .process__right {
    padding-left: 0;
    gap: 72px;
  }

  .process__step::before {
    font-size: 80px;
    font-weight: 800;
    color: rgba(23, 27, 39, 0.05);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
  }

  .process__step:nth-child(1)::before {
    content: '01.';
  }

  .process__step:nth-child(2)::before {
    content: '02.';
  }

  .process__step:nth-child(3)::before {
    content: '03.';
  }

  .process__step:nth-child(4)::before {
    content: '04.';
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-y: 60px;
    --header-height: 64px;
  }

  .header {
    padding: 0 20px;
  }

  .header__nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__checks {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .authority__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .who-for__grid {
    gap: 10px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 28px;
  }

  .who-for__item {
    padding: 24px 14px;
  }

  .form-panel {
    padding: 28px 20px;
  }
}