:root {
  --navy-900: #070f24;
  --navy-800: #0b1a3a;
  --navy-700: #12264f;
  --ink: #0e1b33;
  --body: #51607c;
  --white: #ffffff;
  --cream: #fff8f2;
  --sky-bg: #f3f7ff;
  --line: #e6ecf7;

  --orange: #ff6a1a;
  --orange-dark: #e8540a;
  --gold: #ffb703;
  --pink: #ff2e63;
  --blue: #2d6cff;
  --green: #12b76a;

  --grad-accent: linear-gradient(120deg, #ff9a1f 0%, #ff6a1a 45%, #ff2e63 100%);
  --grad-navy: linear-gradient(160deg, #0b1a3a 0%, #0e2350 55%, #123064 100%);

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(11, 26, 58, .07);
  --shadow-md: 0 14px 34px rgba(11, 26, 58, .11);
  --shadow-lg: 0 28px 60px rgba(7, 15, 36, .22);
  --shadow-orange: 0 12px 30px rgba(255, 106, 26, .38);

  --font-head: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; letter-spacing: -.02em; }
h1 em, h2 em { font-style: normal; background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--orange); color: var(--white); }
.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: 96px 0; }
.section.alt { background: var(--sky-bg); }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; color: var(--orange);
  background: rgba(255, 106, 26, .09); border: 1px solid rgba(255, 106, 26, .25);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin-inline: 0; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.section-head p { font-size: 1.05rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800; font-size: .95rem;
  padding: 15px 32px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-accent { background: var(--grad-accent); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-accent:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px rgba(255, 46, 99, .45); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--navy-800); box-shadow: 0 14px 34px rgba(0,0,0,.25); }
.btn-white:hover { transform: translateY(-3px) scale(1.02); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }
.pulse { animation: pulseGlow 2.2s infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 26, .45), var(--shadow-orange); }
  50% { box-shadow: 0 0 0 14px rgba(255, 106, 26, 0), var(--shadow-orange); }
}

.topbar {
  background: var(--navy-900); color: #b9c6e2; font-size: .8rem;
  text-align: center; padding: 9px 16px;
}
.topbar strong { color: var(--white); }
.topbar span { color: var(--gold); font-weight: 700; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; position: relative; }
.logo { display: flex; align-items: center; gap: 10px; z-index: 110; }
.logo-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--grad-navy); border-radius: 14px; font-size: 1.25rem;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.14);
}
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.logo-text span { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-light .logo-text { color: var(--white); }

.nav-checkbox { display: none; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu > li > a:not(.btn) {
  font-weight: 700; font-size: .93rem; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav-menu > li > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2.5px;
  background: var(--grad-accent); border-radius: 2px; transition: width .3s ease;
}
.nav-menu > li > a:not(.btn):hover::after { width: 100%; }
.nav-menu > li > a.active:not(.btn) { color: var(--orange); }
.nav-menu > li > a.active:not(.btn)::after { width: 100%; }
.nav-burger { display: none; }

.hero { position: relative; background: var(--grad-navy); color: var(--white); overflow: hidden; padding: 90px 0 110px; }
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.hero-bg::before { width: 480px; height: 480px; background: rgba(255, 106, 26, .35); top: -140px; right: -100px; }
.hero-bg::after { width: 420px; height: 420px; background: rgba(45, 108, 255, .45); bottom: -160px; left: -120px; }

.cloud { position: absolute; font-size: 3rem; opacity: .14; animation: drift 26s linear infinite; }
.cloud-1 { top: 16%; left: -80px; }
.cloud-2 { top: 62%; left: -140px; font-size: 4rem; animation-delay: -13s; }
@keyframes drift { from { transform: translateX(-120px); } to { transform: translateX(calc(100vw + 200px)); } }

.plane-fly {
  position: absolute; font-size: 2rem; top: 24%;
  animation: flyAcross 14s linear infinite; opacity: .8; z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.3));
}
@keyframes flyAcross {
  0% { transform: translateX(-100px) rotate(8deg); }
  100% { transform: translateX(calc(100vw + 150px)) rotate(8deg); }
}

