@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --f-display: 'Sora', serif;
  --f-body: 'Inter', sans-serif;

  --c-primary: #6de6e8;
  --c-primary-light: #a3f0f1;
  --c-primary-dark: #3abcbe;
  --c-accent: #5ba7e1;
  --c-accent-light: rgba(91, 167, 225, 0.1);

  --c-bg: #f6fafb;
  --c-surface: #ffffff;
  --c-surface-warm: #eef6f8;

  --c-text: #1a1a2e;
  --c-text-soft: rgba(26, 26, 46, 0.6);
  --c-text-muted: rgba(26, 26, 46, 0.4);
  --c-border: #e0e7eb;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
}

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

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--c-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--f-body);
}

/* ========================================
   CONTAINER
======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 6rem);
}

/* ========================================
   NAVIGATION
======================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0.875rem clamp(1rem, 5vw, 6rem);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-text);
  text-decoration: none;
  z-index: 1001;
}

.nav__logo {
  height: 36px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-soft);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--c-text);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

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

.nav__close {
  display: none;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav__overlay-link {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__overlay-link:hover,
.nav__overlay-link.is-active {
  color: var(--c-accent);
}

.nav__overlay-cta {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__overlay {
    display: none !important;
  }
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1.4;
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: var(--c-text);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(109, 230, 232, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 230, 232, 0.45);
  color: var(--c-text);
}

.btn--outline {
  background: transparent;
  color: var(--c-surface);
  border-color: var(--c-surface);
}

.btn--outline:hover {
  background: var(--c-surface);
  color: var(--c-text);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(100px, 15vh, 160px) clamp(1rem, 5vw, 6rem) clamp(3rem, 8vh, 6rem);
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 26, 46, 0.75) 0%,
    rgba(91, 167, 225, 0.45) 50%,
    rgba(109, 230, 232, 0.3) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(109, 230, 232, 0.2);
  border: 1px solid rgba(109, 230, 232, 0.4);
  border-radius: 50px;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--c-surface);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  margin-inline: auto;
  margin-top: 2rem;
}

.hero__metric {
  text-align: center;
}

.hero__metric-value {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.2;
}

.hero__metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

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

/* ========================================
   PAGE HEADER
======================================== */

.page-header {
  background: linear-gradient(160deg, var(--c-text) 0%, #2a2a4a 100%);
  padding: clamp(100px, 12vh, 140px) clamp(1rem, 5vw, 6rem) clamp(3rem, 6vh, 5rem);
  text-align: center;
}

.page-header__badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: var(--c-accent-light);
  border-radius: 50px;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-surface);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-header__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ========================================
   SECTIONS
======================================== */

.section {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 6rem);
}

.section--light {
  background-color: var(--c-bg);
}

.section--dark {
  background-color: var(--c-text);
  color: rgba(255, 255, 255, 0.9);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-surface);
}

.section--dark .card__text,
.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section--tinted {
  background-color: var(--c-surface-warm);
}

.section--cta {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary-dark) 100%);
  text-align: center;
  color: var(--c-surface);
}

.section--cta h2,
.section--cta h3 {
  color: var(--c-surface);
}

.section--cta p {
  color: rgba(255, 255, 255, 0.9);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--c-accent-light);
  border-radius: 50px;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section--dark .section__tag {
  background: rgba(109, 230, 232, 0.15);
  color: var(--c-primary);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--c-text-soft);
  line-height: 1.6;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.section__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 1.5rem;
}

/* ========================================
   GRIDS
======================================== */

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.grid--2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.grid--3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.grid--4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

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

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

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

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

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

/* ========================================
   CARDS — BASE
======================================== */

