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

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

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style-position: inside;
}

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

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* ===== CSS VARIABLES ===== */
:root {
  --f-display: 'Sora', serif;
  --f-body: 'Source Sans 3', sans-serif;

  --c-primary: #004aad;
  --c-primary-light: #2a72d4;
  --c-primary-dark: #003380;
  --c-primary-rgb: 0, 74, 173;

  --c-accent: #6c9ad5;
  --c-accent-light: rgba(108, 154, 213, 0.1);
  --c-accent-rgb: 108, 154, 213;

  --c-bg: #f8f9fc;
  --c-surface: #ffffff;
  --c-surface-warm: #eef3fa;

  --c-text: #0f1b2d;
  --c-text-soft: rgba(15, 27, 45, 0.65);
  --c-text-muted: rgba(15, 27, 45, 0.4);

  --c-border: #dce3ed;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: var(--c-text-soft);
}

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  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: 1280px;
  margin-inline: auto;
  padding: 0.75rem clamp(1rem, 5vw, 3rem);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 48px;
  width: auto;
}

.nav__links {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
  padding-left: 0;
}

.nav__links a {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

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

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

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

.nav__links a.is-active {
  color: var(--c-primary);
}

.nav__cta {
  display: none;
}

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

.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__close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--c-surface);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/* Mobile overlay nav */
.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 74, 173, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.nav__overlay .nav__close {
  display: block;
}

.nav__overlay-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav__overlay-links a {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s ease;
}

.nav__overlay-links a:hover {
  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;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff !important;
  border-color: var(--c-primary);
}

.btn--primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff !important;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

.section--dark .btn--outline,
.hero .btn--outline,
.section--cta .btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff !important;
  background: transparent;
}

.section--dark .btn--outline:hover,
.hero .btn--outline:hover,
.section--cta .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero--sub {
  min-height: 55vh;
}

.hero--small {
  min-height: 40vh;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(var(--c-primary-rgb), 0.7) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(800px, 70%);
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 3rem);
}

.hero__content--centered {
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero__badge {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ===== METRICS ===== */
.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.metric__value {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-accent);
  display: block;
  line-height: 1.1;
}

.metric__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.hero .metric__value {
  color: #fff;
}

.hero .metric__label {
  color: rgba(255, 255, 255, 0.7);
}

.section--light .metric__value {
  color: var(--c-primary);
}

.section--light .metric__label {
  color: var(--c-text-soft);
}

/* ===== SECTIONS ===== */
.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  padding-inline: clamp(1rem, 5vw, 6rem);
}

.section__container {
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.section__container--centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__container--narrow {
  max-width: 800px;
}

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

.section__title {
  margin-bottom: 1rem;
  color: var(--c-text);
}

.section__title--light {
  color: #fff;
}

.section__intro {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--c-text-soft);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section__text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--c-text-soft);
  max-width: 680px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.section__text--light {
  color: rgba(255, 255, 255, 0.85);
}

.section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(var(--c-primary-rgb), 0.85),
    rgba(var(--c-primary-rgb), 0.92)
  );
}

/* Section variants */
.section--light {
  background: var(--c-surface);
}

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

.section--dark {
  background: var(--c-text);
}

.section--dark,
.section--dark * {
  color: rgba(255, 255, 255, 0.9);
}

.section--dark .section__tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-accent);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--accent {
  background: var(--c-primary);
}

.section--accent,
.section--accent * {
  color: rgba(255, 255, 255, 0.9);
}

.section--accent h2,
.section--accent h3 {
  color: #fff;
}

.section--accent .section__tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* CTA Section */
.section--cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--c-primary-rgb), 0.88),
    rgba(var(--c-primary-rgb), 0.94)
  );
}

.section--cta > * {
  position: relative;
  z-index: 1;
}

.section--cta,
.section--cta * {
  color: rgba(255, 255, 255, 0.95);
}

.section--cta h2 {
  color: #fff;
}

.section--cta .section__tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Section grids */
.section__grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}

.section__grid--2 {
  grid-template-columns: 1fr;
}

.section__grid--3 {
  grid-template-columns: 1fr;
}

.section__grid--4 {
  grid-template-columns: 1fr;
}

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

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

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

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

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

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

/* ===== CARDS ===== */
.card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

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

.card__header {
  margin-bottom: 1rem;
}

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

.card__icon i,
.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  flex-grow: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-top: 1rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card__link:hover {
  gap: 0.75rem;
  color: var(--c-primary-dark);
}

.card__detail {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: 0.5rem;
}

/* Card dark */
.card--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card--dark,
.card--dark * {
  color: rgba(255, 255, 255, 0.9);
}

.card--dark .card__title {
  color: #fff;
}

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

.card--dark .card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-accent);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.card--dark::before {
  background: var(--c-accent);
}

/* Card service */
.card--service {
  text-align: left;
}

.card--service .card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent-light), rgba(var(--c-primary-rgb), 0.08));
}

/* Card pricing */
.card--pricing {
  position: relative;
  overflow: visible;
  text-align: center;
  border: 1px solid var(--c-border);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.card--pricing .card__title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.75rem;
}

.card__price {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--c-primary);
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.card--pricing .card__text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.card--pricing-highlight {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--c-primary);
  transform: scale(1.03);
}

.card--pricing-highlight:hover {
  transform: scale(1.03) translateY(-4px);
}

