:root {
  --black: #0d0d0d;
  --panel: #111315;
  --panel-2: #161a1d;
  --yellow: #ffc107;
  --yellow-2: #f6b800;
  --white: #ffffff;
  --muted: #b8bdc4;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 22px 60px rgba(0, 0, 0, .36);
  --radius: 8px;
  --header-h: 104px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 193, 7, .08), transparent 26rem),
    linear-gradient(180deg, #080909 0%, #111315 48%, #080909 100%);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: calc(100% - 32px); max-width: 1140px; margin: 0 auto; }
.section { padding: 68px 0; border-top: 1px solid rgba(255, 255, 255, .06); }
.section-head { text-align: center; margin: 0 auto 30px; max-width: 680px; }
.eyebrow {
  margin: 0 0 6px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: .98;
  letter-spacing: 0;
  max-width: 660px;
}
h2 { margin-bottom: 10px; font-size: clamp(26px, 3vw, 40px); line-height: 1.12; letter-spacing: 0; }
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.25; letter-spacing: 0; }
p { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #090909; background: linear-gradient(135deg, var(--yellow), var(--yellow-2)); box-shadow: 0 12px 28px rgba(255, 193, 7, .18); }
.btn--ghost { border-color: rgba(255, 255, 255, .38); background: rgba(11, 12, 13, .72); color: var(--white); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(9, 10, 10, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(7, 8, 8, .96); box-shadow: 0 16px 50px rgba(0, 0, 0, .34); }
.topbar { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 12px; }
.topbar a { color: var(--yellow); font-weight: 800; }
.navbar__inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand__badge {
  width: 46px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--yellow);
  background: linear-gradient(160deg, #0a0a0a, #232323);
  border: 3px solid var(--yellow);
  border-radius: 14px 14px 18px 18px;
  clip-path: polygon(50% 0, 100% 13%, 100% 70%, 50% 100%, 0 70%, 0 13%);
}
.brand__taxi { position: absolute; top: 9px; font-size: 7px; font-weight: 900; color: #111; background: var(--yellow); padding: 1px 4px; border-radius: 2px; }
.brand__car { width: 24px; height: 10px; margin-top: 4px; border-radius: 12px 12px 3px 3px; background: var(--yellow); box-shadow: -8px 5px 0 -5px var(--yellow), 8px 5px 0 -5px var(--yellow); }
.brand__stars { position: absolute; bottom: 10px; font-size: 6px; letter-spacing: 1px; }
.brand__text { display: block; font-size: 21px; font-weight: 900; line-height: 1.05; white-space: nowrap; }
.brand__text strong { color: var(--yellow); }
.brand__text small { color: var(--muted); font-size: 9px; font-weight: 600; margin-top: 4px; letter-spacing: .3px; }
.site-header .brand__text small { display: none; }
.nav-panel { display: flex; align-items: center; gap: 24px; }
.menu { display: flex; align-items: center; gap: 20px; list-style: none; padding: 0; margin: 0; }
.menu li { flex: 0 0 auto; }
.menu a {
  color: #e8eaee;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}
.menu a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.menu a:hover, .menu a.is-active { color: var(--yellow); }
.menu a:hover::after, .menu a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-weight: 900; color: var(--white); white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 42px; border: 1px solid var(--line); border-radius: 7px; background: #121416; color: var(--white); padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-h) + 58px) 0 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 8, .96) 0%, rgba(7, 8, 8, .76) 38%, rgba(7, 8, 8, .36) 72%, rgba(7, 8, 8, .82) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, .05), rgba(8, 8, 8, .86)),
    url("../../img/hero-taksi.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 372px; gap: 56px; align-items: center; }
.hero__lead { max-width: 580px; font-size: 18px; color: #eef0f2; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 28px; }
.hero__checks { display: flex; gap: 28px; flex-wrap: wrap; color: #e4e7ea; font-size: 13px; }
.hero__checks span { display: inline-flex; align-items: center; gap: 8px; }
.hero__checks span::before { content: ""; width: 16px; height: 16px; border: 2px solid var(--yellow); border-radius: 50%; background: radial-gradient(circle, var(--yellow) 2px, transparent 3px); }
.booking-card, .contact-form {
  padding: 24px;
  border: 1px solid rgba(255, 193, 7, .42);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 19, 21, .94), rgba(10, 11, 12, .92));
  box-shadow: var(--shadow);
}
.booking-card__head p { margin-bottom: 2px; color: var(--white); font-size: 24px; font-weight: 900; line-height: 1.15; }
.booking-card__head span { color: var(--yellow); }
.booking-card__head small { display: block; margin-bottom: 18px; color: var(--muted); }
label { display: grid; gap: 7px; margin-bottom: 12px; color: #eef0f2; font-size: 12px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 11px 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255, 193, 7, .12); }
select option { color: #111; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-submit, .contact-submit { width: 100%; margin-top: 4px; }
.form-note { margin: 12px 0 0; text-align: center; font-size: 12px; color: var(--muted); }
.form-note a { color: var(--yellow); font-weight: 900; }
.mobile-break { display: none; }

.trust-strip { margin-top: -36px; position: relative; z-index: 2; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17, 19, 21, .88); box-shadow: var(--shadow); backdrop-filter: blur(16px); overflow: hidden; }
.trust-card { min-height: 128px; padding: 24px; border-right: 1px solid var(--line); display: grid; align-content: center; gap: 5px; }
.trust-card:last-child { border-right: 0; }
.trust-card strong { font-size: 16px; line-height: 1.2; }
.trust-card p { margin: 0; font-size: 13px; }
.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  position: relative;
  flex: 0 0 auto;
}
.icon::before { content: ""; display: block; width: 17px; height: 17px; border: 2px solid currentColor; border-radius: 4px; }
.icon-clock::before { border-radius: 50%; }
.icon-clock::after { content: ""; position: absolute; width: 2px; height: 11px; background: currentColor; transform: translate(2px, -3px) rotate(45deg); transform-origin: bottom; }
.icon-user::before { border-radius: 50% 50% 45% 45%; height: 18px; }
.icon-route::before { border-width: 0 3px 3px 0; transform: rotate(-35deg); border-radius: 0; }
.icon-shield::before { clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%); border-radius: 0; }
.icon-plane::before { width: 20px; height: 3px; border-width: 0; background: currentColor; transform: rotate(-28deg); box-shadow: -5px 6px 0 -1px currentColor, 6px -5px 0 -1px currentColor; }
.icon-car::before { width: 22px; height: 11px; border-radius: 10px 10px 3px 3px; }
.icon-crown::before { border-radius: 0; clip-path: polygon(0 100%, 12% 25%, 38% 62%, 50% 0, 62% 62%, 88% 25%, 100% 100%); background: currentColor; border: 0; }
.icon-briefcase::before { height: 14px; border-radius: 3px; }
.icon-driver::before { border-radius: 50%; box-shadow: 0 11px 0 -6px currentColor; }
.icon-pin::before { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.icon-headset::before { border-radius: 14px 14px 4px 4px; border-bottom: 0; }
.icon-leaf::before { border-radius: 100% 0 100% 0; transform: rotate(-18deg); }
.icon-card::before { width: 22px; height: 15px; border-radius: 3px; box-shadow: inset 0 5px 0 rgba(255,255,255,.2); }

.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card, .fleet-card, .testimonial, .why-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover, .fleet-card:hover, .testimonial:hover, .why-item:hover { transform: translateY(-5px); border-color: rgba(255, 193, 7, .5); box-shadow: 0 24px 54px rgba(0, 0, 0, .28); }
.service-card { position: relative; padding: 0 18px 22px; text-align: center; overflow: hidden; }
.service-card img { width: calc(100% + 36px); margin: 0 -18px; height: 142px; object-fit: cover; filter: saturate(1.04) contrast(1.04); }
.service-card__icon { margin: -24px auto 16px; background: var(--yellow); color: #111; border-color: var(--yellow); z-index: 1; }
.service-card h3 { font-size: 17px; }
.service-card p { min-height: 64px; margin-bottom: 12px; font-size: 13px; }
.service-card a { color: var(--yellow); font-size: 13px; font-weight: 900; }
.service-card a::after { content: " →"; }

.fleet { padding-top: 34px; }
.fleet-visual { height: 260px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: -42px; opacity: .78; }
.fleet-visual img { width: 100%; height: 100%; object-fit: cover; }
.fleet-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fleet-card { overflow: hidden; background: rgba(14, 16, 18, .92); }
.fleet-card div { min-height: 132px; padding: 28px 26px 10px; background: linear-gradient(135deg, rgba(255, 193, 7, .12), transparent 64%); }
.fleet-card p { margin-bottom: 2px; color: var(--white); font-weight: 900; font-size: 22px; }
.fleet-card h3 { color: var(--muted); font-size: 14px; }
.fleet-card ul { margin: 0; padding: 0 26px 16px; list-style: none; color: #e9ecef; font-size: 13px; }
.fleet-card li::before { content: "✓"; color: var(--yellow); margin-right: 8px; font-weight: 900; }
.fleet-card strong { display: block; padding: 14px 18px; background: linear-gradient(135deg, var(--yellow), var(--yellow-2)); color: #111; text-align: center; font-size: 17px; }
.fleet-card--featured { border-color: rgba(255, 193, 7, .62); }

.why { padding-top: 42px; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why-item { padding: 24px 18px; background: transparent; box-shadow: none; }
.why-item h3 { margin-top: 16px; font-size: 16px; }
.why-item p { margin-bottom: 0; font-size: 13px; }

.app-section { padding: 58px 0; border-top: 1px solid rgba(255, 193, 7, .22); border-bottom: 1px solid rgba(255, 255, 255, .06); background: linear-gradient(110deg, rgba(255, 193, 7, .1), transparent 35%, rgba(255,255,255,.035)); }
.app-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr) 340px; gap: 42px; align-items: center; }
.phone-mock { width: 210px; height: 360px; margin: 0 auto; border: 10px solid #070707; border-radius: 32px; background: #17191b; box-shadow: 22px 24px 45px rgba(0,0,0,.36), inset 0 0 0 1px rgba(255,255,255,.15); transform: rotate(-7deg); }
.phone-mock__screen { height: 100%; padding: 48px 18px 20px; border-radius: 22px; background: linear-gradient(180deg, #202326, #0d0f10); position: relative; }
.phone-mock__screen span { position: absolute; top: 16px; left: 50%; width: 76px; height: 6px; transform: translateX(-50%); border-radius: 20px; background: #070707; }
.phone-mock__screen h3 { color: var(--yellow); }
.phone-mock__screen p { padding: 12px; border: 1px solid var(--line); border-radius: 6px; color: #e9ecef; }
.phone-mock__screen button { width: 100%; min-height: 40px; border: 0; border-radius: 6px; color: #111; background: var(--yellow); font-weight: 900; }
.app-copy h2 { max-width: 520px; }
.app-copy p:not(.eyebrow) { max-width: 580px; font-size: 17px; }
.app-features { display: grid; gap: 18px; }
.app-features article { display: flex; gap: 16px; align-items: center; }
.app-features h3 { margin-bottom: 0; }
.app-features p { margin-bottom: 0; font-size: 13px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial { padding: 24px; }
.testimonial span { color: var(--yellow); letter-spacing: 2px; font-size: 17px; }
.testimonial p { min-height: 82px; margin: 10px 0 14px; color: #eff1f3; }
.testimonial strong { display: block; }
.testimonial small { color: var(--muted); }

.cta-banner {
  margin: 10px auto 0;
  width: min(1140px, calc(100% - 32px));
  border: 1px solid rgba(255, 193, 7, .52);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, .96), rgba(10, 10, 10, .72), rgba(10, 10, 10, .96)),
    url("../../img/hero-taksi.jpg") center 58% / cover no-repeat;
}
.cta-banner__inner { min-height: 126px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px; }
.cta-banner h2 { max-width: 650px; margin: 0; font-size: clamp(24px, 2.8vw, 36px); }
.cta-banner__actions { display: grid; gap: 12px; justify-items: end; }
.cta-phone { color: var(--white); font-size: 22px; font-weight: 900; white-space: nowrap; }
.cta-phone::before { content: "☎"; color: var(--yellow); margin-right: 10px; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 52px; align-items: start; }
.contact-info > p { max-width: 600px; }
.contact-info ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.contact-info li { color: var(--muted); padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-info strong { color: var(--white); }
.contact-info a { color: var(--yellow); font-weight: 800; }

.footer { padding: 42px 0 92px; border-top: 1px solid var(--line); background: #0a0b0b; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 28px; }
.footer-brand { margin-bottom: 16px; }
.footer h3 { color: var(--white); font-size: 14px; text-transform: uppercase; }
.footer a, .footer p { display: block; margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.footer a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 13px; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(37, 211, 102, .28);
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(37, 211, 102, .34); }
.whatsapp-float svg { width: 26px; height: 26px; }

.reveal { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .nav-panel { gap: 16px; }
  .menu { gap: 15px; }
  .nav-actions .btn { display: none; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 82px; }
  .topbar { display: none; }
  .navbar__inner { min-height: 82px; }
  .brand__text { font-size: 18px; }
  .brand__badge { width: 42px; height: 48px; }
  .menu-toggle { display: block; }
  .nav-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 82px;
    height: calc(100vh - 82px);
    display: block;
    padding: 22px 16px 32px;
    background: rgba(9, 10, 10, .98);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .nav-panel.is-open { transform: translateX(0); }
  .menu { display: grid; gap: 0; }
  .menu a { display: block; padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
  .menu a::after { display: none; }
  .nav-actions { display: grid; margin-top: 22px; }
  .nav-actions .btn { display: inline-flex; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 42px) 0 52px; }
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  h1 { font-size: clamp(38px, 10vw, 58px); }
  .trust-strip { margin-top: 0; padding: 18px 0 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card:nth-child(2) { border-right: 0; }
  .trust-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; text-align: center; }
  .app-copy p:not(.eyebrow), .app-copy h2 { margin-left: auto; margin-right: auto; }
  .app-features { width: min(420px, 100%); margin: 0 auto; text-align: left; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner__inner { display: grid; justify-items: start; }
  .cta-banner__actions { justify-items: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container, .cta-banner { width: calc(100% - 40px); max-width: 1140px; }
  .section { padding: 50px 0; }
  .navbar__inner { gap: 12px; }
  .brand { max-width: calc(100% - 58px); }
  .brand__text { font-size: 16px; }
  .brand__text small { font-size: 8px; }
  .brand__badge { width: 38px; height: 44px; border-width: 2px; }
  .hero__grid, .hero__content, .booking-card, .contact-form {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: 0;
    justify-self: start;
  }
  h1 { max-width: calc(100vw - 40px); font-size: 30px; line-height: 1.1; overflow-wrap: break-word; }
  .hero__lead { font-size: 16px; }
  .mobile-break { display: block; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .hero__actions .btn { width: 100%; padding: 0 16px; }
  .hero__checks { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .booking-card, .contact-form { padding: 18px; }
  .form-row, .service-grid, .trust-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; padding: 20px; }
  .trust-card:last-child { border-bottom: 0; }
  .service-card p { min-height: 0; }
  .fleet-visual { height: 190px; margin-bottom: 18px; }
  .fleet-card div { min-height: 108px; }
  .phone-mock { width: 188px; height: 324px; transform: rotate(-4deg); }
  .testimonial p { min-height: 0; }
  .cta-banner__inner { padding: 20px; }
  .cta-phone { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .whatsapp-float { right: 12px; bottom: 12px; min-height: 48px; padding: 0 14px; font-size: 14px; }
}

@media (max-width: 380px) {
  .brand__text { font-size: 14px; }
  .brand__text small { display: none; }
  h1 { font-size: 36px; }
  .btn { width: 100%; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 50px; justify-content: center; padding: 0; }
}

@media (max-width: 480px) {
  .container, .cta-banner {
    width: min(calc(100% - 40px), 320px);
  }
  .hero__grid, .hero__content, .booking-card, .contact-form {
    width: min(calc(100vw - 40px), 320px);
    max-width: 320px;
  }
  h1 {
    max-width: 320px;
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
