/* ============================================================
   AccurateWords — "Diplomatic Luxury" Design System
   Typography: Cormorant Garamond (display) + Outfit (body)
   Palette: Deep navy, burnished gold, warm cream
   ============================================================ */

/* ===== Custom Properties ===== */
:root {
  /* Navy depth scale */
  --navy-900: #0b1120;
  --navy-800: #111a2e;
  --navy: #1a2332;
  --navy-600: #243447;
  --navy-500: #2d4259;

  /* Gold — metallic range */
  --gold-dark: #a8873e;
  --gold: #c8a45e;
  --gold-light: #dbc07e;
  --gold-glow: rgba(200, 164, 94, 0.15);
  --gold-shimmer: linear-gradient(135deg, #a8873e 0%, #dbc07e 45%, #c8a45e 55%, #e8d5a0 100%);

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #1eba59;

  /* Warm neutrals */
  --cream: #faf8f4;
  --cream-dark: #f2efe8;
  --warm-100: #edeae3;
  --warm-200: #ddd9d0;
  --warm-400: #9e978b;
  --warm-600: #6b655a;
  --warm-800: #3d3a34;
  --ink: #1a1917;

  /* Layout */
  --nav-h: 56px;
  --section-pad: clamp(100px, 14vw, 180px);
  --container: 1080px;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.btn svg { display: inline-block; vertical-align: middle; margin-right: 8px; }

/* ===== Noise Texture Overlay ===== */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
  z-index: 1;
}

/* ===== Utilities ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--warm-600);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 980px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo),
              box-shadow 0.4s var(--ease-out-expo),
              background 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 164, 94, 0.3);
}

.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(200, 164, 94, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 14px 8px;
  font-weight: 500;
}

.btn--ghost::after {
  content: '\2192';
  margin-left: 6px;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--ghost:hover {
  transform: none;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out-expo),
              transform 1s var(--ease-out-expo);
}

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

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.45s; }

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold-shimmer);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(250, 248, 244, 0.8);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.nav.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

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

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

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

.nav__menu {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--warm-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 25% 45%,
      rgba(200, 164, 94, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 75% 55%,
      rgba(45, 66, 89, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 100%,
      rgba(200, 164, 94, 0.05) 0%, transparent 50%);
  animation: heroBreath 8s ease-in-out infinite alternate;
}

@keyframes heroBreath {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* Floating gold particles */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 12s ease-in-out infinite;
}

.hero__particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; animation-duration: 14s; }
.hero__particle:nth-child(2) { left: 45%; top: 60%; animation-delay: 2s; animation-duration: 10s; }
.hero__particle:nth-child(3) { left: 75%; top: 30%; animation-delay: 4s; animation-duration: 16s; }
.hero__particle:nth-child(4) { left: 85%; top: 70%; animation-delay: 1s; animation-duration: 11s; width: 2px; height: 2px; }
.hero__particle:nth-child(5) { left: 25%; top: 80%; animation-delay: 3s; animation-duration: 13s; width: 2px; height: 2px; }
.hero__particle:nth-child(6) { left: 60%; top: 15%; animation-delay: 5s; animation-duration: 15s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  10%      { opacity: 0.6; transform: translateY(-10px) scale(1); }
  50%      { opacity: 0.3; transform: translateY(-60px) scale(0.8); }
  90%      { opacity: 0.5; transform: translateY(-120px) scale(0.6); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 28px;
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__text {
  text-align: left;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero__tagline {
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.7;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__portrait {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Decorative ring behind portrait */
.hero__portrait::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 94, 0.15);
  animation: portraitRing 6s ease-in-out infinite alternate;
}

@keyframes portraitRing {
  0%   { transform: scale(1) rotate(0deg); opacity: 0.4; }
  100% { transform: scale(1.06) rotate(3deg); opacity: 0.8; }
}

.hero__img {
  border-radius: 50%;
  max-width: 340px;
  width: 100%;
  height: auto;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(200, 164, 94, 0.2);
  border: 3px solid rgba(200, 164, 94, 0.15);
  position: relative;
  z-index: 1;
}

/* ===== USCIS ===== */
.uscis {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--navy-800);
  color: #fff;
  overflow: hidden;
}

.uscis::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--navy-900), transparent);
  pointer-events: none;
}

.uscis .section-title {
  color: #fff;
  font-family: var(--font-display);
}

