/* ============================================
   UPLIFT — Global Styles & Hero Section
   Aligned with Brand Guidelines v1
   ============================================ */

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Palette — from guidelines */
  --color-bg: #110F14;
  --color-surface-1: #1A1823;
  --color-surface-2: #221F2E;

  --color-text: #FFFFFF;
  --color-text-secondary: #A09FB1;
  --color-text-muted: #6B697A;

  --color-accent: #9C4BFF;
  --color-accent-light: #B66DFF;
  --color-accent-pink: #C882FF;
  --color-accent-glow: rgba(156, 75, 255, 0.4);
  --color-accent-soft: rgba(156, 75, 255, 0.15);

  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --nav-height: 64px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --section-gap: 80px;
  --max-content: 1280px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar — guideline: thin, muted purple */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent-soft);
  border-radius: 3px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

/* ============================================
   NAVBAR — semi-transparent, CTA pill purple
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  height: var(--nav-height);
  background: rgba(17, 15, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 32px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
}

.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-text-secondary);
  position: relative;
  transition: color 0.2s ease;
}

/* Animated underline on hover — guideline */
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.2s ease;
}

.navbar__links a:hover {
  color: var(--color-text);
}

.navbar__links a:hover::after {
  width: 100%;
}

/* CTA — pill-shaped, purple fill, neon glow */
.navbar__cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text);
  background: var(--color-accent);
  padding: 10px 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px var(--color-accent-glow);
  transition: filter 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.navbar__cta:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 28px var(--color-accent-glow);
}

.navbar__cta:active {
  transform: scale(0.97);
}

.navbar__cta-icon {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.navbar__cta:hover .navbar__cta-icon {
  transform: translateX(3px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-height) clamp(24px, 4vw, 64px) 0;
  overflow: hidden;
}

/* --- Oversized Headline --- */
.hero__headline {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  pointer-events: none;
  user-select: none;
}

.hero__headline-line {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--color-text);
  display: block;
  white-space: nowrap;
}

.hero__headline-line--1 {
  font-size: clamp(4rem, 11vw, 13rem);
  opacity: 0;
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero__headline-line--2 {
  font-size: clamp(4rem, 11vw, 13rem);
  color: transparent;
  -webkit-text-stroke: 2px var(--color-accent);
  text-shadow: 0 0 80px rgba(156, 75, 255, 0.3);
  opacity: 0;
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero__headline-line--3 {
  font-size: clamp(4rem, 11vw, 13rem);
  opacity: 0;
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* --- 3D Container — full hero coverage --- */
.hero__3d-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
  overflow: hidden;
}

#canvas3d {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#canvas3d.loaded {
  opacity: 1;
}

/* --- Loading shimmer overlay --- */
.hero__3d-loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero__3d-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero__3d-loader-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(156, 75, 255, 0.04) 45%,
    rgba(156, 75, 255, 0.08) 50%,
    rgba(156, 75, 255, 0.04) 55%,
    transparent 70%
  );
  background-size: 250% 100%;
  animation: shimmerSweep 2s ease-in-out infinite;
}

.hero__3d-loader-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__3d-loader-dots::after {
  content: '';
  animation: loadingDots 1.5s steps(4, end) infinite;
}

@keyframes shimmerSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes loadingDots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

/* --- Description text blocks — z-5, always on top --- */
.hero__description {
  position: absolute;
  right: clamp(24px, 6vw, 80px);
  top: 50%;
  transform: translateY(-20%);
  z-index: 5;
  pointer-events: none;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--color-text-secondary);
  opacity: 0;
  animation: heroFadeIn 0.6s ease 0.9s forwards;
}

.hero__intro {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(100px, 12vh, 140px);
  z-index: 5;
  max-width: 500px;
  pointer-events: none;
}

.hero__intro p {
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--color-text-secondary);
  opacity: 0;
  animation: heroFadeIn 0.6s ease 1.1s forwards;
}

