
:root{
  --navy:#071433;
  --coral:#ff6262;
  --coral2:#ff7474;
  --muted:#667085;
  --line:#e6eaf1;
  --soft:#f8f9fd;
  --green:#00b67a;
  --shadow:0 16px 42px rgba(7,20,51,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:#101828;
  background:#fff;
}
a{text-decoration:none;color:inherit}
.container{width:min(1390px, calc(100% - 72px));margin:0 auto}
.header{
  height:118px;background:#fff;border-bottom:1px solid #eef1f5;
  display:flex;align-items:center;position:sticky;top:0;z-index:20;
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:28px}
.logo img{height:78px;display:block}
.nav-links{display:flex;align-items:center;gap:35px;font-size:16px;font-weight:800;color:#0b1535}
.nav-links a:hover{color:var(--coral)}
.nav-actions{display:flex;align-items:center;gap:24px;color:#0b1535;font-weight:800}
.icon-text{display:flex;align-items:center;gap:8px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border-radius:9px;padding:18px 31px;font-weight:900;border:0;cursor:pointer;
  font-size:16px;line-height:1;transition:.18s ease;
}
.btn-primary{background:var(--coral);color:#fff;box-shadow:0 12px 24px rgba(255,98,98,.24)}
.btn-primary:hover{background:#ed5353;transform:translateY(-2px)}
.btn-outline{background:white;color:#0b1535;border:1.5px solid #9aa7bd}
.btn-outline:hover{border-color:#0b1535;transform:translateY(-2px)}
.hero{
  position:relative;
  min-height:575px;
  overflow:hidden;
  background:#eff6fd;
  border-bottom:1px solid #e7ebf2;
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.92) 33%,rgba(255,255,255,.55) 48%,rgba(255,255,255,.05) 66%),
    url('/assets/images/hero-travel.jpg') right center / auto 100% no-repeat;
}
.hero-inner{position:relative;z-index:1;padding:74px 0 42px;max-width:650px}
h1{
  margin:0 0 26px;
  color:var(--navy);
  font-size:72px;
  line-height:1.05;
  letter-spacing:-.055em;
  font-weight:950;
}
.coral{color:var(--coral)}
.lead{
  color:#0b1535;
  font-size:26px;
  line-height:1.35;
  font-weight:650;
  margin:0 0 34px;
}
.benefits{display:flex;align-items:center;gap:31px;flex-wrap:wrap;margin:0 0 31px}
.benefit{display:flex;align-items:center;gap:13px;color:#101b3a;font-weight:900}
.benefit-icon{
  width:50px;height:50px;border-radius:50%;
  background:#fff0f0;color:var(--coral);
  display:flex;align-items:center;justify-content:center;
  font-size:24px;flex:0 0 50px;
}
.benefit span{display:block;font-size:16px;line-height:1.25}
.actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin:0 0 26px}
.trust{display:flex;align-items:center;gap:10px;font-weight:800;color:#1c2944}
.tp{color:var(--green);font-size:23px;font-weight:900}
.stars{display:flex;gap:4px}
.starbox{
  width:23px;height:23px;background:var(--green);color:white;
  display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:900;
}
.offer{
  position:absolute;right:62px;bottom:32px;z-index:2;
  background:var(--navy);color:white;border-radius:11px;
  padding:24px 31px;display:flex;align-items:center;gap:18px;
  min-width:315px;box-shadow:var(--shadow);
}
.offer .gift{width:62px;height:62px;border-radius:50%;background:var(--coral);display:flex;align-items:center;justify-content:center;font-size:31px}
.offer b{display:block;color:var(--coral);font-size:18px;margin-bottom:4px}
.offer strong{font-size:17px;line-height:1.2}
.feature-strip{background:#fff;border-bottom:1px solid #e7ebf2}
.features{display:grid;grid-template-columns:repeat(4,1fr)}
.feature{
  padding:36px 34px;display:flex;gap:20px;align-items:center;
  border-right:1px solid #e1e6ef;min-height:125px;
}
.feature:last-child{border-right:0}
.feature-icon{
  width:70px;height:70px;display:flex;align-items:center;justify-content:center;
  font-size:38px;color:var(--navy);flex:0 0 70px;
}
.feature h3{margin:0 0 6px;color:var(--navy);font-size:19px;line-height:1.1}
.feature p{margin:0;color:#4d5a73;line-height:1.35;font-size:16px}
.section{padding:48px 0 72px}
.section.alt{background:#fafbfe}
.section-head{display:flex;align-items:center;justify-content:space-between;margin:0 0 26px}
h2{font-size:33px;line-height:1.1;letter-spacing:-.035em;margin:0;color:var(--navy)}
.view-all{font-weight:900;color:var(--coral);font-size:16px}
.destinations{display:grid;grid-template-columns:repeat(5,1fr);gap:27px}
.destination-card{
  background:#fff;border:1px solid var(--line);border-radius:9px;overflow:hidden;
  box-shadow:0 8px 22px rgba(7,20,51,.07);transition:.18s ease;
}
.destination-card:hover{transform:translateY(-4px);box-shadow:0 18px 42px rgba(7,20,51,.12)}
.dest-img{height:118px;overflow:hidden;background:#dbe8f5}
.dest-img img{width:100%;height:100%;object-fit:cover;display:block}
.dest-body{padding:20px 18px 22px}
.dest-title{display:flex;align-items:center;gap:11px;color:var(--navy);font-size:20px;font-weight:950;margin-bottom:21px}
.flag{
  width:31px;height:31px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:#f3f5f9;border:1px solid #e5eaf2;font-size:17px;
}
.from{font-size:15px;color:#9aa3b2;margin-bottom:4px}
.price-row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.price{font-weight:950;font-size:24px;color:var(--navy);letter-spacing:-.04em}
.plan-pill{
  background:#fff0f0;color:var(--coral);border:1px solid #ffd9d9;border-radius:999px;
  padding:8px 11px;font-size:13px;font-weight:900;
}
.lower{padding:78px 0;background:#fff}
.lower-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.panel{
  background:linear-gradient(135deg,var(--navy),#12275c);
  color:white;border-radius:30px;padding:40px;box-shadow:var(--shadow)
}
.phone-card{
  background:white;color:var(--navy);border-radius:28px;padding:26px;max-width:310px;margin:0 auto;
  box-shadow:0 22px 55px rgba(0,0,0,.25)
}
.qr{
  width:135px;height:135px;margin:18px auto;border-radius:17px;
  background:linear-gradient(90deg,#111 10px,transparent 10px) 0 0/22px 22px,
             linear-gradient(#111 10px,transparent 10px) 0 0/22px 22px,#fff;
  border:12px solid #fff;box-shadow:0 10px 28px rgba(7,20,51,.12)
}
.steps{display:grid;gap:14px;margin-top:20px}
.step{display:flex;gap:16px;border:1px solid var(--line);border-radius:14px;padding:18px;background:#fff}
.num{width:36px;height:36px;border-radius:50%;background:var(--coral);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:950;flex:0 0 36px}
.step h3{margin:0 0 5px;color:var(--navy)}
.step p{margin:0;color:var(--muted);line-height:1.45}
.compat{
  margin-top:38px;background:#fff;border:1px solid var(--line);border-radius:18px;
  padding:30px;display:flex;align-items:center;justify-content:space-between;gap:25px;
  box-shadow:0 8px 22px rgba(7,20,51,.06)
}
.compat p{margin:10px 0 0;color:var(--muted);line-height:1.5}
.checker{display:flex;gap:10px;background:#f6f8fb;border:1px solid var(--line);border-radius:12px;padding:8px;min-width:410px}
.checker input{border:0;background:transparent;outline:0;padding:0 10px;flex:1}
.faq{background:#fafbfe;padding:70px 0}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:15px;margin-top:24px}
details{background:white;border:1px solid var(--line);border-radius:12px;padding:18px 20px}
summary{font-weight:950;color:var(--navy);cursor:pointer}
details p{color:var(--muted);line-height:1.5}
.footer{background:#06112d;color:white;padding:42px 0}
.footer-grid{display:flex;align-items:flex-start;justify-content:space-between;gap:30px}
.footer img{height:64px;background:white;border-radius:10px}
.footer a,.footer p{color:#bdc7dc}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.mobile-only{display:none}
@media(max-width:1050px){
  .container{width:min(100% - 36px,1390px)}
  .nav-links{display:none}.mobile-only{display:inline-flex}
  .hero::before{
    background:linear-gradient(90deg,rgba(255,255,255,.98),rgba(255,255,255,.78)),url('/assets/images/hero-travel.jpg') center/cover no-repeat;
  }
  .offer{position:relative;right:auto;bottom:auto;margin:0 auto 26px;width:min(90%,350px)}
  .features{grid-template-columns:repeat(2,1fr)}
  .feature:nth-child(2){border-right:0}
  .feature{border-bottom:1px solid #e1e6ef}
  .destinations{grid-template-columns:repeat(2,1fr)}
  .lower-grid,.compat{grid-template-columns:1fr;display:grid}
  .checker{min-width:0}
}
@media(max-width:640px){
  .header{height:84px}.logo img{height:58px}.nav-actions .icon-text{display:none}.nav-actions{gap:10px}
  .btn{padding:14px 18px}
  h1{font-size:44px}.lead{font-size:19px}
  .hero-inner{padding:48px 0 32px}
  .benefits{gap:14px}.benefit-icon{width:42px;height:42px}
  .features,.destinations,.faq-grid{grid-template-columns:1fr}
  .feature{border-right:0}
  .section-head,.footer-grid{display:block}
  .view-all{display:inline-block;margin-top:10px}
  .checker{display:block}.checker .btn{width:100%;margin-top:10px}
  .actions .btn{width:100%}
}