.uscis .section-subtitle {
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.uscis__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.uscis__badge svg {
  opacity: 0.8;
}

.uscis__content {
  max-width: 920px;
  margin: 0 auto;
}

.uscis__text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.uscis__text p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.uscis__text strong {
  color: #fff;
  font-weight: 500;
}

.uscis__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.uscis__feature {
  text-align: center;
  padding: 36px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.uscis__feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(200, 164, 94, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.uscis__feature:hover {
  border-color: rgba(200, 164, 94, 0.2);
  transform: translateY(-4px);
}

.uscis__feature:hover::before {
  opacity: 1;
}

.uscis__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 164, 94, 0.1);
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.uscis__feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.uscis__feature p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.uscis__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.uscis__cta .btn--ghost {
  color: var(--gold-light);
}

/* ===== Services ===== */
.services {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}

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

.card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

/* Decorative corner accent */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, var(--gold-glow) 50%);
  border-radius: 0 24px 0 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06),
              0 1px 3px rgba(0, 0, 0, 0.04);
}

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

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cream);
  margin-bottom: 28px;
  color: var(--ink);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.card__body {
  color: var(--warm-600);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.card__tags li {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 980px;
  background: var(--cream);
  color: var(--warm-800);
  letter-spacing: 0.02em;
}

/* ===== Languages ===== */
.languages {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
}

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

.lang-card {
  text-align: center;
  padding: 48px 28px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
}

.lang-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.lang-card__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-glow);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.lang-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lang-card__level {
  color: var(--warm-400);
  font-size: 0.85rem;
  margin-bottom: 24px;
  font-weight: 300;
}

.lang-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--warm-600);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  text-align: left;
}

.lang-card__quote[dir="rtl"] {
  border-left: none;
  border-right: 2px solid var(--gold);
  padding-right: 16px;
  padding-left: 0;
  text-align: right;
}

/* ===== Why (About) ===== */
.why {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.why .section-title { color: #fff; }
.why .section-subtitle { color: rgba(255, 255, 255, 0.4); }

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

.why__item {
  padding: 44px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.why__item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-shimmer);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.why__item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 164, 94, 0.15);
  transform: translateY(-4px);
}

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

.why__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gold-shimmer);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
}

.why__item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.why__item p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== Reviews ===== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
  position: relative;
}

/* Large quote mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-glow);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.review-card__stars {
  margin-bottom: 18px;
}

.review-card__stars .star {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-card__text {
  color: var(--warm-600);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 24px;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--warm-100);
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.review-card__role {
  font-size: 0.78rem;
  color: var(--warm-400);
  font-weight: 300;
}

/* Review form */
.reviews__add {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.reviews__add-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.review-form__input,
.review-form__textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--warm-200);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
  font-weight: 300;
}

.review-form__input:focus,
.review-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.review-form__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--warm-600);
}

.review-form__stars button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--warm-200);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s var(--spring);
  padding: 2px;
  line-height: 1;
}

.review-form__stars button.active,
.review-form__stars button:hover {
  color: var(--gold);
  transform: scale(1.15);
}

.review-form__note {
  margin-top: 16px;
  color: var(--whatsapp);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== Contact (CTA) ===== */
.contact {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--cream-dark);
  position: relative;
}

.contact .section-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-family: var(--font-display);
}

.contact__subtitle {
  color: var(--warm-600);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 460px;
  margin: 16px auto 44px;
  line-height: 1.7;
  font-weight: 300;
}

.contact__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo-img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer__tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
  font-weight: 300;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  font-weight: 300;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}

.footer__credit {
  display: inline-block;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__credit a {
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s;
}

.footer__credit a:hover {
  color: var(--gold-light);
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  .services__grid,
  .why__grid,
  .languages__grid,
  .reviews__grid,
  .uscis__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.97);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 12px 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu li {
    width: 100%;
    text-align: center;
  }

  .nav__link {
    display: block;
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .nav__link::after {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    text-align: center;
    order: 1;
  }

  .hero__portrait {
    order: -1;
  }

  .hero__img {
    max-width: 240px;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .services__grid,
  .why__grid,
  .languages__grid,
  .reviews__grid,
  .uscis__features {
    grid-template-columns: 1fr;
  }

  .review-form__row {
    grid-template-columns: 1fr;
  }

  .footer__credit {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 4px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Hamburger animation */
  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}
