/* ============================================================
   ZENIVMOR HUB - DESIGN SYSTEM
   Maximalist Color concept - Energy Retail
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  /* Color Palette */
  --color-ink: #0f1117;
  --color-surface: #f5f3ee;
  --color-surface-pure: #fafaf8;

  /* Section Colors - Maximalist */
  --color-hero: #0f1117;
  --color-services: #f5f3ee;
  --color-about: #1a3a2a;
  --color-process: #1c1c3a;
  --color-features: #f0a500;
  --color-swiper: #f5f3ee;
  --color-cta: #d93f0b;
  --color-contact-preview: #1c1c3a;

  /* Brand Colors */
  --color-primary: #f0a500;
  --color-primary-dark: #c88800;
  --color-secondary: #d93f0b;
  --color-accent: #3ec6a0;
  --color-deep: #1c1c3a;
  --color-forest: #1a3a2a;

  /* Text */
  --color-text-on-dark: #f0ede6;
  --color-text-on-light: #1a1a24;
  --color-text-muted: #7a7a8a;
  --color-text-muted-light: #a8a89a;

  /* Spacing */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 5vw, 4rem);
  --space-2xl: clamp(3rem, 8vw, 7rem);

  /* Border Radius Scale */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows - Layered */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 30px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 50px rgba(0, 0, 0, 0.16), 0 8px 20px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-primary:
    0 8px 25px rgba(240, 165, 0, 0.35), 0 3px 8px rgba(240, 165, 0, 0.2);
  --shadow-secondary:
    0 8px 25px rgba(217, 63, 11, 0.35), 0 3px 8px rgba(217, 63, 11, 0.2);

  /* Nav */
  --nav-height: 70px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: var(--color-surface-pure);
  color: var(--color-text-on-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---- TYPOGRAPHY ---- */
.text-display {
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.text-body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}
.text-caption {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- LAYOUT ---- */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}
.space-section {
  padding-block: var(--space-2xl);
}

/* ---- ATOMIC SURFACES ---- */
.surface {
  background: var(--color-surface-pure);
}
.surface-raised {
  background: var(--color-surface-pure);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}
.surface-inset {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

/* ---- ACTIONS ---- */
.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.6em;
  background: var(--color-primary);
  color: var(--color-ink);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  transition:
    background var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
  white-space: nowrap;
}
.action-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(240, 165, 0, 0.45),
    0 4px 10px rgba(240, 165, 0, 0.25);
}
.action-primary:active {
  transform: translateY(0);
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.6em;
  background: transparent;
  color: inherit;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  border-radius: var(--radius-full);
  border: 2px solid currentColor;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast);
}
.action-ghost:hover {
  background: currentColor;
  color: var(--color-ink);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}