.card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--c-accent-light);
  color: var(--c-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card__icon--lg {
  width: 64px;
  height: 64px;
  font-size: 2rem;
  border-radius: var(--radius-md);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__header {
  padding: 1.5rem 1.5rem 0;
  border-bottom: none;
}

.card__body {
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.card__footer {
  padding: 0 1.5rem 1.5rem;
  margin-top: auto;
}

.card__title {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.card__text {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.85rem;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: var(--c-text);
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
}

.card__price {
  padding: 1rem 1.5rem;
  text-align: center;
}

.card__price-tag {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-accent);
}

.card__features {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card__features li {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-primary-dark);
  font-weight: 700;
}

.card__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--c-text-soft);
  line-height: 1.7;
  padding: 1.5rem;
  position: relative;
}

.card__quote::before {
  content: '"';
  font-family: var(--f-display);
  font-size: 3rem;
  color: var(--c-primary);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
  opacity: 0.5;
}

.card__stars {
  padding: 0 1.5rem;
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
}

.card__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.card__author-info {
  display: flex;
  flex-direction: column;
}

.card__author-name {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
}

/* ========================================
   CARD VARIANTS
======================================== */

.card--service {
  border-top: 3px solid var(--c-accent);
  padding: 1.75rem;
  text-align: center;
}

.card--service .card__icon {
  margin-inline: auto;
}

.card--service-detail {
  border-top: 3px solid var(--c-accent);
  display: flex;
  flex-direction: column;
}

.card--featured {
  border: 2px solid var(--c-primary);
  box-shadow: 0 8px 30px rgba(109, 230, 232, 0.2);
}

.card--featured:hover {
  box-shadow: 0 12px 40px rgba(109, 230, 232, 0.3);
}

.card--testimonial {
  background: var(--c-surface);
}

.section--dark .card--testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section--dark .card--testimonial .card__quote {
  color: rgba(255, 255, 255, 0.8);
}

.section--dark .card--testimonial .card__author-name {
  color: var(--c-surface);
}

.card--value {
  padding: 2rem;
  text-align: center;
  border-top: 3px solid var(--c-primary);
}

.card--value .card__icon {
  margin-inline: auto;
}

.card--spot {
  overflow: hidden;
}

.card--spot .card__image {
  height: 180px;
}

/* ========================================
   SPLIT LAYOUT
======================================== */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.split__content {
  order: 2;
}

.split__content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
}

.split__content p {
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.split__image {
  order: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.split__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split__content {
    order: unset;
  }

  .split__image {
    order: unset;
  }
}

/* ========================================
   STATS
======================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 2rem 0;
}

.stats__item {
  padding: 1rem;
}

.stats__number {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stats__label {
  font-size: 0.85rem;
  color: var(--c-text-soft);
}

.section--dark .stats__label {
  color: rgba(255, 255, 255, 0.6);
}

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

/* ========================================
   TIMELINE
======================================== */

.timeline {
  max-width: 700px;
  margin-inline: auto;
}

.timeline__items {
  position: relative;
  padding-left: 2rem;
}

.timeline__items::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-primary), var(--c-accent));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--c-primary);
  border: 3px solid var(--c-surface);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--c-primary);
  transform: translateX(-5.5px);
}

.section--dark .timeline__item::before {
  border-color: var(--c-text);
}

.timeline__year {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  background: var(--c-accent-light);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

.section--dark .timeline__year {
  background: rgba(91, 167, 225, 0.2);
  color: var(--c-primary-light);
}

.timeline__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.6;
}

.section--dark .timeline__text {
  color: rgba(255, 255, 255, 0.65);
}

/* ========================================
   CTA BANNER
======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.cta-banner__content {
  max-width: 600px;
  margin-inline: auto;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--c-surface);
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section--cta .cta-banner {
  background: transparent;
  padding: 0;
}

/* ========================================
   FAQ
======================================== */

.faq {
  max-width: 750px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}

.section--dark .faq__item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.section--dark .faq__question {
  color: var(--c-surface);
}

.faq__question:hover {
  color: var(--c-accent);
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.is-active .faq__question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.is-active .faq__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}

