:root {
    --teal: #18c2b6;
    --teal-dark: #0d6b64;
    --ink: #0a3d3a;
    --muted: #5b7775;
    --line: #dcebe9;
    --soft: #f5fbfa;
    --orange: #ff6b35;
    --shadow: 0 18px 45px rgba(8, 73, 68, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 112px 0; }

.site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(220,235,233,.95);
    box-shadow: 0 4px 18px rgba(8,73,68,.06);
    backdrop-filter: blur(14px);
}
.header-inner { height: 66px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 74px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; margin-right: 38px; color: var(--muted); font-size: 14px; font-weight: 600; }
.desktop-nav a, .mobile-nav a { transition: color .2s ease; }
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--teal); box-shadow: 0 12px 25px rgba(24,194,182,.25); }
.button-primary:hover { background: #11aea4; box-shadow: 0 14px 30px rgba(24,194,182,.35); }
.button-small { padding: 11px 20px; font-size: 13px; }
.button-large { padding: 17px 27px; font-size: 15px; }
.menu-toggle { display: none; width: 42px; height: 40px; border: 0; border-radius: 12px; background: var(--soft); cursor: pointer; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--teal-dark); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { min-height: 770px; padding-top: 165px; padding-bottom: 95px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 15px;
    border-radius: 999px;
    background: #e7faf7;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 800;
}
.eyebrow-light { color: #fff; background: rgba(255,255,255,.13); }
.hero h1 { max-width: 700px; margin: 28px 0 24px; font-size: clamp(52px, 6vw, 82px); line-height: .99; letter-spacing: -4px; font-weight: 900; }
.hero h1 span, .section-heading h2 span, .value-copy h2 span, .download-inner h2 span { color: var(--teal); }
.hero-lead { max-width: 540px; margin: 0 0 38px; color: var(--muted); font-size: 20px; line-height: 1.65; font-weight: 500; }
.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 54px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.45; }
.hero-trust strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack span { display: grid; place-items: center; width: 31px; height: 31px; margin-left: -5px; border: 3px solid #fff; border-radius: 50%; color: #91b9b4; background: #eaf6f4; font-size: 25px; line-height: .5; }
.avatar-stack span:first-child { margin-left: 0; }
.hero-visual { position: relative; min-height: 535px; display: grid; place-items: center; }
.hero-image { position: relative; z-index: 2; width: min(360px, 70%); border-radius: 2px; box-shadow: 0 30px 45px rgba(20,57,54,.18); }
.hero-orbit { position: absolute; border: 1px solid rgba(24,194,182,.17); border-radius: 50%; }
.orbit-one { width: 460px; height: 460px; }
.orbit-two { width: 600px; height: 600px; border-color: rgba(24,194,182,.09); }
.hero-badge { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 14px 18px; border: 1px solid rgba(220,235,233,.8); border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); font-size: 13px; }
.hero-badge strong, .hero-badge small { display: block; }
.hero-badge strong { color: var(--ink); }
.hero-badge small { margin-top: 4px; color: #78928f; font-size: 11px; }
.badge-booking { top: 100px; left: 2%; }
.badge-fees { right: 1%; bottom: 95px; }
.mini-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; font-weight: 900; }
.mini-icon.teal { color: var(--teal); background: #e8faf7; }

.services-section { background: #fff; }
.section-heading { max-width: 760px; margin: 0 auto 58px; text-align: center; }
.section-heading h2 { margin: 0 0 17px; font-size: clamp(34px, 4vw, 49px); line-height: 1.08; letter-spacing: -2px; font-weight: 900; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; font-weight: 500; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 310px; padding: 27px 24px 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.85); border-radius: 24px; box-shadow: 0 5px 0 rgba(255,255,255,.6) inset; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 20px 33px rgba(8,73,68,.13); }
.service-accent { position: absolute; top: 0; right: 0; left: 0; height: 5px; }
.service-icon { display: grid; place-items: center; width: 59px; height: 59px; margin-bottom: 20px; border-radius: 17px; color: #fff; box-shadow: 0 9px 18px rgba(8,73,68,.17); transition: transform .25s ease; }
.service-card:hover .service-icon { transform: scale(1.09) rotate(-3deg); }
.service-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.service-card h3 { max-width: 245px; margin: 0 0 10px; color: var(--ink); font-size: 17px; line-height: 1.28; font-weight: 800; }
.service-card p { margin: 0 0 20px; color: #587572; font-size: 13px; line-height: 1.65; font-weight: 500; }
.service-link { display: flex; align-items: flex-start; gap: 7px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(8,73,68,.12); color: var(--teal-dark); font-size: 11px; line-height: 1.45; font-weight: 800; transition: gap .2s ease; }
.service-link:hover { gap: 11px; color: var(--teal); }
.service-link span { flex: 0 0 auto; font-size: 17px; line-height: 11px; }
.coming-soon { position: absolute; top: 19px; right: 17px; padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.8); color: var(--teal-dark); font-size: 10px; font-weight: 800; }
.card-travel { background: linear-gradient(135deg, #fffbeb, #fff2dc); }
.card-travel .service-accent { background: linear-gradient(90deg,#fbbf24,#fb923c); }
.card-travel .service-icon { background: linear-gradient(135deg,#fbbf24,#f97316); }
.card-dining { background: linear-gradient(135deg, #edfffc, #d9f7f2); }
.card-dining .service-accent { background: linear-gradient(90deg,#2dd4bf,#22d3ee); }
.card-dining .service-icon { background: linear-gradient(135deg,#2dd4bf,#06b6d4); }
.card-rentals { background: linear-gradient(135deg, #eef2ff, #dbeafe); }
.card-rentals .service-accent { background: linear-gradient(90deg,#818cf8,#3b82f6); }
.card-rentals .service-icon { background: linear-gradient(135deg,#6366f1,#2563eb); }
.card-delivery { background: linear-gradient(135deg, #fff7ed, #ffe4e6); }
.card-delivery .service-accent { background: linear-gradient(90deg,#fb923c,#f87171); }
.card-delivery .service-icon { background: linear-gradient(135deg,#fb923c,#ef4444); }
.card-shopping { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.card-shopping .service-accent { background: linear-gradient(90deg,#34d399,#22c55e); }
.card-shopping .service-icon { background: linear-gradient(135deg,#34d399,#16a34a); }
.card-sports { background: linear-gradient(135deg, #f7fee7, #dcfce7); }
.card-sports .service-accent { background: linear-gradient(90deg,#a3e635,#4ade80); }
.card-sports .service-icon { background: linear-gradient(135deg,#84cc16,#22c55e); }
.card-beauty { background: linear-gradient(135deg, #fdf2f8, #fae8ff); }
.card-beauty .service-accent { background: linear-gradient(90deg,#f472b6,#e879f9); }
.card-beauty .service-icon { background: linear-gradient(135deg,#ec4899,#d946ef); }
.card-home { background: linear-gradient(135deg, #f8fafc, #dbeafe); }
.card-home .service-accent { background: linear-gradient(90deg,#94a3b8,#60a5fa); }
.card-home .service-icon { background: linear-gradient(135deg,#64748b,#3b82f6); }

.value-section { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.value-glow { position: absolute; top: -220px; right: -100px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(24,194,182,.3), transparent 68%); }
.value-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.value-copy h2 { margin: 23px 0 22px; color: #fff; font-size: clamp(38px, 4vw, 55px); line-height: 1.03; letter-spacing: -2px; font-weight: 900; }
.value-copy p { max-width: 480px; color: #b8d6d1; font-size: 16px; line-height: 1.75; }
.value-list { display: grid; gap: 22px; }
.value-item { display: flex; align-items: center; gap: 20px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.06); }
.value-icon { display: grid; place-items: center; flex: 0 0 auto; width: 53px; height: 53px; border-radius: 15px; background: rgba(24,194,182,.2); color: var(--teal); font-size: 26px; font-weight: 900; }
.value-item h3 { margin: 0 0 5px; font-size: 17px; }
.value-item p { margin: 0; color: #9fc0bb; font-size: 13px; line-height: 1.5; }

.global-section { background: linear-gradient(180deg, #f2fcfa, #fff); }
.global-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.global-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.85); box-shadow: 0 8px 25px rgba(8,73,68,.05); }
.global-card-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 21px; }
.global-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: #e5faf6; color: var(--teal); font-size: 31px; font-weight: 500; }
.global-icon.orange { background: #fff0e9; color: var(--orange); }
.global-card h3 { margin: 0 0 6px; font-size: 20px; }
.global-card-heading strong { color: var(--teal-dark); font-size: 12px; }
.orange-text { color: var(--orange) !important; }
.global-card > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.global-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.global-card li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 13px; font-weight: 600; }
.global-card li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #e5faf6; color: var(--teal); font-weight: 900; }
.location-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 23px; }
.location-pills span { padding: 8px 11px; border-radius: 999px; background: #f1f7f6; color: var(--ink); font-size: 11px; font-weight: 700; }
.location-pills small { color: var(--muted); font-size: 9px; }
.text-link { color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.text-link:hover { color: var(--teal); }

.how-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: 940px; margin: 0 auto; }
.step { position: relative; text-align: center; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 35px; left: calc(50% + 60px); width: calc(100% - 120px); border-top: 2px dashed #cde7e3; }
.step-number { color: var(--teal); font-size: 12px; font-weight: 900; }
.step-icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 12px auto 20px; border-radius: 21px; background: var(--teal); color: #fff; box-shadow: 0 12px 22px rgba(24,194,182,.25); font-size: 29px; font-weight: 800; }
.step h3 { margin: 0 0 9px; font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.download-section { padding: 75px 0; overflow: hidden; background: linear-gradient(120deg, var(--teal-dark), var(--teal)); color: #fff; }
.download-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.download-inner h2 { margin: 20px 0 12px; color: #fff; font-size: clamp(37px, 4vw, 52px); line-height: 1.06; letter-spacing: -2px; }
.download-inner p { margin: 0; color: #c7f5f0; font-size: 15px; }
.download-actions { display: flex; gap: 12px; }
.store-button { display: flex; min-width: 145px; flex-direction: column; padding: 12px 17px; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; background: rgba(0,0,0,.18); transition: background .2s ease, transform .2s ease; }
.store-button:hover { transform: translateY(-3px); background: rgba(0,0,0,.3); }
.store-button small { color: #c7f5f0; font-size: 9px; }
.store-button strong { margin-top: 3px; font-size: 15px; }

.site-footer { padding: 80px 0 25px; background: #f7fcfb; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 45px; padding-bottom: 58px; }
.footer-brand img { width: 88px; margin-bottom: 20px; }
.footer-brand p { max-width: 320px; margin: 0 0 21px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.site-footer h3 { margin: 3px 0 18px; font-size: 14px; }
.site-footer > .container > div:not(.footer-bottom) > a, .footer-grid > div:not(.footer-brand) > a { display: block; margin: 0 0 12px; color: var(--muted); font-size: 12px; font-weight: 500; }
.site-footer a:hover { color: var(--teal); }
.social-links { display: flex; gap: 9px; }
.social-links a { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #e7f5f2; color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.social-links a:hover { color: #fff; background: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid var(--line); color: #75928f; font-size: 11px; font-weight: 600; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: clamp(48px, 7vw, 68px); }
    .value-grid { gap: 50px; }
}
@media (max-width: 720px) {
    .container { width: min(100% - 30px, 560px); }
    .section { padding: 78px 0; }
    .desktop-nav, .header-actions .button { display: none; }
    .menu-toggle { display: block; }
    .mobile-nav { display: flex; max-height: 0; overflow: hidden; flex-direction: column; gap: 0; padding: 0 15px; background: rgba(255,255,255,.98); transition: max-height .3s ease, padding .3s ease; }
    .mobile-nav.is-open { max-height: 370px; padding: 8px 15px 18px; border-top: 1px solid var(--line); }
    .mobile-nav a { padding: 13px 5px; color: var(--muted); font-size: 14px; font-weight: 700; }
    .mobile-nav .button { margin-top: 8px; padding: 13px; color: #fff; }
    .hero { min-height: auto; padding-top: 130px; }
    .hero-grid, .value-grid, .global-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow, .hero-copy .button { margin-right: auto; margin-left: auto; }
    .hero h1 { margin-top: 23px; font-size: clamp(45px, 13vw, 64px); letter-spacing: -3px; }
    .hero-lead { margin-right: auto; margin-left: auto; font-size: 16px; }
    .hero-trust { justify-content: center; text-align: left; }
    .hero-visual { min-height: 410px; margin-top: 20px; }
    .hero-image { width: min(280px, 67%); }
    .orbit-one { width: 360px; height: 360px; }
    .orbit-two { width: 470px; height: 470px; }
    .badge-booking { top: 45px; left: 0; }
    .badge-fees { right: 0; bottom: 48px; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2 { font-size: 36px; letter-spacing: -1.5px; }
    .section-heading p { font-size: 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 275px; }
    .value-grid { gap: 42px; }
    .value-copy h2 { font-size: 43px; }
    .global-card { padding: 23px; }
    .steps-grid { grid-template-columns: 1fr; gap: 34px; }
    .step:not(:last-child)::after { top: auto; bottom: -22px; left: 50%; width: 1px; height: 18px; border-top: 0; border-left: 2px dashed #cde7e3; }
    .download-inner { align-items: flex-start; flex-direction: column; }
    .download-actions { width: 100%; }
    .store-button { flex: 1; min-width: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}