.nav-root.nav-scrolled {
  background: rgba(15, 17, 23, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
  gap: var(--space-md);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo {
  width: 32px;
  height: 32px;
}
.nav-brand-text {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text-on-dark);
  letter-spacing: -0.01em;
}
.nav-brand-text em {
  font-style: normal;
  color: var(--color-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(240, 237, 230, 0.8);
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  position: relative;
  font-size: 0.85rem;
  padding: 0.6em 1.3em;
}
.nav-cta-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 9px;
  height: 9px;
  background: var(--color-secondary);
  border-radius: 50%;
  border: 2px solid var(--color-ink);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-on-dark);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

/* ---- MOBILE TABBAR ---- */
.mobile-tabbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 17, 23, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(240, 165, 0, 0.2);
  padding: 0.3rem 0 env(safe-area-inset-bottom);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.mobile-tabbar .tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 0.25rem;
  color: rgba(240, 237, 230, 0.55);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  transition: color var(--transition-base);
  flex: 1;
}
.mobile-tabbar .tab-item i {
  font-size: 1.1rem;
}
.mobile-tabbar .tab-item.active {
  color: var(--color-primary);
}
.mobile-tabbar .tab-item:hover {
  color: rgba(240, 237, 230, 0.9);
}
.mobile-tabbar {
  display: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.section-hero {
  background: var(--color-hero);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(240, 165, 0, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(217, 63, 11, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 80%,
      rgba(62, 198, 160, 0.04) 0%,
      transparent 35%
    );
  pointer-events: none;
}
.hero-animated-icon {
  position: absolute;
  right: clamp(2rem, 8vw, 6rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.energy-pulse {
  position: relative;
  z-index: 2;
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(240, 165, 0, 0.4),
    0 0 80px rgba(240, 165, 0, 0.15);
  animation: float-pulse 4s ease-in-out infinite;
}
.energy-pulse i {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-ink);
}
@keyframes float-pulse {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-8px);
  }
}
.energy-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 165, 0, 0.2);
  animation: ring-expand 3s ease-out infinite;
}
.ring-1 {
  width: 140px;
  height: 140px;
  animation-delay: 0s;
}
.ring-2 {
  width: 200px;
  height: 200px;
  animation-delay: 0.8s;
}
.ring-3 {
  width: 280px;
  height: 280px;
  animation-delay: 1.6s;
}
@keyframes ring-expand {
  0% {
    opacity: 0.5;
    transform: scale(0.85);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text-block {
  max-width: 600px;
}
.hero-eyebrow {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.hero-headline {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}
.headline-line-1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-text-on-dark);
  font-weight: 700;
}
.headline-line-2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--color-primary);
  font-weight: 600;
}
.headline-line-3 {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  color: rgba(240, 237, 230, 0.6);
  font-weight: 500;
}
.hero-sub {
  color: rgba(240, 237, 230, 0.75);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta {
  font-size: 1rem;
  padding: 0.85em 2em;
}
.action-ghost.hero-ghost-link {
  color: var(--color-text-on-dark);
  border-color: rgba(240, 237, 230, 0.3);
}

.hero-visual {
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img {
  width: 100%;
  height: clamp(300px, 45vw, 520px);
  object-fit: cover;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 165, 0, 0.3);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.section-services {
  background: var(--color-services);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.section-label {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-sm);
}
.section-intro {
  color: var(--color-text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
.service-card {
  padding: var(--space-lg);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.06);
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(240, 165, 0, 0.12),
    rgba(217, 63, 11, 0.08)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
  color: var(--color-secondary);
}
.service-title {
  font-family: "Lora", serif;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-on-light);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  transition: gap var(--transition-base);
}
.service-link:hover {
  gap: 0.7em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about {
  background: var(--color-forest);
  color: var(--color-text-on-dark);
}
.section-about .section-label {
  color: var(--color-accent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: clamp(320px, 45vw, 520px);
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-forest);
}
.about-content .text-display {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: var(--space-md);
}
.about-content .text-body {
  color: rgba(240, 237, 230, 0.8);
  margin-bottom: var(--space-sm);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-block: var(--space-lg);
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(240, 237, 230, 0.9);
}
.about-feature i {
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.section-process {
  background: var(--color-deep);
  color: var(--color-text-on-dark);
}
.section-process .section-label {
  color: var(--color-accent);
}
.section-process .section-title {
  color: #fff;
}
.section-process .section-intro {
  color: rgba(240, 237, 230, 0.7);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(240, 165, 0, 0.3);
  transform: translateY(-4px);
}
.step-number {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.step-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.step-title {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-sm);
}
.process-step .text-body {
  color: rgba(240, 237, 230, 0.7);
  font-size: 0.88rem;
}
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 165, 0, 0.4);
  font-size: 1.2rem;
  padding-top: 3rem;
  flex-shrink: 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.section-features {
  background: var(--color-features);
}
.section-features .section-label {
  color: var(--color-ink);
  opacity: 0.7;
}
.section-features .section-title {
  color: var(--color-ink);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.feature-box {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  transition:
    background var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
  backdrop-filter: blur(4px);
}
.feature-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  font-size: 1.6rem;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}
.feature-title {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}
.feature-box .text-body {
  color: rgba(15, 17, 23, 0.8);
  font-size: 0.88rem;
}

/* ============================================================
   SWIPER SECTION
   ============================================================ */
.section-swiper {
  background: var(--color-swiper);
}
.section-swiper .section-label {
  color: var(--color-secondary);
}
.retail-swiper {
  padding-bottom: 3rem !important;
}
.swiper-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  height: 100%;
}
.swiper-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.swiper-card-content {
  padding: var(--space-md);
}
.swiper-card-content h4 {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-on-light);
}
.swiper-card-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary) !important;
}
.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  background: var(--color-secondary);
}
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.cta-text {
  max-width: 580px;
}
.section-cta .section-label {
  color: rgba(255, 255, 255, 0.7);
}
.cta-text .text-display {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: var(--space-sm);
}
.cta-text .text-body {
  color: rgba(255, 255, 255, 0.85);
}
.cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}
.cta-btn {
  background: #fff;
  color: var(--color-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-btn:hover {
  background: var(--color-ink);
  color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cta-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ============================================================
   CONTACT PREVIEW SECTION
   ============================================================ */
.section-contact-preview {
  background: var(--color-deep);
  color: var(--color-text-on-dark);
}
.section-contact-preview .section-label {
  color: var(--color-accent);
}
.section-contact-preview .section-title {
  color: #fff;
}
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}
.contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(240, 165, 0, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}
.contact-item .text-body {
  color: rgba(240, 237, 230, 0.8);
}
.contact-item a {
  color: rgba(240, 237, 230, 0.8);
}
.contact-item a:hover {
  color: var(--color-primary);
}

/* ---- FORMS ---- */
.compact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(240, 237, 230, 0.7);
  letter-spacing: 0.05em;
}
.form-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.7em 1em;
  color: var(--color-text-on-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
  width: 100%;
  outline: none;
  resize: vertical;
}
.form-input::placeholder {
  color: rgba(240, 237, 230, 0.35);
}
.form-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15);
}
.form-textarea {
  min-height: 80px;
}
.form-row-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(240, 237, 230, 0.65);
  cursor: pointer;
  flex: 1;
}
.form-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
}
.form-submit {
  padding: 0.7em 1.5em;
  font-size: 0.88rem;
}
.form-required {
  color: var(--color-secondary);
}