/* ============================================
   BRAND STRIP
   ============================================ */
.brand-strip {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 40px clamp(24px, 4vw, 64px) 48px;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.brand-strip__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.brand-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 96px);
  width: 100%;
  max-width: var(--max-content);
}

/* Logo items — monochrome white/gray per guideline */
.brand-strip__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.brand-strip__logo:hover {
  opacity: 0.6;
}

.brand-strip__logo svg {
  height: 20px;
  width: auto;
  fill: var(--color-text);
}

.brand-strip__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text);
  text-transform: uppercase;
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems {
  position: relative;
  width: 100%;
  padding: var(--section-gap) clamp(24px, 4vw, 64px);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problems__container {
  width: 100%;
  max-width: var(--max-content);
  display: flex;
  flex-direction: column;
  gap: 48px;
}


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

/* --- Meteor Card Wrapper (holds glow + card) --- */
.problem-card-wrap {
  position: relative;
  width: 100%;
}

/* Glow blob behind card */
.problem-card-wrap .problem-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(156, 75, 255, 0.12) 0%,
    transparent 70%
  );
  border-radius: var(--radius-md);
  transform: scale(0.92);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.problem-card-wrap:hover .problem-card__glow {
  opacity: 1.4;
}

/* --- The Card Itself --- */
.problem-card {
  position: relative;
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  background: var(--color-surface-2);
}

/* --- Red accent line on top of each card --- */
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 70, 70, 0.5), transparent);
  z-index: 10;
}

/* --- Icon Circle (red X) --- */
.problem-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 60, 60, 0.1);
  border: 1px solid rgba(255, 60, 60, 0.25);
  border-radius: 50%;
  color: #FF5A5A;
  margin-bottom: 12px;
  position: relative;
  z-index: 10;
}

.problem-card__icon svg {
  width: 16px;
  height: 16px;
}

/* --- Typography --- */
.problem-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  position: relative;
  z-index: 10;
}

.problem-card__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 10;
}

/* ============================================
   METEOR STREAKS
   ============================================ */
.meteor {
  position: absolute;
  top: 0;
  width: 2px;
  height: 2px;
  border-radius: 9999px;
  background: rgba(156, 75, 255, 0.7);
  box-shadow: 0 0 4px rgba(156, 75, 255, 0.4);
  transform: rotate(215deg);
  animation: meteorFall 4s linear infinite;
  pointer-events: none;
  z-index: 5;
}

/* Meteor tail */
.meteor::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, rgba(156, 75, 255, 0.5), transparent);
}

@keyframes meteorFall {
  0%   { transform: rotate(215deg) translateX(0);       opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: rotate(215deg) translateX(-500px);  opacity: 0; }
}

/* ============================================
   SOLUTION DIVIDER
   ============================================ */
.solution-divider {
  position: relative;
  width: 100%;
  padding: var(--section-gap) clamp(24px, 4vw, 64px);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* --- Line + Pill Badge --- */
.solution-divider__line-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--max-content);
}

.solution-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-border-hover) 30%,
    var(--color-border-hover) 70%,
    transparent
  );
}

.solution-divider__badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent-soft);
  border-radius: 999px;
  padding: 10px 28px;
  white-space: nowrap;
  background: rgba(156, 75, 255, 0.06);
}

/* --- Split Content: Headline left + Steps right --- */
.solution-divider__content {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  width: 100%;
  max-width: var(--max-content);
}

/* --- Large Headline — hero-style typography, left-aligned --- */
.solution-divider__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
}

.solution-divider__text-solid {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.solution-divider__text-outline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-accent);
  text-shadow: 0 0 80px rgba(156, 75, 255, 0.3);
}

/* --- Steps --- */
.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.solution-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.solution-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-accent-soft);
  background: rgba(156, 75, 255, 0.08);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.solution-step__body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

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