.section--dark .faq__answer p {
  color: rgba(255, 255, 255, 0.65);
}

/* ========================================
   CHECKLIST
======================================== */

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.6;
}

.checklist__item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

/* ========================================
   PRICING TABLE
======================================== */

.pricing-table {
  width: 100%;
  overflow-x: auto;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.table-wrapper table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--c-surface);
}

.table-wrapper th,
.table-wrapper td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--c-border);
}

.table-wrapper th {
  font-family: var(--f-display);
  font-weight: 600;
  background: var(--c-text);
  color: var(--c-surface);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.table-wrapper tr:last-child td {
  border-bottom: none;
}

.table-wrapper tr:hover td {
  background: var(--c-accent-light);
}

/* ========================================
   GALLERY
======================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(26, 26, 46, 0.8));
  color: var(--c-surface);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* ========================================
   CONTACT CARDS
======================================== */

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card__title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--c-text);
}

.contact-card__text {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.contact-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card__link:hover {
  color: var(--c-primary-dark);
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   CONTACT FORM
======================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-form-wrapper {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.contact-form__title {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.contact-form__subtitle {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--f-body);
  background: var(--c-surface);
  color: var(--c-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(109, 230, 232, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--c-text-muted);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a2e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__submit {
  align-self: flex-start;
}

/* ========================================
   MAP WRAPPER
======================================== */

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  max-height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   LEGAL CONTENT
======================================== */

.legal-content {
  max-width: 800px;
  margin-inline: auto;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block__title {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--c-primary);
  display: inline-block;
}

.legal-block p,
.legal-block ul,
.legal-block li {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-block ul {
  padding-left: 1.5rem;
}

.legal-block li {
  list-style: disc;
}

/* ========================================
   FOOTER
======================================== */

.footer {
  background: var(--c-text);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 6rem);
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer a:hover {
  color: var(--c-primary);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col--brand {
  max-width: 300px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer__social a:hover {
  background: var(--c-primary);
  color: var(--c-text);
}

.footer__heading {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-surface);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact a {
  font-size: 0.9rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links a:hover {
  color: var(--c-primary);
}

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

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ========================================
   ANIMATIONS — REVEAL
======================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   UTILITY — is-active (generic)
======================================== */

.is-active {
  /* Generic active state — specifics handled per component */
}

/* ========================================
   GLOBAL TYPOGRAPHY & UTILITIES
======================================== */

::selection {
  background: var(--c-primary);
  color: var(--c-text);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--c-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--c-primary-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-accent);
}

/* ========================================
   RESPONSIVE REFINEMENTS — TABLET
======================================== */

@media (min-width: 768px) {
  .hero__actions {
    gap: 1.25rem;
  }

  .card--service {
    padding: 2rem;
  }

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

  .cta-banner {
    padding: clamp(2.5rem, 5vw, 4rem);
  }
}

/* ========================================
   RESPONSIVE REFINEMENTS — DESKTOP
======================================== */

@media (min-width: 1024px) {
  .hero {
    padding: clamp(120px, 18vh, 200px) clamp(1rem, 5vw, 6rem) clamp(4rem, 10vh, 8rem);
  }

  .page-header {
    padding: clamp(120px, 14vh, 160px) clamp(1rem, 5vw, 6rem) clamp(3.5rem, 7vh, 6rem);
  }

  .section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 6rem);
  }

  .card--service {
    padding: 2.25rem;
  }

  .card__image {
    height: 220px;
  }

  .faq__question {
    font-size: 1.05rem;
  }

  .stats__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {
  .nav,
  .footer__social,
  .cta-banner,
  .section--cta {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section--dark {
    background: #f5f5f5;
    color: #000;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ========================================
   ACCESSIBILITY — FOCUS VISIBLE
======================================== */

:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--c-primary-dark);
  outline-offset: 3px;
}

.nav__link:focus-visible,
.nav__overlay-link:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 4px;
}

/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}