:root {
  --yellow:#f5b800;
  --yellow-dark:#d79f00;
  --black:#111;
  --dark:#1b1b1b;
  --gray:#6f6f6f;
  --light:#f7f7f7;
  --white:#fff;
  --border:#e8e8e8;
  --radius:24px;
  --shadow:0 18px 45px rgba(0,0,0,.10);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:Arial,Helvetica,sans-serif;color:var(--black);background:var(--white);line-height:1.6}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(17,17,17,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.logo img{width:170px;height:auto}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
  color:#fff;
  font-size:15px;
}

.nav a{opacity:.86}
.nav a:hover{opacity:1;color:var(--yellow)}

.header-actions{display:flex;align-items:center;gap:12px}
.lang{color:#fff;font-size:14px;opacity:.85}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
}

.btn-primary{background:var(--yellow);color:var(--black)}
.btn-primary:hover{background:var(--yellow-dark);transform:translateY(-1px)}
.btn-dark{background:var(--black);color:var(--white)}
.btn-light{background:var(--white);color:var(--black);border-color:var(--border)}

.hero{
  background:
    radial-gradient(circle at 80% 20%,rgba(245,184,0,.35),transparent 28%),
    linear-gradient(135deg,#111 0%,#181818 48%,#f5b800 48%,#f5b800 100%);
  color:#fff;
  padding:74px 0 54px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:46px;
}

.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(245,184,0,.14);
  color:var(--yellow);
  font-weight:700;
  font-size:14px;
  margin-bottom:20px;
}

.hero h1{
  font-size:clamp(38px,5vw,68px);
  line-height:1.02;
  letter-spacing:-1.5px;
  margin-bottom:22px;
}

.hero p{
  max-width:620px;
  font-size:19px;
  color:rgba(255,255,255,.86);
  margin-bottom:28px;
}

.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:26px}

.hero-meta{display:flex;flex-wrap:wrap;gap:12px}
.meta-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:12px 16px;
  min-width:132px;
}
.meta-card strong{display:block;color:var(--yellow);font-size:20px}
.meta-card span{color:rgba(255,255,255,.76);font-size:13px}

.hero-phone{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  border-radius:34px;
  padding:18px;
  box-shadow:var(--shadow);
}
.hero-phone img{width:100%;border-radius:26px}

.section{padding:78px 0}
.section-muted{background:var(--light)}

.section-head{max-width:800px;margin-bottom:34px}
.section-head h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.12;
  letter-spacing:-1px;
  margin-bottom:14px;
}
.section-head p{color:var(--gray);font-size:18px}

.text-panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.text-panel p{color:var(--gray);font-size:17px;margin-bottom:16px}
.text-panel p:last-child{margin-bottom:0}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step-card,.food-card,.service-card,.city-card,.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.step-card{padding:26px}
.step-number{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--yellow);
  color:var(--black);
  font-weight:800;
  margin-bottom:18px;
}

.step-card h3,.food-card h3,.service-card h3,.city-card h3{font-size:21px;margin-bottom:10px}
.step-card p,.food-card p,.service-card p,.city-card p,.faq-item p{color:var(--gray)}

.food-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.food-card{overflow:hidden}
.food-card img{width:100%;height:168px;object-fit:cover}
.food-body{padding:22px}
.food-link{margin-top:16px;display:inline-flex;font-weight:700;color:var(--yellow-dark)}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.promo-card{
  background:#111;
  color:#fff;
  border-radius:32px;
  padding:40px;
  position:relative;
  overflow:hidden;
}

.promo-card:after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-90px;
  width:260px;
  height:260px;
  background:var(--yellow);
  border-radius:50%;
  opacity:.9;
}

.promo-card h2{
  font-size:42px;
  line-height:1.08;
  margin-bottom:16px;
  position:relative;
  z-index:1;
}

.promo-card p{
  color:rgba(255,255,255,.78);
  margin-bottom:16px;
  position:relative;
  z-index:1;
}

.promo-code{
  display:inline-flex;
  padding:14px 22px;
  border-radius:16px;
  background:var(--yellow);
  color:#111;
  font-size:24px;
  font-weight:900;
  letter-spacing:3px;
  position:relative;
  z-index:1;
}

.services{display:grid;gap:16px}

.service-card{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:18px;
  align-items:center;
  padding:20px;
}

.service-card img{
  width:64px;
  height:64px;
  border-radius:18px;
  object-fit:cover;
}

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

.city-card{
  padding:28px;
  min-height:210px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.92),rgba(255,255,255,.92)),
    url("/images/1606372242_cover-baku1.webp") center/cover;
}

.courier{
  background:linear-gradient(135deg,#f5b800 0%,#f5b800 50%,#111 50%,#111 100%);
  padding:78px 0;
}

.courier-card{
  background:#fff;
  border-radius:34px;
  padding:42px;
  display:grid;
  grid-template-columns:1fr .8fr;
  align-items:center;
  gap:30px;
  box-shadow:var(--shadow);
}

.courier-card h2{font-size:42px;line-height:1.1;margin-bottom:16px}
.courier-card p{color:var(--gray);font-size:18px;margin-bottom:18px}
.courier-card img{border-radius:26px}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.faq-item{padding:24px}
.faq-item h3{font-size:19px;margin-bottom:8px}

.final-cta{
  background:#111;
  color:#fff;
  border-radius:36px;
  padding:54px;
  text-align:center;
}
.final-cta h2{font-size:46px;line-height:1.1;margin-bottom:16px}
.final-cta p{color:rgba(255,255,255,.78);max-width:680px;margin:0 auto 26px;font-size:18px}

.footer{
  background:#111;
  color:rgba(255,255,255,.72);
  padding:42px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(4,1fr);
  gap:24px;
}

.footer h3,.footer h4{color:#fff;margin-bottom:12px}
.footer a{display:block;margin:8px 0;color:rgba(255,255,255,.68)}
.footer a:hover{color:var(--yellow)}

@media(max-width:980px){
  .nav{display:none}
  .hero-grid,.split,.courier-card,.footer-grid{grid-template-columns:1fr}
  .steps,.food-grid,.city-grid,.faq-grid{grid-template-columns:1fr 1fr}
  .hero{background:linear-gradient(180deg,#111 0%,#181818 62%,#f5b800 62%)}
}

@media(max-width:640px){
  .header-inner{height:auto;padding:16px 0;flex-wrap:wrap}
  .logo img{width:145px}
  .header-actions{width:100%;justify-content:space-between}
  .hero{padding:42px 0}
  .hero-actions{flex-direction:column}
  .btn{width:100%}
  .steps,.food-grid,.city-grid,.faq-grid{grid-template-columns:1fr}
  .promo-card,.final-cta,.courier-card,.text-panel{padding:28px;border-radius:26px}
  .footer-grid{grid-template-columns:1fr}
}