/* ============================================
   ROI CARD
   ============================================ */
.roi-section {
  position: relative;
  width: 100%;
  padding: 0 clamp(24px, 4vw, 64px) var(--section-gap);
  background: var(--color-bg);
  display: flex;
  justify-content: center;
}

.roi-section__container {
  width: 100%;
  max-width: var(--max-content);
}

.roi-card-wrap {
  position: relative;
  width: 100%;
}

.roi-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(156, 75, 255, 0.10) 0%,
    transparent 70%
  );
  border-radius: var(--radius-md);
  transform: scale(0.92);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.roi-card {
  position: relative;
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.roi-card__left {
  flex-shrink: 0;
}

.roi-card__highlight {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-accent);
  line-height: 1;
  white-space: nowrap;
}

.roi-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 10;
}

.roi-card__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.roi-card__text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.roi-card__cta-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.roi-card__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.roi-card__cta:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  position: relative;
  width: 100%;
  padding: var(--section-gap) clamp(24px, 4vw, 64px);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__container {
  width: 100%;
  max-width: var(--max-content);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.services__header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 16px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}

.services__title .text-accent {
  color: var(--color-accent);
}

.services__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  max-width: 600px;
}

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

/* --- Service Card (glass) --- */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05); /* Softer borders for more glass effect */
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(24px); /* Increased blur for stronger glass effect */
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

/* Popular card — purple glow border */
.service-card--popular {
  border-color: var(--color-accent-soft);
  box-shadow:
    0 0 0 1px rgba(156, 75, 255, 0.15),
    0 0 60px rgba(156, 75, 255, 0.08);
}



/* Badge */
.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-accent);
  border-radius: 4px;
  padding: 5px 12px;
}

/* Tag (// 01 · SITE WEB) */
.service-card__tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Card Name */
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.15;
  text-transform: uppercase;
}

/* Description */
.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Divider line */
.service-card__divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

/* Features list */
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card__features li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.service-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.75rem;
}

/* Footer — price + CTA */
.service-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.service-card__price {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card__price-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.service-card__price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.service-card__price-note {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* CTA button */
.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.service-card__cta:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

/* Accent CTA for popular card */
.service-card__cta--accent {
  background: linear-gradient(135deg, var(--color-accent), rgba(156, 75, 255, 0.7));
  border-color: transparent;
  color: #fff;
}

.service-card__cta--accent:hover {
  background: linear-gradient(135deg, rgba(156, 75, 255, 0.9), var(--color-accent));
  border-color: transparent;
  color: #fff;
}

/* --- Full-width Services CTA Card --- */
.services-cta-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  margin-top: 16px; /* Space between grid and CTA */
}

.services-cta-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-cta-card__title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.services-cta-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.services-cta-card__button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 32px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.services-cta-card__button:hover {
  border-color: var(--color-accent);
  background: rgba(156, 75, 255, 0.1);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  position: relative;
  width: 100%;
  padding: var(--section-gap) 0; /* No side padding to let marquee span full width */
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.testimonials__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: var(--max-content);
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 clamp(24px, 4vw, 64px);
}

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  max-width: 800px;
}

.testimonials__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.5;
}

/* Marquee Container */
.testimonials__marquee-container {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  left: 50%;
  transform: translateX(-50%); /* Ensures it breaks out of any max-width constraints */
}

.testimonials__marquee-scroller {
  display: flex;
  width: max-content;
}

.testimonials__marquee-scroller:hover .testimonials__marquee-track {
  animation-play-state: paused;
}

.testimonials__marquee-track {
  display: flex;
  gap: 16px;
  padding-right: 16px; /* Matches gap for continuous seamless loop */
  flex-shrink: 0;
  animation: marquee 40s linear infinite;
}

/* Testimonial Card */
.testimonial-card {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--radius-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  padding: 24px;
  text-align: left;
  transition: background 0.3s ease;
}