/* ---- CONTACT PAGE FORMS ---- */
.contact-full-form .form-label {
  color: var(--color-text-on-light);
  opacity: 0.75;
}
.contact-full-form .form-input {
  background: #f5f3ee;
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--color-text-on-light);
}
.contact-full-form .form-input::placeholder {
  color: rgba(26, 26, 36, 0.4);
}
.contact-full-form .form-input:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.12);
}
.contact-full-form .form-checkbox-label {
  color: var(--color-text-muted);
}
.contact-full-form .form-checkbox-label a {
  color: var(--color-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-root {
  background: #0a0c12;
  color: rgba(240, 237, 230, 0.6);
  margin-top: auto;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding-block: var(--space-xl) var(--space-lg);
  width: min(900px, 100% - 2rem);
  margin-inline: auto;
}
.footer-logo {
  width: 36px;
  height: 36px;
  margin-inline: auto;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(240, 237, 230, 0.5);
  margin-top: 0.4rem;
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(240, 237, 230, 0.6);
  transition: color var(--transition-base);
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-legal-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(240, 237, 230, 0.4);
  transition: color var(--transition-base);
}
.footer-legal-links a:hover {
  color: rgba(240, 237, 230, 0.8);
}
.footer-contact-row {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(240, 237, 230, 0.5);
}
.footer-contact-row i {
  color: var(--color-primary);
  margin-right: 0.3rem;
}
.footer-contact-row a {
  color: rgba(240, 237, 230, 0.5);
}
.footer-contact-row a:hover {
  color: var(--color-primary);
}
.footer-legal-info {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-md);
  width: 100%;
  text-align: center;
}
.footer-legal-info p {
  font-size: 0.78rem;
  color: rgba(240, 237, 230, 0.3);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(240, 237, 230, 0.25);
}

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
}
.page-hero--promise {
  background: var(--color-deep);
  color: var(--color-text-on-dark);
}
.page-hero--calendar {
  background: var(--color-forest);
  color: var(--color-text-on-dark);
}
.page-hero--clients {
  background: var(--color-features);
}
.page-hero--contact {
  background: var(--color-secondary);
  color: var(--color-text-on-dark);
}
.page-hero--legal {
  background: var(--color-hero);
  color: var(--color-text-on-dark);
}

.page-hero-content {
  max-width: 680px;
}
.page-hero .text-display {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: var(--space-sm);
}
.page-hero--promise .text-display {
  color: #fff;
}
.page-hero--calendar .text-display {
  color: #fff;
}
.page-hero--clients .text-display {
  color: var(--color-ink);
}
.page-hero--contact .text-display {
  color: #fff;
}
.page-hero--legal .text-display {
  color: #fff;
}
.page-hero-sub {
  opacity: 0.8;
}
.page-hero--clients .page-hero-sub {
  color: var(--color-text-on-light);
}
.legal-date {
  color: rgba(240, 237, 230, 0.5);
  margin-top: 0.5rem;
}

