:root {
    --bg: #1e3a8a;
    --surface: #d97706;
    --surface-strong: #1b347a;
    --ink: #ffffff;
    --muted: rgba(255, 255, 255, 0.84);
    --muted-dark: rgba(30, 41, 59, 0.78);
    --line: rgba(251, 191, 36, 0.24);
    --accent: #fbbf24;
    --accent-deep: #d97706;
    --accent-soft: #fef9c3;
    --highlight: #fbbf24;
    --neutral: rgba(255, 255, 255, 0.8);
    --page-bg: #fef9c3;
    --text-dark: #1e293b;
    --shadow: 0 10px 24px rgba(30, 58, 138, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --section-space-sm: 40px;
    --section-space-md: 56px;
    --section-space-lg: 72px;
    --content-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background: var(--page-bg);
}

body::before,
body::after {
    display: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    width: 100%;
    margin: 0;
    padding: 0;
}

.section-inner {
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 14px 0;
    margin-bottom: 0;
    background: var(--bg);
    border-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    z-index: 20;
    transition: transform 220ms ease;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 8px));
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 14px;
}

.header-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-menu {
    display: none;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0 4px;
}

.site-header.is-menu-open .header-menu {
    display: grid;
}

.brand-lockup {
    display: grid;
    gap: 2px;
}

.brand-kicker,
.eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--highlight);
}

.brand-name,
h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    box-shadow: none;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    display: grid;
    gap: 12px;
    color: var(--neutral);
    font-weight: 700;
    font-size: 0.95rem;
}

.site-nav a {
    padding: 4px 0;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--ink);
}

.header-cta,
.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.primary-button {
    color: #fff;
    background: var(--accent-deep);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.secondary-button {
    color: var(--text-dark);
    background: var(--highlight);
    border: 1px solid rgba(30, 58, 138, 0.12);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.header-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
}

.hero,
.delivery-gallery-section,
.stats-section,
.app-download-section,
.split-section,
.mini-grid,
.services-grid,
.process-grid,
.contact-grid,
.site-footer {
    width: 100%;
    margin: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 62vh;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 58, 138, 0.68) 52%, rgba(217, 119, 6, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, var(--content-width));
    max-width: var(--content-width);
    margin: 0 auto;
}

.hero-overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 62vh;
    padding: var(--section-space-sm) 16px;
}

h1 {
    margin: 10px 0 14px;
    font-size: clamp(2.1rem, 10vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

h2 {
    margin: 0;
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.1;
}

h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

p {
    margin: 0;
    color: var(--muted-dark);
    font-size: 0.96rem;
    line-height: 1.55;
}

.hero,
.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero .brand-kicker,
.hero .eyebrow,
.hero-highlights li {
    color: var(--ink);
}

.hero-content > p {
    max-width: 34ch;
    font-size: 1rem;
}

.hero-actions,
.download-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    margin: 18px 0 0;
    list-style: none;
}

.hero-highlights li,
.content-card,
.service-card,
.process-card,
.contact-card,
.mini-card,
.site-footer {
    border-radius: var(--radius-lg);
}

.hero-highlights li {
    border-radius: 0;
}

.hero-highlights li {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--highlight);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.5;
}

.split-section,
.delivery-gallery-section,
.stats-section,
.app-download-section,
.services-grid,
.process-grid,
.contact-grid,
.mini-grid {
    padding: var(--section-space-sm) 0;
}

.app-download-section {
    background: var(--page-bg);
}

.delivery-gallery-section {
    background: #fffdf4;
}

.stats-section {
    background: var(--bg);
}

.stats-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-card {
    display: grid;
    gap: 10px;
    padding: 30px 24px;
    border: 1px solid rgba(251, 191, 36, 0.18);
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
}

.stat-card strong {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1;
    color: var(--bg);
}

.stat-card span {
    color: var(--bg);
    font-size: 1.02rem;
    font-weight: 700;
}

.delivery-gallery {
    padding: 8px 0;
}

.delivery-gallery-viewport {
    overflow: hidden;
}

.delivery-gallery-track {
    display: flex;
    gap: 12px;
    will-change: transform;
    transition: transform 520ms ease;
}

.delivery-gallery-item {
    flex: 0 0 100%;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(30, 58, 138, 0.06);
    border-radius: var(--radius-lg);
}

.delivery-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.app-download-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    padding: 22px 0;
}

.app-download-copy {
    display: grid;
    gap: 10px;
}

.app-download-actions {
    display: grid;
    gap: 10px;
}

.split-inner,
.cards-inner,
.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.split-section {
    background: var(--surface-strong);
}

.services-grid,
.mini-grid {
    background: #fbbf24;
}

.process-grid {
    background: #d97706;
}

.contact-grid {
    background: #1e3a8a;
}

.split-section h2,
.split-section h3,
.split-section p,
.split-section a,
.contact-grid h2,
.contact-grid h3,
.contact-grid p,
.contact-grid a {
    color: var(--ink);
}