.testimonial-card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
}

.testimonial-card__handle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}



/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  position: relative;
  width: 100%;
  padding: var(--section-gap) clamp(24px, 4vw, 64px);
  background: var(--color-bg);
  /* Optional subtle aurora background */
  background-image: radial-gradient(ellipse 50% 100% at 10% 0%, rgba(156, 75, 255, 0.08), transparent 65%);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.faq__container {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 10;
}

/* Intro Badge */
.faq__intro-wrap {
  display: flex;
  justify-content: center;
}

.faq__intro {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.4rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.42);
  color: rgba(248, 250, 252, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.65rem;
  font-family: var(--font-body);
  width: fit-content;
  mix-blend-mode: screen;
  isolation: isolate;
  margin-bottom: 16px;
}

.faq__intro-beam,
.faq__intro-pulse {
  position: absolute;
  inset: -110%;
  pointer-events: none;
  border-radius: 50%;
}

.faq__intro-beam {
  background: conic-gradient(from 160deg, rgba(156, 75, 255, 0.25), transparent 32%, rgba(200, 130, 255, 0.22) 58%, transparent 78%, rgba(156, 75, 255, 0.18));
  animation: faq1-beam-spin 18s linear infinite;
  opacity: 0.55;
}

.faq__intro-pulse {
  border: 1px solid currentColor;
  opacity: 0.25;
  animation: faq1-pulse 3.4s ease-out infinite;
}

.faq__intro-label {
  position: relative;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.4em;
}

.faq__intro-meter {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 35%, transparent 85%);
  transform: scaleX(0);
  transform-origin: left;
  animation: faq1-meter 5.8s ease-in-out infinite;
  opacity: 0.7;
}

.faq__intro-tick {
  position: relative;
  z-index: 1;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  animation: faq1-tick 3.2s ease-in-out infinite;
}

@keyframes faq1-beam-spin {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes faq1-pulse {
  0% { transform: scale(0.7); opacity: 0.55; }
  60% { opacity: 0.1; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes faq1-meter {
  0%, 20% { transform: scaleX(0); transform-origin: left; }
  45%, 60% { transform: scaleX(1); transform-origin: left; }
  80%, 100% { transform: scaleX(0); transform-origin: right; }
}
@keyframes faq1-tick {
  0%, 30% { transform: translateX(-6px); opacity: 0.4; }
  50% { transform: translateX(2px); opacity: 1; }
  100% { transform: translateX(20px); opacity: 0; }
}

/* Header */
.faq__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.faq__overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-text-secondary);
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text);
}

.faq__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* FAQ List */
.faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: rgba(26, 24, 35, 0.5); /* Semi-transparent for backdrop blur */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 36px 140px -60px rgba(10, 10, 10, 0.95);
  transition: transform 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(26, 24, 35, 0.7);
}

.faq-item__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
  opacity: 0;
  background: radial-gradient(240px circle at var(--faq-x, 50%) var(--faq-y, 50%), rgba(255, 255, 255, 0.08), transparent 70%);
}

.faq-item:hover .faq-item__glow {
  opacity: 1;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.faq-item__trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: -2px;
  border-radius: 24px;
}

.faq-item__icon-wrap {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease;
  color: var(--color-text);
}

.faq-item:hover .faq-item__icon-wrap {
  transform: scale(1.05);
}

.faq-item__icon-ping {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.3;
}

.faq-item.is-open .faq-item__icon-ping {
  animation: faq1-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes faq1-ping {
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
  transition: transform 0.5s ease;
}

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

.faq-item__content-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.faq-item__question-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .faq-item__question-row {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text);
}

@media (min-width: 640px) {
  .faq-item__question {
    font-size: 1.25rem;
  }
}

.faq-item__meta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-text-secondary);
  transition: opacity 0.3s ease;
}

@media (min-width: 640px) {
  .faq-item__meta {
    margin-left: auto;
  }
}

