:root {
  color-scheme: dark;
  --bg: #131f2e;
  --bg-soft: #192b40;
  --surface: rgba(20, 45, 70, 0.92);
  --surface-strong: #22364d;
  --panel: #1d3046;
  --text: #f4f9ff;
  --muted: #a5bbd3;
  --accent: #67d3ff;
  --accent-dark: #33b7eb;
  --accent-soft: rgba(103, 211, 255, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  --radius: 28px;
  --max-width: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  background: radial-gradient(circle at left center, rgba(103, 211, 255, 0.08), transparent 22%),
    radial-gradient(circle at top left, rgba(103, 211, 255, 0.16), transparent 26%),
    radial-gradient(circle at right center, rgba(180, 92, 255, 0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(180, 92, 255, 0.18), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, rgba(19, 31, 38, 0.98) 60%, rgba(12, 20, 29, 0.92) 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 16, 22, 0.92) 0%, rgba(8, 16, 22, 0.4) 12%, rgba(8, 16, 22, 0.4) 88%, rgba(8, 16, 22, 0.92) 100%);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px 60px;
}

.language-page .hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.hero {
  padding: 96px 0 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("../images/fon009.jpg");
  background-size: cover;
  background-position: calc(50% + var(--hero-x, 0px)) calc(50% + var(--hero-y, 0px));
  background-repeat: no-repeat;
  box-shadow: inset 40px 0 80px rgba(8, 16, 22, 0.35), inset -40px 0 80px rgba(8, 16, 22, 0.35);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 22, 0.28) 0%, rgba(8, 16, 22, 0.62) 80%, rgba(8, 16, 22, 0.78) 100%);
  pointer-events: none;
}

.hero-centered {
  min-height: calc(100vh - 0px);
}

.hero-copy {
  max-width: 620px;
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
}

.hero h1 {
  position: relative;
  display: inline-block;
  max-width: 18ch;
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  transition: transform 0.25s ease, text-shadow 0.25s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero h1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.32), transparent 55%);
  border-radius: 50%;
  opacity: 0;
  transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.hero h1:hover {
  transform: translateY(-2px) scale(1.01);
  text-shadow: 0 16px 30px rgba(103, 211, 255, 0.16);
}

.hero h1:hover::after {
  width: 150%;
  height: 130%;
  opacity: 0.42;
  transform: translate(-50%, -50%) scale(1);
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 34px;
}

.revealable {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(103, 211, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1), transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease, box-shadow 0.28s ease;
  z-index: 1500;
  will-change: opacity, transform, background, box-shadow;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(103, 211, 255, 0.32);
  box-shadow: 0 20px 56px rgba(103, 211, 255, 0.22);
}


