/* ============================================
   UruPartner — Premium Uruguay Landing
   ============================================ */
:root {
  --bg: #060b14;
  --bg-soft: #0c1524;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f7fb;
  --text-muted: #9aabc0;
  --text-soft: #6d7f96;
  --primary: #2dd4bf;
  --primary-2: #38bdf8;
  --accent: #f5c16c;
  --accent-2: #fb923c;
  --wa: #25d366;
  --tg: #2aabee;
  --danger: #f87171;
  --gradient: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 50%, #818cf8 100%);
  --gradient-warm: linear-gradient(135deg, #f5c16c 0%, #fb923c 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(45, 212, 191, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 40%, rgba(245, 193, 108, 0.08), transparent 45%);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 999px;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font);
  --container: 1180px;
  --header-h: 72px;
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 560px;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 52px;
  max-width: 640px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}

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

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

.btn-primary {
  background: var(--gradient);
  color: #041018;
  box-shadow: 0 10px 30px rgba(45, 212, 191, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(45, 212, 191, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-wa {
  background: var(--wa);
  color: #041018;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42);
}

.btn-tg {
  background: var(--tg);
  color: #fff;
  box-shadow: 0 8px 24px rgba(42, 171, 238, 0.3);
}

.btn-tg:hover {
  box-shadow: 0 12px 32px rgba(42, 171, 238, 0.42);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(6, 11, 20, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 3px;
  background: #f8f5ef;
  border: 1px solid rgba(245, 193, 108, 0.42);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(142, 0, 15, 0.28);
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  font-family: var(--font);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile-actions {
  display: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero), var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-badge-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.2);
  display: grid;
  place-items: center;
}

.hero-badge-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.stat {
  min-width: 100px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 2px;
}

.hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-card-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.flag {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff 0 40%, #0038a8 40% 60%, #fff 60%),
    radial-gradient(circle at 50% 50%, #fcd116 0 28%, transparent 29%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.flag::after {
  content: "☀️";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  line-height: 1;
}

.hero-services-mini {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition);
}

.mini-item:hover {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.06);
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: rgba(45, 212, 191, 0.12);
  flex-shrink: 0;
}

.hero-card-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-card-cta .btn {
  width: 100%;
}

/* ---------- Services ---------- */
.services {
  background: var(--bg-soft);
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 212, 191, 0.3);
  background: var(--bg-card-hover);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.service-card.featured {
  grid-column: span 1;
  background: linear-gradient(160deg, rgba(45, 212, 191, 0.1), rgba(56, 189, 248, 0.05));
  border-color: rgba(45, 212, 191, 0.25);
}

.service-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.service-list {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-card .btn {
  width: 100%;
}

/* ---------- About / Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.why-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(6, 11, 20, 0.3), rgba(6, 11, 20, 0.75)),
    url("https://images.unsplash.com/photo-1587595431973-160d0d94add1?auto=format&fit=crop&w=900&q=80") center/cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.why-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 18px 20px;
  background: rgba(6, 11, 20, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
}

.why-visual-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.why-visual-badge span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.why-features {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color var(--transition), background var(--transition);
}

.why-item:hover {
  border-color: rgba(45, 212, 191, 0.25);
  background: var(--bg-card-hover);
}

.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(45, 212, 191, 0.1);
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Process ---------- */
.process {
  background: var(--bg-soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 28px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Airport strip ---------- */
.airport {
  padding: 0;
}

.airport-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(45, 212, 191, 0.12), rgba(56, 189, 248, 0.08) 40%, rgba(245, 193, 108, 0.1)),
    var(--bg-soft);
  border: 1px solid rgba(45, 212, 191, 0.2);
  position: relative;
  overflow: hidden;
}

.airport-banner::after {
  content: "✈️";
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.08;
  pointer-events: none;
}

.airport-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.airport-banner p {
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 0;
}

.airport-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

/* ---------- Testimonials ---------- */
.reviews {
  background: var(--bg);
}

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

.review-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 193, 108, 0.3);
}

.review-stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gradient);
  color: #041018;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ---------- CTA / Contact ---------- */
.contact {
  background: var(--bg-soft);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(45, 212, 191, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(56, 189, 248, 0.1), transparent 50%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
}

.contact-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.contact-box > div > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 420px;
}

.contact-channels {
  display: grid;
  gap: 12px;
}

.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.channel:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.channel-icon.wa { background: rgba(37, 211, 102, 0.15); }
.channel-icon.tg { background: rgba(42, 171, 238, 0.15); }
.channel-icon.mail { background: rgba(245, 193, 108, 0.15); }

.channel strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

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

.contact-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%239aabc0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-group select option {
  background: #0c1524;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 280px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  max-width: 100%;
  padding: 14px;
  border: 1px solid rgba(245, 193, 108, 0.38);
  border-radius: 18px;
  background: #f8f5ef;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.footer-brand-logo img {
  display: block;
  width: min(100%, 190px);
  height: auto;
  object-fit: contain;
}

.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ---------- Floating contacts ---------- */
.float-contacts {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
}

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

.float-btn.wa {
  background: var(--wa);
  color: #041018;
}

.float-btn.tg {
  background: var(--tg);
}

.float-btn svg {
  width: 28px;
  height: 28px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ---------- SEO text block ---------- */
.seo-block {
  padding: 60px 0 80px;
}

.seo-block details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.seo-block summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.seo-block summary::-webkit-details-marker {
  display: none;
}

.seo-block summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 400;
}

.seo-block details[open] summary::after {
  content: "−";
}

.seo-block details p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) and (min-width: 769px) {
  .header-inner {
    gap: 14px;
  }

  .nav a {
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .header-cta .btn-tg {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .why-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .airport-banner {
    grid-template-columns: 1fr;
  }

  .airport-actions {
    justify-content: flex-start;
  }

  .why-visual {
    aspect-ratio: 16/10;
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    max-height: calc(100dvh - var(--header-h) - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(12, 21, 36, 0.98);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(24px) saturate(1.25);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 1000;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
  }

  .nav > a::after {
    content: "\2192";
    color: var(--text-soft);
    font-size: 1rem;
    transition: transform var(--transition), color var(--transition);
  }

  .nav > a:hover::after,
  .nav > a:focus-visible::after {
    color: var(--primary);
    transform: translateX(3px);
  }

  .nav-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }

  .nav-mobile-actions .btn {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
    flex-shrink: 0;
  }

  .services-grid,
  .reviews-grid,
  .process-steps,
  .footer-top,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    justify-items: center;
    gap: 38px;
    text-align: center;
  }

  .footer-top > div {
    width: 100%;
  }

  .footer-brand-logo {
    margin-inline: auto;
  }

  .footer-brand p {
    margin: 14px auto 0;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-contact-actions {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .hero-card-cta {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .contact-box {
    padding: 28px 20px;
  }

  .airport-banner {
    padding: 28px 22px;
  }

  .hero-stats {
    gap: 20px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; }
}