.faq-item__panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.faq-item__panel p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  padding-right: 8px;
  padding-bottom: 8px; /* Extra padding inside panel */
}

.faq-item.is-open .faq-item__panel {
  max-height: 300px; /* Animate to this or set dynamically in JS */
  opacity: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  position: relative;
  width: 100%;
  padding: var(--section-gap) clamp(24px, 4vw, 64px);
  background: var(--color-bg);
  display: flex;
  justify-content: center;
}

.contact__container {
  width: 100%;
  max-width: 1024px;
}

.contact__card {
  position: relative;
  width: 100%;
  background: rgba(26, 24, 35, 0.5); /* subtle glass panel */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  box-shadow: 0 24px 80px -40px rgba(10, 10, 10, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 48px);
}

/* Plus Icons on Corners */
.contact__plus {
  position: absolute;
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
}
.contact__plus--tl { top: -12px; left: -12px; }
.contact__plus--tr { top: -12px; right: -12px; }
.contact__plus--bl { bottom: -12px; left: -12px; }
.contact__plus--br { bottom: -12px; right: -12px; }

/* Centered Header */
.contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 600px;
  margin-bottom: 48px;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}

.contact__subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Center Form Column */
.contact__form-col {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tabs */
.contact__tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__tab-btn {
  background: transparent;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 99px;
  transition: all 0.2s ease;
}

.contact__tab-btn:hover {
  color: var(--color-text);
}

.contact__tab-btn.is-active {
  background: rgba(255, 255, 255, 0.08); /* slight highlight */
  color: var(--color-text);
  font-weight: 500;
}

/* Panels */
.contact__panel {
  display: none;
  width: 100%;
}

.contact__panel.is-active {
  display: flex;
  flex-direction: column;
}

.cal-embed-container {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: transparent;
}

.cal-embed-container iframe {
  border-radius: var(--radius-sm);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(30, 25, 45, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.form-input:hover,
.form-textarea:hover {
  background: rgba(30, 25, 45, 0.8);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent-soft);
}

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

.form-button {
  width: 100%;
  margin-top: 16px;
  padding: 14px 24px;
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.form-button:active {
  transform: translateY(0);
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
  position: relative;
  width: 100%;
  padding: 48px 24px;
  display: flex;
  justify-content: center;
  background-color: var(--color-bg);
}

@media (min-width: 1024px) {
  .footer {
    padding: 64px 24px;
  }
}

.footer__container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 2rem; /* rounded-t-4xl */
  border-top-right-radius: 2rem;
  border-top: 1px solid var(--color-border);
  background: radial-gradient(35% 128px at 50% 0%, rgba(255, 255, 255, 0.08), transparent);
  padding-top: 48px;
}

@media (min-width: 768px) {
  .footer__container {
    border-top-left-radius: 3rem; /* md:rounded-t-6xl */
    border-top-right-radius: 3rem;
  }
}

/* Subtle glowing top edge */
.footer__edge-blur {
  position: absolute;
  top: 0;
  left: 50%;
  height: 1px;
  width: 33.333333%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  filter: blur(4px);
  pointer-events: none;
}

.footer__grid {
  display: grid;
  width: 100%;
  gap: 32px;
}

@media (min-width: 1280px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Brand & Copyright */
.footer__brand-wrap {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  width: fit-content;
  background: rgba(26, 24, 35, 0.4);
}
.footer__brand-wrap .navbar__logo-tag {
  color: var(--color-accent);
  margin-right: 6px;
}
.footer__brand-wrap .navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.footer__copyright {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .footer__copyright {
    margin-top: 0;
    margin-top: 32px;
  }
}

/* Links Grid */
.footer__links-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .footer__links-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .footer__links-container {
    margin-top: 0;
    grid-column: span 2;
  }
}

.footer__link-col {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .footer__link-col {
    margin-bottom: 0;
  }
}

.footer__link-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
}

.footer__link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 300ms ease;
}