.card--pricing-highlight .card__price {
  color: var(--c-primary);
}

/* Card testimonial */
.card--testimonial {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 3px solid var(--c-accent);
}

.card--testimonial::before {
  display: none;
}

.card__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--c-text-soft);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1rem;
}

.card__quote::before {
  content: '\201C';
  font-family: var(--f-display);
  font-size: 3rem;
  color: var(--c-accent);
  position: absolute;
  left: -0.5rem;
  top: -0.75rem;
  line-height: 1;
  opacity: 0.4;
}

.card__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

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

/* Stars */
.star,
.star--filled,
[data-lucide="star"] {
  color: #f59e0b;
  fill: currentColor;
}

.card__stars [data-lucide="star"] {
  width: 16px;
  height: 16px;
}

/* ===== SPLIT LAYOUT ===== */
.split {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.split__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
  min-height: 300px;
}

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

.split__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--c-text);
}

.split__text p {
  color: var(--c-text-soft);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .split__image,
  .split__text {
    flex: 1;
  }
}

/* ===== CONDITIONS BOX ===== */
.conditions-box {
  background: var(--c-surface-warm);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid var(--c-border);
}

.conditions-box__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-accent-light);
  color: var(--c-primary);
}

.conditions-box__content {
  flex: 1;
}

.conditions-box__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

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

/* ===== LISTS WITH ICONS ===== */
ul:has(i[data-lucide]),
ul:has(.check),
ul.list--icons,
ul.feature-list {
  list-style: none;
  padding-left: 0;
}

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

.list--icons li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.list--icons li i,
.list--icons li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--c-primary);
}

.section--dark .list--icons li {
  color: rgba(255, 255, 255, 0.85);
}

.section--dark .list--icons li i,
.section--dark .list--icons li svg {
  color: var(--c-accent);
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
  padding: 1.25rem 0;
}

.faq__item:first-child {
  border-top: 1px solid var(--c-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--c-text);
  text-align: left;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

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

.faq__item.is-active .faq__question::after {
  transform: rotate(45deg);
}

.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: 500px;
  padding-top: 0.75rem;
}

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

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

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover::after {
  opacity: 1;
}

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

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

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info__title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--c-surface-warm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

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

.contact-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-accent-light);
  color: var(--c-primary);
}

.contact-card__content {
  display: flex;
  flex-direction: column;
}

.contact-card__content strong,
.contact-card__content h3 {
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: var(--c-text);
}

.contact-card__content p,
.contact-card__content a {
  display: block;
  font-size: 0.95rem;
  color: var(--c-text-soft);
}

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

.contact-map {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 1.5rem;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.contact-form__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

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

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

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

.contact-form__group label {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text);
}

.contact-form__group input,
.contact-form__group textarea,
.form__input,
.form__textarea {
  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;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus,
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb), 0.15);
}

.contact-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

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

.footer,
.footer * {
  color: rgba(255, 255, 255, 0.9);
}

.footer__container {
  max-width: 1200px;
  margin-inline: auto;
}

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

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

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

.footer__heading {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer__links a:hover {
  color: var(--c-accent);
  padding-left: 0.25rem;
}

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

.footer__contact li,
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact li i,
.footer__contact-item i {
  flex-shrink: 0;
  color: var(--c-accent);
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

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

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer__social a {
  display: inline-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);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
}

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

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

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

  .footer__col:first-child {
    min-width: 200px;
  }
}

/* ===== LEGAL ===== */
.legal {
  max-width: 800px;
  margin-inline: auto;
}

.legal h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--c-text);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--c-accent-light);
}

.legal p {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal li {
  font-size: 0.95rem;
  color: var(--c-text-soft);
  line-height: 1.8;
}

/* ===== 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 {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

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

/* Staggered delays */
.reveal[style*="--delay"] {
  transition-delay: var(--delay);
}

/* ===== UTILITY: is-active ===== */
.is-active {
  /* Generic active state — context-specific rules above */
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Mobile-first defaults are already 1-column */

@media (max-width: 767px) {
  .section__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .section__buttons .btn {
    text-align: center;
    justify-content: center;
  }

  .hero--sub {
    min-height: 45vh;
  }

  .hero--small {
    min-height: 35vh;
  }

  .metrics-row {
    gap: 1.5rem;
  }

  .metric__value {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .conditions-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .card--testimonial {
    border-left-width: 2px;
  }

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

  .contact-map iframe {
    height: 220px;
  }
}

@media (min-width: 768px) {
  .hero__content--centered {
    text-align: center;
  }

  .metrics-row {
    justify-content: center;
  }

  .gallery {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
  }

  .hero--sub {
    min-height: 50vh;
  }

  .hero--small {
    min-height: 40vh;
  }

  .section {
    padding-block: clamp(4rem, 10vw, 8rem);
  }
}

/* ===== PRINT ===== */
@media print {
  .nav,
  .footer__social,
  .section--cta {
    display: none;
  }

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

  .section--dark,
  .section--dark * {
    color: #000 !important;
    background: #fff !important;
  }
}

/* ===== ACCESSIBILITY ===== */
@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 {
    opacity: 1;
    transform: none;
  }
}

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

/* ===== SELECTION ===== */
::selection {
  background: rgba(var(--c-primary-rgb), 0.2);
  color: var(--c-primary-dark);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

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

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

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