/* ============================================================
   PROMISE PAGE
   ============================================================ */
.section-promise-pillars {
  background: var(--color-surface-pure);
}
.promise-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: start;
  padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.promise-pillar:last-child {
  border-bottom: none;
}
.promise-pillar--alt {
  background: var(--color-deep);
  color: var(--color-text-on-dark);
  margin-inline: calc(-1 * (100vw - 1200px) / 2 - 1rem);
  padding-inline: calc((100vw - 1200px) / 2 + 1rem);
}
.pillar-number {
  font-family: "Lora", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  width: clamp(80px, 10vw, 120px);
  text-align: center;
}
.pillar-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.pillar-title {
  font-family: "Lora", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text-on-light);
}
.promise-pillar--alt .pillar-title {
  color: #fff;
}
.promise-pillar--alt .text-body {
  color: rgba(240, 237, 230, 0.8);
}
.pillar-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.pillar-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.pillar-detail-item i {
  color: var(--color-accent);
}
.pillar-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-lg);
  height: 280px;
  object-fit: cover;
}

.section-promise-detail {
  background: var(--color-features);
}
.section-promise-detail .section-title {
  color: var(--color-ink);
}
.section-promise-detail .section-label {
  color: var(--color-ink);
  opacity: 0.6;
}
.audit-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
}
.audit-detail-card {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}
.audit-detail-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.35);
}
.audit-icon {
  font-size: 1.6rem;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}
.audit-detail-card h4 {
  font-family: "Lora", serif;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-ink);
}
.audit-detail-card .text-body {
  color: rgba(15, 17, 23, 0.75);
  font-size: 0.88rem;
}

/* ============================================================
   CALENDAR PAGE
   ============================================================ */