.footer__link:hover {
  color: var(--color-text);
}

.footer__icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

/* Scroll Animation */
.footer-anim {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.footer-anim--1 { transition-delay: 0.1s; }
.footer-anim--2 { transition-delay: 0.2s; }
.footer-anim--3 { transition-delay: 0.3s; }
.footer-anim--4 { transition-delay: 0.4s; }
.footer-anim--5 { transition-delay: 0.5s; }

.footer-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes heroFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* ============================================
   LEGAL PAGES
   ============================================ */
.legal {
  position: relative;
  width: 100%;
  padding: calc(var(--nav-height) + 60px) clamp(24px, 4vw, 64px) var(--section-gap);
  background: var(--color-bg);
  display: flex;
  justify-content: center;
}

.legal__container {
  width: 100%;
  max-width: 800px;
}

.legal__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 8px;
}

.legal__updated {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.legal__content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal__content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.legal__content ul li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal__content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
}

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

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.legal__table th,
.legal__table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.legal__table th {
  background: var(--color-surface-1);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal__table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__cta {
    font-size: 0.65rem;
    padding: 8px 18px;
  }

  .hero__headline-line--1,
  .hero__headline-line--2,
  .hero__headline-line--3 {
    font-size: clamp(3.5rem, 14vw, 7rem);
  }

  .hero__description {
    position: absolute;
    right: 24px;
    top: auto;
    bottom: clamp(180px, 24vh, 240px);
    transform: none;
  }

  .hero__intro {
    left: 24px;
    bottom: 100px;
    max-width: 80%;
  }



  .brand-strip__logos {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-strip__logo-text {
    font-size: 0.9rem;
  }

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

  .solution-divider__content {
    flex-direction: column;
    gap: 40px;
  }

  .solution-divider__headline {
    align-items: center;
  }

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

  .service-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
  }

  /* ROI Card */
  .roi-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .roi-card__highlight {
    font-size: 2.5rem;
  }

  /* FAQ */
  .faq__intro {
    font-size: 0.55rem;
    padding: 0.7rem 1rem;
  }

  .faq-item__trigger {
    padding: 20px;
    gap: 16px;
  }

  .faq-item__icon-wrap {
    width: 40px;
    height: 40px;
  }

  .faq-item__icon {
    width: 16px;
    height: 16px;
  }

  .faq-item__question {
    font-size: 1rem;
  }

  /* Contact */
  .contact__plus {
    display: none;
  }

  .contact__card {
    border-radius: var(--radius-md);
  }

  .contact__info-col {
    padding: 28px 20px;
    gap: 32px;
  }

  .contact__form-col {
    padding: 28px 20px;
  }

  /* Footer */
  .footer__links-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    text-align: center;
  }

  .footer__brand-wrap {
    margin: 0 auto;
  }
}

/* ============================================
   EXTRA SMALL SCREENS (< 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero__headline-line--1,
  .hero__headline-line--2,
  .hero__headline-line--3 {
    font-size: clamp(2.5rem, 16vw, 4.5rem);
  }

  .hero__intro p {
    font-size: 0.55rem;
  }

  .hero__tag {
    font-size: 0.55rem;
  }

  .solution-divider__text-solid,
  .solution-divider__text-outline {
    font-size: 2rem;
  }

  .solution-divider__badge {
    font-size: 0.6rem;
    padding: 8px 16px;
    letter-spacing: 0.1em;
  }

  .service-card__name {
    font-size: 1.3rem;
  }

  .service-card__price-value {
    font-size: 1.6rem;
  }

  .testimonial-card {
    width: 280px;
  }

  .faq-item__question {
    font-size: 0.9rem;
  }

  .contact__title {
    font-size: 1.6rem;
  }

  .form-button {
    font-size: 0.8rem;
    padding: 14px 16px;
  }
}
