:root {
  --teal-900: #0c312d;
  --teal-800: #115e56;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --teal-200: #99f6e4;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --amber-500: #f59e0b;
  --amber-600: #d97706;

  --white: #ffffff;
  --black: #000000;

  --text-primary: var(--slate-900);
  --text-secondary: var(--slate-600);
  --text-muted: var(--slate-400);
  --text-on-dark: var(--white);
  --text-on-dark-muted: rgba(255, 255, 255, 0.7);

  --bg-body: var(--white);
  --bg-alt: var(--slate-50);
  --bg-dark: var(--slate-900);
  --bg-darker: #060d1b;
  --bg-accent: var(--teal-50);

  --cta-bg: var(--teal-600);
  --cta-hover: var(--teal-700);
  --cta-text: var(--white);

  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --fs-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  --fs-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --fs-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.75rem);
  --fs-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1140px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container--narrow { max-width: var(--container-lg); }

/* ── BUTTONS ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-normal);
  transition: all var(--transition-base);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}
.btn--primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.4);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--teal-700);
}
.btn--white:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--teal-600);
  border: 2px solid var(--teal-200);
}
.btn--outline:hover {
  background: var(--teal-50);
  border-color: var(--teal-400);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--lg { padding: 0.9rem 2rem; font-size: var(--fs-base); }
.btn--sm { padding: 0.55rem 1.25rem; font-size: var(--fs-xs); }
.btn--full { width: 100%; justify-content: center; }

/* ── HEADER ── */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow var(--transition-base);
}
.header--scrolled { box-shadow: var(--shadow-md); }

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--teal-800);
}
.header__logo-img {
  max-height: 48px;
  width: auto;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
}
.footer__logo-img {
  max-height: 42px;
  width: auto;
}
.footer__logo-img--invert {
  filter: brightness(0) invert(1);
}
.header__logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: var(--space-xs); }
.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--slate-600);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.nav__link:hover,
.nav__link--active {
  color: var(--teal-700);
  background: var(--teal-50);
}

.header__right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Language Switcher */
.lang-switch {
  position: relative;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--white);
  text-transform: uppercase;
}
.lang-switch__btn:hover { border-color: var(--teal-300); color: var(--teal-700); }
.lang-switch__btn svg { width: 12px; height: 12px; }

.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition-fast);
  z-index: 100;
}
.lang-switch__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switch__option {
  display: block;
  width: 100%;
  padding: 8px 14px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--slate-600);
  text-align: left;
  transition: all var(--transition-fast);
}
.lang-switch__option:hover { background: var(--teal-50); color: var(--teal-700); }
.lang-switch__option--active { color: var(--teal-700); background: var(--teal-50); }
.lang-switch__option:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.lang-switch__option:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.mobile-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__link {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}
.mobile-nav__link:hover { color: var(--teal-600); }
.mobile-nav__cta { margin-top: var(--space-xl); }
.mobile-nav__lang {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.mobile-nav__lang-btn {
  padding: 6px 14px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  color: var(--slate-600);
  text-transform: uppercase;
}
.mobile-nav__lang-btn--active {
  background: var(--teal-50);
  border-color: var(--teal-300);
  color: var(--teal-700);
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .mobile-toggle { display: flex; }
}

/* ── HERO ── */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--teal-900) 100%);
  color: var(--text-on-dark);
  padding: var(--space-5xl) 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--teal-300);
  margin-bottom: var(--space-xl);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}
.hero__label-dot {
  width: 6px;
  height: 6px;
  background: var(--teal-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__title {
  color: var(--white);
  margin-bottom: var(--space-lg);
  max-width: 700px;
}
.hero__highlight { color: var(--teal-300); }
.hero__desc {
  font-size: var(--fs-lg);
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-normal);
}
.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-num {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--teal-300);
}
.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--text-on-dark-muted);
  margin-top: 2px;
}

@media (max-width: 600px) {
  .hero { padding: var(--space-3xl) 0; min-height: auto; }
  .hero__stats { gap: var(--space-xl); flex-wrap: wrap; }
}

/* ── SECTIONS ── */

.section {
  padding: var(--space-5xl) 0;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--accent { background: var(--bg-accent); }
.section--sm { padding: var(--space-3xl) 0; }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}
.section__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--teal-600);
  margin-bottom: var(--space-md);
}
.section--dark .section__label { color: var(--teal-300); }
.section__title { margin-bottom: var(--space-md); }
.section--dark .section__title { color: var(--white); }
.section__desc {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}
.section--dark .section__desc { color: var(--text-on-dark-muted); }

/* ── GRID & CARDS ── */