.section-calendar-intro {
  background: var(--color-surface-pure);
}
.calendar-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.calendar-intro-text .text-display {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-md);
}
.calendar-phases {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.calendar-phase-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-surface-pure);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.calendar-phase-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.phase-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3em 0.8em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}
.phase-badge--1 {
  background: rgba(240, 165, 0, 0.15);
  color: #c88800;
}
.phase-badge--2 {
  background: rgba(217, 63, 11, 0.12);
  color: #c03510;
}
.phase-badge--3 {
  background: rgba(62, 198, 160, 0.15);
  color: #2a9a7a;
}
.phase-badge--4 {
  background: rgba(28, 28, 58, 0.1);
  color: var(--color-deep);
}
.phase-badge--5 {
  background: rgba(240, 165, 0, 0.08);
  color: var(--color-primary-dark);
}
.phase-info h4 {
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.phase-info .text-body {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.section-timeline {
  background: var(--color-deep);
  color: var(--color-text-on-dark);
}
.section-timeline .section-title {
  color: #fff;
}
.section-timeline .section-label {
  color: var(--color-accent);
}
.section-timeline .section-intro {
  color: rgba(240, 237, 230, 0.7);
}
.timeline-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.timeline-quarter {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.tq-label {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  text-align: center;
}
.tq-bar {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tq-bar--1 {
  background: rgba(240, 165, 0, 0.2);
  border: 1px solid rgba(240, 165, 0, 0.3);
}
.tq-bar--2 {
  background: rgba(217, 63, 11, 0.2);
  border: 1px solid rgba(217, 63, 11, 0.3);
}
.tq-bar--3 {
  background: rgba(62, 198, 160, 0.2);
  border: 1px solid rgba(62, 198, 160, 0.3);
}
.tq-bar--4 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.tq-activity {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240, 237, 230, 0.85);
  text-align: center;
}
.timeline-note {
  text-align: center;
  color: rgba(240, 237, 230, 0.45);
  margin-top: var(--space-md);
}

.section-calendar-faq {
  background: var(--color-surface-pure);
}
.section-calendar-faq .section-title {
  color: var(--color-text-on-light);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-q {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-on-light);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.faq-q i {
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.faq-a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.section-sectors {
  background: var(--color-surface-pure);
}
.section-sectors .section-title {
  color: var(--color-text-on-light);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}
.sector-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.sector-img-wrap {
  overflow: hidden;
  height: 200px;
}
.sector-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.sector-card:hover .sector-img {
  transform: scale(1.04);
}
.sector-content {
  padding: var(--space-md);
}
.sector-icon {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.sector-content h3 {
  font-family: "Lora", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-on-light);
}
.sector-content .text-body {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.sector-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}
.sector-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25em 0.7em;
  background: rgba(240, 165, 0, 0.1);
  color: var(--color-primary-dark);
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 165, 0, 0.2);
}

.section-approach {
  background: var(--color-features);
}
.section-approach .text-display {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}
.section-approach .text-body {
  color: rgba(15, 17, 23, 0.8);
  margin-bottom: var(--space-sm);
}
.approach-content {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--space-xl);
}
.approach-img-wrap {
  max-width: 800px;
  margin-inline: auto;
}
.approach-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.section-contact-main {
  background: var(--color-surface-pure);
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-details-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: var(--space-lg);
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.contact-detail-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(240, 165, 0, 0.12),
    rgba(217, 63, 11, 0.08)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}
.contact-detail-item .text-body {
  font-size: 0.9rem;
}
.contact-detail-item a {
  color: var(--color-secondary);
}
.contact-detail-item a:hover {
  color: var(--color-primary-dark);
}
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-form-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: var(--space-sm);
}
.contact-form-main > .text-body {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.section-thanks {
  background: var(--color-surface-pure);
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
}
.thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  max-width: 520px;
  margin-inline: auto;
}
.thanks-heading {
  text-align: center;
}
.thanks-icon-wrap {
  margin-bottom: var(--space-md);
}
.thanks-big-icon {
  font-size: 4rem;
  color: var(--color-accent);
  filter: drop-shadow(0 4px 12px rgba(62, 198, 160, 0.4));
}
.thanks-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-sm);
}
.thanks-sub {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.thanks-home-btn {
  margin-inline: auto;
}

.thanks-timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}
.thanks-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  width: 100%;
}
.ttl-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ttl-icon--done {
  background: var(--color-accent);
  color: #fff;
}
.ttl-icon--current {
  background: var(--color-primary);
  color: var(--color-ink);
  box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.2);
}
.ttl-icon--upcoming {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.3);
}
.ttl-content {
  flex: 1;
  padding-bottom: var(--space-md);
}
.ttl-content h4 {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.thanks-timeline-item--upcoming .ttl-content h4 {
  color: rgba(0, 0, 0, 0.4);
}
.ttl-content .text-caption {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.ttl-connector {
  width: 2px;
  height: 24px;
  margin-left: 19px;
  margin-block: 4px;
  border-radius: 2px;
}
.ttl-connector--done {
  background: var(--color-accent);
}
.ttl-connector--upcoming {
  background: rgba(0, 0, 0, 0.1);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.section-legal {
  background: var(--color-surface-pure);
}
.legal-container {
  max-width: 820px;
}
.legal-intro {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.legal-section:last-child {
  border-bottom: none;
}
.legal-summary-box {
  background: rgba(240, 165, 0, 0.08);
  border: 1px solid rgba(240, 165, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.88rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-on-light);
}
.legal-summary-box strong {
  color: var(--color-primary-dark);
}
.legal-h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-text-on-light);
  margin-bottom: var(--space-md);
}
.legal-h3 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-on-light);
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}
.legal-section .text-body {
  color: var(--color-text-on-light);
  opacity: 0.85;
  margin-bottom: var(--space-sm);
}
.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-on-light);
  opacity: 0.85;
}
.legal-list li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.legal-table th {
  background: var(--color-ink);
  color: var(--color-text-on-dark);
  padding: 0.7em 1em;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.legal-table td {
  padding: 0.7em 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: var(--color-text-on-light);
  opacity: 0.85;
}
.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}
.legal-date-footer {
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}
.legal-section a {
  color: var(--color-secondary);
  text-decoration: underline;
}