.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  backface-visibility: hidden;
  will-change: transform, box-shadow, background;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.18), transparent 24%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  opacity: 0;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-4px) perspective(1000px) translateZ(0.5px) rotateX(1deg);
  box-shadow: 0 22px 52px rgba(103, 211, 255, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn:hover::before {
  width: 170%;
  height: 170%;
  opacity: 0.92;
  transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
  color: #081016;
  background-image: linear-gradient(135deg, rgba(103, 211, 255, 0.92), rgba(92, 156, 255, 0.94)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 20%);
  background-blend-mode: screen;
  box-shadow: 0 18px 48px rgba(103, 211, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.language-visual {
  display: grid;
  gap: 20px;
  justify-content: end;
  position: relative;
}

.stat-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.navbar {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #67d3ff, #5c9cff);
  display: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  display: inline-block;
}

/* Language switcher */
.lang-switch {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: rgba(8,16,22,0.96);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px;
  border-radius: 10px;
  min-width: 160px;
  display: none;
  z-index: 1200;
}

.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.lang-menu button:hover {
  background: rgba(103,211,255,0.06);
}

/* Make language switch visible on small screens */
.nav-actions .lang-switch {
  display: inline-block;
}

@media (max-width: 760px) {
  .lang-btn { padding: 8px 10px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 16px;
}

.nav-trigger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 82px 0;
  background: linear-gradient(180deg, rgba(12, 18, 28, 0.30) 0%, rgba(10, 16, 26, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  box-shadow: inset 40px 0 80px rgba(8, 16, 22, 0.25), inset -40px 0 80px rgba(8, 16, 22, 0.25);
}

.section#about {
  position: relative;
  background-image: url("../images/agency.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section.section-countries,
.section#destinations {
  position: relative;
  background-image: url("../images/countri.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section.section-countries::before,
.section#destinations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 22, 0.35) 0%, rgba(8, 16, 22, 0.68) 85%, rgba(8, 16, 22, 0.85) 100%);
  pointer-events: none;
}

.section.section-countries .section-title,
.section.section-countries .grid,
.section.section-countries .card,
.section#destinations .section-title,
.section#destinations .grid,
.section#destinations .card {
  position: relative;
  z-index: 1;
}

.section#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 22, 0.42) 0%, rgba(8, 16, 22, 0.7) 100%);
  pointer-events: none;
}

.section#about .section-title,
.section#about .grid,
.section#about .card {
  position: relative;
  z-index: 1;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 42px;
}

.section-title span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.05;
  position: relative;
  display: inline-block;
  transition: transform 0.25s ease, text-shadow 0.25s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), transparent 55%);
  border-radius: 50%;
  opacity: 0;
  transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.section-title h2:hover {
  transform: translateY(-2px) scale(1.01);
  text-shadow: 0 16px 32px rgba(103, 211, 255, 0.12);
}

.section-title h2:hover::after {
  width: 160%;
  height: 130%;
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(1);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 55%);
  border-radius: 50%;
  opacity: 0;
  transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(103, 211, 255, 0.24);
}

.card:hover::after {
  width: 140%;
  height: 120%;
  opacity: 0.28;
  transform: translate(-50%, -50%) scale(1);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.card-flag {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(103, 211, 255, 0.12);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-pill {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-pill strong {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 32px;
  min-width: min(420px, 100%);
  max-width: 420px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18), transparent 55%);
  border-radius: 50%;
  opacity: 0;
  transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 211, 255, 0.24);
}

.testimonial-card:hover::after {
  width: 140%;
  height: 120%;
  opacity: 0.24;
  transform: translate(-50%, -50%) scale(1);
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.85;
}

.testimonial-carousel {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(7, 15, 23, 0.82);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 1;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(7, 15, 23, 1);
}

.testimonial-nav-left {
  left: -12px;
}

.testimonial-nav-right {
  right: -12px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #67d3ff, #5c9cff);
  display: grid;
  place-items: center;
  color: #081016;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 20px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.contact-panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-panel .stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-panel .stat-pill {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.contact-links a {
  display: block;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.contact-links a:hover {
  background: rgba(103, 211, 255, 0.16);
  border-color: rgba(103, 211, 255, 0.35);
  transform: translateY(-1px);
}

.form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 36px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(103, 211, 255, 0.18), transparent 58%);
  filter: blur(18px);
  pointer-events: none;
}

.form-card-header {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.form-card-header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
}

.form-card-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.form-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-field {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.form-field label {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.08);
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, rgba(244, 249, 255, 0.82) 50%),
    linear-gradient(135deg, rgba(244, 249, 255, 0.82) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 8px 8px;
  background-repeat: no-repeat;
}

.form-field select option {
  background: rgba(19, 31, 46, 0.98);
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(103, 211, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(103, 211, 255, 0.08);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.footer {
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand p,
.footer-links a,
.footer-note {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 950px) {
  .hero,
  .contact-grid,
  .stats-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-visual {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0 16px 40px;
  }

  .navbar {
    padding: 14px 0;
    position: relative;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-trigger {
    display: inline-flex;
  }

  .nav-open .nav-links,
  .nav-open .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    padding: 18px 20px 22px;
    background: rgba(8, 16, 22, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-open .nav-actions .btn {
    display: inline-flex;
  }

  .nav-open .navbar {
    flex-direction: column;
    align-items: start;
  }

  .hero {
    gap: 20px;
    padding: 50px 0 22px;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .hero p {
    font-size: 1rem;
  }

  .form-card {
    padding: 22px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 14px 16px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 64px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .card,
  .form-card,
  .testimonial-card,
  .stat-pill,
  .section {
    border-radius: 24px;
  }
}