.process-grid h2,
.process-grid h3,
.process-grid p,
.process-grid a {
    color: var(--text-dark);
}

.content-card,
.service-card,
.process-card,
.contact-card,
.mini-card {
    position: relative;
    padding: 18px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: none;
}

.mini-card,
.contact-card,
.large-card,
.content-card {
    display: grid;
    gap: 14px;
}

.mini-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.1);
    color: var(--bg);
}

.mini-card-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.accent-card {
    background: rgba(251, 191, 36, 0.14);
}

.services-grid .service-card,
.mini-grid .mini-card {
    background: rgba(254, 249, 195, 0.62);
    border: 1px solid rgba(30, 58, 138, 0.12);
}

.services-grid h2,
.services-grid h3,
.services-grid p,
.services-grid a,
.mini-grid h2,
.mini-grid h3,
.mini-grid p,
.mini-grid a {
    color: var(--text-dark);
}

.process-grid .process-card,
.contact-grid .contact-card,
.split-section .content-card {
    background: rgba(255, 255, 255, 0.06);
}

.contact-grid .contact-card,
.contact-grid h2,
.contact-grid p,
.contact-grid a {
    color: var(--ink);
}

.process-number {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--bg);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.mini-card a,
.footer-contact a {
    color: inherit;
    font-weight: 800;
}

.site-footer {
    padding: 28px 0 88px;
    background: #fffdf4;
    border-top: 1px solid rgba(30, 58, 138, 0.08);
}

.footer-inner {
    gap: 24px;
}

.footer-title {
    margin-top: 6px;
    color: var(--text-dark);
    font-weight: 700;
}

.footer-description {
    margin-top: 10px;
    max-width: 34ch;
}

.footer-brand-block,
.footer-column {
    display: grid;
    gap: 10px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.06);
    border: 1px solid rgba(30, 58, 138, 0.12);
    color: var(--text-dark);
}

.social-button svg {
    width: 18px;
    height: 18px;
    display: block;
}

.social-button.is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: var(--muted-dark);
}

.footer-contact p {
    color: var(--muted-dark);
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(30, 58, 138, 0.08);
}

.footer-bottom p {
    color: rgba(30, 41, 59, 0.6);
    font-size: 0.88rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c45);
    color: #fff;
    box-shadow: 0 18px 32px rgba(18, 140, 69, 0.28);
    z-index: 40;
    justify-content: center;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.whatsapp-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.whatsapp-label {
    font-weight: 800;
}

@media (min-width: 721px) {
    .section-inner {
        width: min(100% - 48px, var(--content-width));
    }

    .site-header {
        padding: 16px 0;
    }

    .header-cta,
    .primary-button,
    .secondary-button {
        width: auto;
    }

    .hero-overlay-content {
        min-height: 68vh;
        padding: var(--section-space-md) 24px;
    }

    .hero-actions,
    .download-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .delivery-gallery-track {
        gap: 16px;
    }

    .delivery-gallery-item {
        flex-basis: calc((100% - 16px) / 2);
        aspect-ratio: 4 / 4.6;
    }

    .app-download-inner {
        grid-template-columns: 1.4fr auto;
        gap: 24px;
        padding: 8px 0;
    }

    .app-download-actions {
        width: auto;
        min-width: 240px;
    }

    .header-menu {
        padding-top: 16px;
    }

    .hero-highlights,
    .cards-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-inner,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .whatsapp-float {
        left: auto;
        right: 18px;
        width: auto;
    }
}

@media (min-width: 981px) {
    .section-inner {
        width: min(100% - 64px, var(--content-width));
    }

    .header-inner {
        gap: 18px;
    }

    .header-menu {
        gap: 18px;
        padding-top: 18px;
    }

    .site-nav {
        grid-template-columns: repeat(4, auto);
        gap: 22px;
        font-size: 1rem;
    }

    .hero-overlay-content {
        min-height: 72vh;
        padding: var(--section-space-lg) clamp(20px, 6vw, 72px);
    }

    h1 {
        margin: 14px 0 18px;
        font-size: clamp(3rem, 6vw, 5.2rem);
    }

    h2 {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-content > p {
        max-width: 56ch;
        font-size: 1.08rem;
    }

    .hero-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 28px;
    }

    .split-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .footer-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .cards-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-section,
    .delivery-gallery-section,
    .stats-section,
    .app-download-section,
    .services-grid,
    .process-grid,
    .contact-grid,
    .mini-grid {
        padding: var(--section-space-lg) 0;
    }

    .delivery-gallery-item {
        flex-basis: calc((100% - 32px) / 3);
        aspect-ratio: 4 / 4.8;
    }

    .content-card,
    .service-card,
    .process-card,
    .contact-card,
    .mini-card,
    .site-footer {
        padding: 28px;
    }

    .footer-inner {
        grid-template-columns: 1.2fr 0.7fr 0.8fr 0.9fr;
        gap: 20px;
    }

    .site-footer {
        padding: 40px 0;
    }
}