/* ---- TERMS ACCORDION ---- */
.legal-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.legal-accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.legal-accordion-summary {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: #fff;
  font-size: 0.9rem;
  color: var(--color-text-on-light);
}
.legal-accordion-badge {
  background: var(--color-primary);
  color: var(--color-ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2em 0.7em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-accordion-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  background: #fafaf8;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.legal-accordion-body .legal-h2 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.legal-accordion-body .text-body {
  margin-bottom: var(--space-sm);
}
.legal-accordion-body .legal-list {
  margin-bottom: var(--space-sm);
}

/* ---- COOKIE PAGE ---- */
.cookie-what-is {
  margin-bottom: var(--space-xl);
}
.cookie-table-section {
  margin-bottom: var(--space-xl);
}
.cookie-category-block {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
}
.cookie-category--necessary .cookie-cat-header {
  background: rgba(62, 198, 160, 0.1);
}
.cookie-category--analytics .cookie-cat-header {
  background: rgba(240, 165, 0, 0.1);
}
.cookie-category--marketing .cookie-cat-header {
  background: rgba(217, 63, 11, 0.08);
}
.cookie-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
}
.cookie-cat-badge--necessary {
  background: var(--color-accent);
  color: #fff;
}
.cookie-cat-badge--analytics {
  background: var(--color-primary);
  color: var(--color-ink);
}
.cookie-cat-badge--marketing {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-cat-status {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.cookie-category-block .text-body {
  padding: var(--space-sm) var(--space-md) 0;
}
.cookie-detail-table {
  margin: var(--space-sm) var(--space-md) var(--space-md);
  width: calc(100% - 2 * var(--space-md));
}
.cookie-detail-table code {
  font-size: 0.82rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

/* ============================================================
   COOKIE CONSENT - SIDE PANEL (RIGHT)
   ============================================================ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.cookie-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 100vw;
  background: var(--color-ink);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}
.cookie-panel.visible {
  transform: translateX(0);
}

.cookie-panel-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.cookie-panel-header i {
  font-size: 1.4rem;
  color: var(--color-primary);
}
.cookie-panel-header h3 {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.cookie-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}
.cookie-panel-body p {
  font-size: 0.82rem;
  color: rgba(240, 237, 230, 0.65);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.cookie-panel-body a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: var(--space-sm);
}
.cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-cat-info {
  flex: 1;
}
.cookie-cat-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240, 237, 230, 0.9);
}
.cookie-cat-desc {
  font-size: 0.75rem;
  color: rgba(240, 237, 230, 0.45);
  margin-top: 2px;
}

.cookie-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}
.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-base);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-primary);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}
.cookie-toggle input:disabled + .cookie-toggle-slider {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-panel-footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.cookie-btn-accept {
  width: 100%;
  padding: 0.75em;
  background: var(--color-primary);
  color: var(--color-ink);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  transition:
    background var(--transition-base),
    transform var(--transition-fast);
  cursor: pointer;
  border: none;
}
.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  width: 100%;
  padding: 0.6em;
  background: transparent;
  color: rgba(240, 237, 230, 0.5);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    color var(--transition-base),
    border-color var(--transition-base);
}
.cookie-btn-reject:hover {
  color: rgba(240, 237, 230, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}
.cookie-btn-save {
  width: 100%;
  padding: 0.6em;
  background: transparent;
  color: rgba(240, 237, 230, 0.5);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    color var(--transition-base),
    border-color var(--transition-base);
}
.cookie-btn-save:hover {
  color: rgba(240, 237, 230, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-animated-icon {
    display: none;
  }
  .headline-line-1 {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }
  .headline-line-2 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .headline-line-3 {
    font-size: clamp(1.4rem, 4.5vw, 2.2rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .process-connector {
    display: none;
  }

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

  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .calendar-intro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .mobile-tabbar {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .section-hero {
    padding-top: calc(var(--nav-height) + var(--space-lg));
    min-height: auto;
    padding-bottom: var(--space-xl);
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-animated-icon {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-connector {
    display: none;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }

  .promise-pillar {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .pillar-number {
    font-size: 3rem;
    width: auto;
    text-align: left;
  }
  .pillar-detail-grid {
    grid-template-columns: 1fr;
  }

  .promise-pillar--alt {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
  .timeline-visual {
    grid-template-columns: 1fr 1fr;
  }

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

  .audit-detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .thanks-content {
    max-width: 100%;
  }
  .thanks-timeline {
    width: 100%;
  }

  .legal-table {
    font-size: 0.78rem;
  }
  .legal-table th,
  .legal-table td {
    padding: 0.5em 0.6em;
  }
  .cookie-detail-table {
    margin-inline: 0;
    width: 100%;
  }

  .cookie-panel {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .timeline-visual {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row-secondary {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-submit {
    width: 100%;
    justify-content: center;
  }
  .contact-detail-list {
    gap: var(--space-sm);
  }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-surface);
}
::-webkit-scrollbar-thumb {
  background: rgba(240, 165, 0, 0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}