.hero-grid { position: relative; z-index: 5; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 18px; border-radius: 999px; font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; margin-bottom: 26px; color: #dbe5fa;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); display: inline-block; animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .35; } }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 22px; }
.hero p { font-size: 1.08rem; color: #c3cfec; max-width: 540px; margin-bottom: 34px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; font-size: .85rem; font-weight: 600; color: #9fb1da; }

.hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius); padding: 26px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.card-head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12); }
.avatar {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-accent); font-size: 1.3rem; box-shadow: var(--shadow-orange);
}
.card-head strong { color: var(--white); display: block; font-size: .98rem; }
.card-head small { color: #9fb1da; font-size: .78rem; display: flex; align-items: center; gap: 7px; }
.dot-green { width: 8px; height: 8px; }
.card-list li + li { margin-top: 6px; }
.card-list a {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  border-radius: var(--radius-sm); transition: background .25s ease, transform .25s ease;
}
.card-list a:hover { background: rgba(255,255,255,.1); transform: translateX(6px); }
.card-list span { font-size: 1.4rem; width: 46px; height: 46px; display: grid; place-items: center; background: rgba(255,255,255,.08); border-radius: 12px; flex-shrink: 0; }
.card-list strong { color: var(--white); font-size: .95rem; display: block; }
.card-list small { color: #9fb1da; font-size: .78rem; }
.card-list i { margin-left: auto; color: var(--gold); font-style: normal; font-weight: 800; transition: transform .25s; }
.card-list a:hover i { transform: translateX(4px); }

.stats { background: var(--navy-900); padding: 54px 0; border-top: 1px solid rgba(255,255,255,.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat p { color: #8ea1cc; font-weight: 600; font-size: .9rem; margin-top: 4px; }

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

.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.icon {
  width: 62px; height: 62px; display: grid; place-items: center;
  font-size: 1.65rem; border-radius: 18px; margin-bottom: 22px;
  transition: transform .35s ease;
}
.service-card:hover .icon { transform: rotate(-8deg) scale(1.1); }
.i-blue   { background: #e8efff; box-shadow: inset 0 0 0 1px #ccd9ff; }
.i-violet { background: #efeaff; box-shadow: inset 0 0 0 1px #ddd2ff; }
.i-green  { background: #e6faf1; box-shadow: inset 0 0 0 1px #c3eed8; }
.i-orange { background: #fff1e6; box-shadow: inset 0 0 0 1px #ffd9bd; }
.i-pink   { background: #ffe9ef; box-shadow: inset 0 0 0 1px #ffcdd8; }
.i-red    { background: #ffe9e6; box-shadow: inset 0 0 0 1px #ffcabc; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.service-card p { font-size: .95rem; margin-bottom: 20px; }
.link { font-weight: 800; font-size: .9rem; color: var(--orange); transition: letter-spacing .25s ease; }
.service-card:hover .link { letter-spacing: .03em; }

.mini-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.mini-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.mini-card .icon { margin-inline: auto; }
.mini-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.mini-card p { font-size: .92rem; }

.detail { padding: 88px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.crumb-light { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); }
.detail-body h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 12px 0 16px; }
.detail-body > p { margin-bottom: 22px; }
.detail-body h4 { font-size: 1.12rem; margin: 28px 0 14px; padding-left: 14px; border-left: 4px solid var(--orange); }

.ticks li {
  position: relative; padding: 9px 0 9px 34px; font-weight: 600; color: #3c4a66;
  border-bottom: 1px dashed var(--line); font-size: .97rem;
}
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  width: 23px; height: 23px; display: grid; place-items: center;
  background: #e6faf1; color: var(--green); border-radius: 50%;
  font-size: .75rem; font-weight: 900;
}

.notice { border-radius: var(--radius-sm); padding: 18px 22px; font-size: .94rem; margin: 22px 0; line-height: 1.55; }
.notice.info   { background: #e8efff; border-left: 4px solid var(--blue); color: #27406e; }
.notice.warn   { background: #fff6df; border-left: 4px solid var(--gold); color: #6e5200; }
.notice.danger { background: #ffeceb; border-left: 4px solid var(--pink); color: #77202c; }

.call-card {
  background: var(--grad-navy); color: var(--white); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-lg); position: sticky; top: 100px; overflow: hidden;
}
.call-card::before {
  content: "✈"; position: absolute; right: -20px; top: -24px; font-size: 8rem;
  opacity: .07; transform: rotate(18deg);
}
.call-card.urgent { background: linear-gradient(160deg, #3d0a17 0%, #63101f 55%, #86182b 100%); }
.cc-badge {
  display: inline-block; background: var(--grad-accent); color: var(--white);
  font-weight: 800; font-size: .8rem; letter-spacing: .05em;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 16px;
}
.call-card > p { color: #c3cfec; font-size: .93rem; margin-bottom: 20px; }
.cc-phone {
  display: block; text-align: center; font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; color: var(--white); background: rgba(255,255,255,.1);
  border: 1.5px dashed rgba(255,255,255,.35); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 22px; transition: background .3s, transform .3s;
}
.cc-phone:hover { background: var(--grad-accent); border-color: transparent; transform: scale(1.03); }
.cc-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 2px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .87rem;
}
.cc-row:last-child { border-bottom: 0; }
.cc-row span { color: #9fb1da; }
.cc-row strong { color: var(--white); text-align: right; font-weight: 700; }

.process { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.steps li { position: relative; background: var(--white); border-radius: var(--radius); padding: 34px 26px 28px; box-shadow: var(--shadow-sm); border: 1px solid #f3e6d8; transition: transform .3s, box-shadow .3s; }
.steps li:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: -22px; left: 26px; width: 46px; height: 46px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  background: var(--grad-accent); color: var(--white); border-radius: 14px; box-shadow: var(--shadow-orange);
}
.steps h4 { margin: 10px 0 8px; font-size: 1.05rem; }
.steps p { font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--sky-bg); border: 1.5px solid transparent; border-radius: var(--radius-sm);
  padding: 15px 18px; margin-bottom: 16px; outline: none; transition: border-color .25s, background .25s, box-shadow .25s;
}
.contact-form ::placeholder { color: #8b98b3; font-weight: 500; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 4px rgba(255, 106, 26, .12);
}
.contact-form textarea { resize: vertical; }
.form-msg {
  display: none; margin-top: 16px; background: #e6faf1; color: #0b7a4b;
  border-left: 4px solid var(--green); padding: 15px 20px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .93rem;
}
.form-msg.show { display: block; }

.side-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.side-card + .side-card { margin-top: 22px; }
.side-card.gradient { background: var(--grad-navy); color: var(--white); border: 0; text-align: center; }
.side-card.gradient h3 { color: var(--white); margin-bottom: 8px; }
.side-card.gradient p { color: #c3cfec; font-size: .9rem; margin-bottom: 18px; }
.side-phone {
  display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--gold);
  transition: transform .3s, color .3s;
}
.side-phone:hover { color: var(--white); transform: scale(1.06); }
.side-card .cc-row:first-child { border-top: 0; }

.cta-banner { position: relative; overflow: hidden; background: var(--grad-accent); padding: 84px 0; text-align: center; }
.cta-banner::before {
  content: "✈"; position: absolute; font-size: 16rem; opacity: .1;
  top: -40px; left: -30px; transform: rotate(-14deg);
}
.cta-banner::after {
  content: "🧳"; position: absolute; font-size: 9rem; opacity: .18;
  bottom: -20px; right: 4%; transform: rotate(10deg);
}
.cta-inner { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 12px; }
.cta-banner h2 em { background: none; color: var(--navy-900); }
.cta-banner p { color: rgba(255,255,255,.9); font-weight: 600; margin-bottom: 30px; font-size: 1.1rem; }

.page-hero { position: relative; background: var(--grad-navy); overflow: hidden; padding: 84px 0 76px; }
.page-hero::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(255, 106, 26, .3); filter: blur(90px); top: -160px; right: -80px; opacity: .5;
}
.page-hero::after {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(45, 108, 255, .4); filter: blur(90px); bottom: -170px; left: -90px; opacity: .5;
}
.page-hero .container { position: relative; z-index: 2; }
.plane-deco { position: absolute; right: 5%; top: 16%; font-size: 7rem; opacity: .09; transform: rotate(14deg); z-index: 1; }
.crumb {
  display: inline-block; font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: #9fb1da; margin-bottom: 16px;
}
.crumb a { color: var(--gold); }
.crumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { color: #c3cfec; font-size: 1.07rem; max-width: 640px; }
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.legal-section { padding: 84px 0 96px; }
.legal-wrap { max-width: 900px; margin-inline: auto; }
.operator-box {
  background: var(--sky-bg); border: 1.5px dashed #c6d6f6; border-radius: var(--radius-sm);
  padding: 22px 26px; margin-bottom: 34px; font-size: .96rem;
}
.operator-box strong { color: var(--ink); }
.legal-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 32px 36px; margin-bottom: 22px; transition: box-shadow .3s;
}
.legal-card:hover { box-shadow: var(--shadow-md); }
.legal-card h3 { font-size: 1.14rem; margin-bottom: 10px; padding-left: 14px; border-left: 4px solid var(--orange); }
.legal-card p { font-size: .96rem; margin-bottom: 10px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-list li { position: relative; padding: 6px 0 6px 24px; font-size: .94rem; }
.legal-list li::before { content: "—"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }

.footer { background: var(--navy-900); color: #93a5cb; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1.15fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: .9rem; margin-top: 16px; max-width: 320px; }
.footer h5 {
  font-family: var(--font-head); color: var(--white); font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px;
}
.footer ul li { margin-bottom: 11px; font-size: .92rem; }
.footer ul a { transition: color .25s, padding-left .25s; }
.footer ul a:hover { color: var(--gold); padding-left: 5px; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0; font-size: .8rem; line-height: 1.6; }
.footer-disclaimer strong { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

.fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: var(--grad-accent); color: var(--white);
  font-weight: 800; font-size: .95rem;
  padding: 15px 24px; border-radius: 999px; box-shadow: var(--shadow-orange);
  transition: transform .25s ease;
}
.fab:hover { transform: scale(1.07); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 560px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 44px; }
  .call-card { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .detail { padding: 60px 0; }
  .page-hero { padding: 62px 0 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 60px 0 80px; }
  .hero-btns .btn { width: 100%; }
  .page-hero-btns .btn { flex: 1; }
  .fab span { display: none; }
  .fab { padding: 17px; }
  .plane-deco { font-size: 4.5rem; right: 2%; }

  .nav-burger {
    display: flex; flex-direction: column; gap: 5.5px; cursor: pointer; z-index: 110;
    padding: 8px; border-radius: 8px; background: var(--sky-bg);
  }
  .nav-burger span { width: 24px; height: 2.6px; background: var(--ink); border-radius: 3px; transition: transform .3s ease, opacity .3s ease; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--navy-800); flex-direction: column; justify-content: center; gap: 26px;
    transform: translateX(100%); transition: transform .38s cubic-bezier(.7, 0, .3, 1); z-index: 105;
    box-shadow: -30px 0 60px rgba(0,0,0,.35);
  }
  .nav-menu > li > a:not(.btn) { color: var(--white); font-size: 1.05rem; }
  .nav-menu > li > a:not(.btn)::after { background: var(--gold); }
  .nav-checkbox:checked ~ .nav-menu { transform: translateX(0); }
  .nav-checkbox:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8.1px) rotate(45deg); }
  .nav-checkbox:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-checkbox:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8.1px) rotate(-45deg); }
  .nav-checkbox:checked ~ .nav-burger span { background: var(--white); }
}

.widget { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); animation: floatY 6s ease-in-out infinite; }
.trip-toggle { display: flex; gap: 8px; margin-bottom: 18px; }
.trip-toggle label { flex: 1; cursor: pointer; }
.trip-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.trip-toggle span { display: block; text-align: center; padding: 11px 0; border-radius: 999px; font-weight: 800; font-size: .86rem; color: var(--body); border: 1.5px solid var(--line); transition: .25s; }
.trip-toggle input:checked + span { background: var(--grad-accent); color: #fff; border-color: transparent; box-shadow: var(--shadow-orange); }
.widget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.w-field.full { grid-column: 1 / -1; }
.w-field label { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #8b98b3; margin-bottom: 6px; }
.w-field input, .w-field select { width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: inherit; font-size: .95rem; color: var(--ink); background: var(--sky-bg); outline: none; transition: border-color .25s, box-shadow .25s, background .25s; }
.w-field input:focus, .w-field select:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(255, 106, 26, .12); }
.w-submit { width: 100%; margin-top: 16px; }
.widget-note { font-size: .74rem; color: #8b98b3; text-align: center; margin-top: 12px; line-height: 1.5; }

.route-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; font-weight: 700; font-size: .9rem; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s, color .25s; display: flex; align-items: center; gap: 8px; }
.chip:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange); }

.t-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.t-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.t-card p { font-size: .95rem; margin-bottom: 18px; }
.t-who { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-navy); color: #fff; font-weight: 800; font-family: var(--font-head); flex-shrink: 0; }
.t-who strong { display: block; color: var(--ink); font-size: .92rem; }
.t-who small { color: #8b98b3; font-size: .78rem; }

.faq-list { max-width: 840px; margin-inline: auto; display: grid; gap: 14px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s; }
.faq-list details[open] { box-shadow: var(--shadow-md); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-head); font-weight: 700; color: var(--ink); padding: 20px 24px; font-size: .98rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.5rem; color: var(--orange); transition: transform .3s; line-height: 1; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 24px 22px; font-size: .93rem; }

.fee-banner { max-width: 920px; margin: 0 auto; background: #fff7ee; border: 1.5px dashed #ffd9b3; border-radius: var(--radius); padding: 26px 30px; display: flex; gap: 16px; align-items: flex-start; font-size: .94rem; color: #7a4a12; line-height: 1.6; }
.fee-banner strong { color: var(--orange-dark); }

@media (max-width: 720px) {
  .widget-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