.grid {
  display: grid;
  gap: var(--space-xl);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--teal-200);
}

.card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.card--dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--teal-600);
}
.card--dark .card__icon {
  background: rgba(20,184,166,0.15);
  color: var(--teal-300);
}
.card__icon svg { width: 24px; height: 24px; }

.card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}
.card__desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}
.card--dark .card__desc { color: var(--text-on-dark-muted); }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--teal-600);
  transition: gap var(--transition-fast);
}
.card__link:hover { gap: 10px; }
.card__link svg { width: 16px; height: 16px; }
.card--dark .card__link { color: var(--teal-300); }

/* ── SPLIT LAYOUT ── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .split--reverse { direction: ltr; }
}

.split__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--teal-600);
  margin-bottom: var(--space-md);
}
.split__title {
  margin-bottom: var(--space-lg);
}
.split__desc {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-lg);
}

/* ── FEATURE LIST ── */

.feature-list { display: flex; flex-direction: column; gap: var(--space-md); }
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.feature-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  margin-top: 1px;
}
.feature-list__icon svg { width: 12px; height: 12px; }

/* ── VISUAL PLACEHOLDER ── */

.visual-box {
  background: linear-gradient(135deg, var(--teal-50), var(--slate-100));
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  padding: var(--space-2xl);
  text-align: center;
}
.visual-box svg { width: 56px; height: 56px; margin-bottom: var(--space-md); }

/* ── PROCESS / STEPS ── */

.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--slate-100);
  counter-increment: step;
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 56px;
  height: 56px;
  background: var(--teal-50);
  border: 2px solid var(--teal-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--teal-700);
}
.step__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}
.step__desc {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .step { grid-template-columns: 48px 1fr; gap: var(--space-md); }
  .step__num { width: 44px; height: 44px; font-size: var(--fs-base); }
}

/* ── SERVICES PAGE ── */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--slate-100);
}
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-md);
}
.service-block__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}
.service-block__desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .service-block:nth-child(even) { direction: ltr; }
}

/* ── CTA BANNER ── */

.cta-banner {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
}
.cta-banner__title {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: var(--fs-3xl);
  position: relative;
}
.cta-banner__desc {
  font-size: var(--fs-lg);
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn { position: relative; }

@media (max-width: 600px) {
  .cta-banner { padding: var(--space-2xl); border-radius: var(--radius-lg); }
}

/* ── CONTACT FORM ── */

.form { display: flex; flex-direction: column; gap: var(--space-lg); }
.form__group { display: flex; flex-direction: column; gap: var(--space-xs); }
.form__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}
.form__input,
.form__textarea,
.form__select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}
.form__textarea { resize: vertical; min-height: 140px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

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

/* ── CONTACT INFO ── */

.contact-info { display: flex; flex-direction: column; gap: var(--space-xl); }
.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: 2px;
}
.contact-info__value {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}
.contact-info__value a { color: var(--teal-600); }
.contact-info__value a:hover { color: var(--teal-700); text-decoration: underline; }

/* ── FOOTER ── */

.footer {
  background: var(--slate-900);
  color: var(--text-on-dark-muted);
  padding: var(--space-4xl) 0 var(--space-2xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}
.footer__brand-desc {
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
  max-width: 280px;
  line-height: var(--lh-normal);
}
.footer__heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-lg);
}
.footer__links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__link {
  font-size: var(--fs-sm);
  color: var(--text-on-dark-muted);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--teal-300); }

.footer__bottom {
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
}
.footer__legal { display: flex; gap: var(--space-xl); }
.footer__legal a { color: var(--text-on-dark-muted); }
.footer__legal a:hover { color: var(--teal-300); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}

/* ── FAQ ── */

.faq { max-width: 720px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--slate-200);
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg) 0;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}
.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--slate-400);
  transition: transform var(--transition-base);
}
.faq__item.is-open .faq__question svg { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}
.faq__answer-inner {
  padding-bottom: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}
.faq__item.is-open .faq__answer {
  max-height: 400px;
}

/* ── PAGE HERO (inner pages) ── */

.page-hero {
  background: linear-gradient(135deg, var(--slate-900), var(--teal-900));
  color: var(--text-on-dark);
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
}
.page-hero__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--teal-300);
  margin-bottom: var(--space-md);
}
.page-hero__title {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero__desc {
  font-size: var(--fs-lg);
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── UTILITIES ── */

.text-center { text-align: center; }
.text-teal { color: var(--teal-600); }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ── ANIMATIONS ── */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* Mobile nav active (WordPress) */
.mobile-nav__link--active {
  color: var(--teal-700);
  font-weight: var(--fw-semibold);
}
