/* ============================================================================
   Waka Waka Company Ltd — landing page design system
   Palette: Deep Navy #0D1B2A · Waka Blue #0877B9 · Warm Gold #D4A437
            Light Gray #F2F4F6 · White #FFFFFF
   Typography: Poppins (700/800 headings, 600 labels & buttons, 400 body)
   Scoped under .ww so the app shells (POS / Admin / Platform) are untouched.
   ========================================================================== */

.ww {
    --ww-navy: #0D1B2A;
    --ww-navy-soft: #13253A;
    --ww-navy-deep: #0A1420;
    --ww-blue: #0877B9;
    --ww-blue-dark: #06679F;
    --ww-gold: #D4A437;
    --ww-gold-soft: #E3BE63;
    --ww-gray: #F2F4F6;
    --ww-white: #FFFFFF;
    --ww-ink: #1C2B3A;
    --ww-ink-soft: #51627A;
    --ww-line: #E2E7EE;
    --ww-error: #B3372E;
    --ww-radius: 14px;
    --ww-radius-lg: 20px;
    --ww-shadow: 0 18px 40px rgba(13, 27, 42, 0.10);
    --ww-font: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    font-family: var(--ww-font);
    color: var(--ww-ink);
    background: var(--ww-white);
    line-height: 1.6;
    overflow-x: clip;
}

.ww *,
.ww *::before,
.ww *::after {
    box-sizing: border-box;
}

.ww h1, .ww h2, .ww h3 {
    color: var(--ww-navy);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.ww p {
    margin: 0;
}

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

.ww ul, .ww ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ww :focus-visible {
    outline: 3px solid var(--ww-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.ww-container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Skip link ------------------------------------------------------------- */
.ww-skip {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    padding: 0.7rem 1.2rem;
    background: var(--ww-navy);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
    transition: top 0.15s ease;
}

.ww-skip:focus-visible {
    top: 0;
}

/* Buttons ---------------------------------------------------------------- */
.ww-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.7rem 1.5rem;
    border: 0;
    border-radius: 10px;
    font-family: var(--ww-font);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.ww-btn:hover {
    transform: translateY(-1px);
}

.ww-btn--primary {
    background: var(--ww-blue);
    color: #fff;
}

.ww-btn--primary:hover {
    background: var(--ww-blue-dark);
}

.ww-btn--gold {
    background: var(--ww-gold);
    color: var(--ww-navy);
}

.ww-btn--gold:hover {
    background: var(--ww-gold-soft);
}

.ww-btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.ww-btn--outline:hover {
    border-color: var(--ww-gold);
    color: var(--ww-gold-soft);
}

.ww-btn--ghost {
    background: transparent;
    color: var(--ww-blue);
    border: 1.5px solid var(--ww-blue);
}

.ww-btn--on-navy {
    margin-top: 1.6rem;
}

.ww-icon {
    width: 1.35em;
    height: 1.35em;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Logo -------------------------------------------------------------------- */
.ww-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.ww-logo-mark {
    height: 44px;
    width: auto;
    transition: height 0.2s ease;
}

.ww-logo--compact .ww-logo-mark {
    height: 38px;
}

.ww-mark-stroke {
    fill: none;
    stroke-width: 13;
    stroke-linecap: butt;
    stroke-linejoin: bevel;
}

.ww-mark-navy { stroke: var(--ww-navy); }
.ww-mark-blue { stroke: var(--ww-blue); }
.ww-mark-gold { fill: var(--ww-gold); }

.ww-logo--light .ww-mark-navy { stroke: #fff; }

.ww-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.ww-logo-name {
    font-weight: 800;
    font-size: 1.02rem;
    letter-spacing: 0.06em;
    color: var(--ww-navy);
}

.ww-logo--light .ww-logo-name {
    color: #fff;
}

.ww-logo-sub {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    color: var(--ww-gold);
}

.ww-logo-sub i {
    display: inline-block;
    width: 1.1em;
    height: 1.5px;
    background: var(--ww-gold);
}

.ww-logo-tagline {
    margin-top: 0.3rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--ww-blue);
}

.ww-logo--light .ww-logo-tagline {
    color: #7FB8DC;
}

/* Header ------------------------------------------------------------------ */
.ww-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 27, 42, 0.97);
    border-bottom: 1px solid rgba(212, 164, 55, 0.25);
}

.ww-header .ww-logo-name { color: #fff; }
.ww-header .ww-mark-navy { stroke: #fff; }

.ww-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.85rem;
    transition: padding 0.2s ease;
}

.ww-header--compact .ww-header-inner {
    padding-block: 0.45rem;
}

.ww-header--compact .ww-logo-mark {
    height: 32px;
}

.ww-header-brand {
    display: inline-flex;
    border-radius: 8px;
}

.ww-nav {
    display: none;
}

.ww-nav-list {
    display: flex;
    gap: clamp(0.4rem, 1.5vw, 1.4rem);
}

.ww-nav-list a {
    display: inline-block;
    padding: 0.6rem 0.45rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.92rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.ww-nav-list a:hover {
    color: #fff;
    border-bottom-color: var(--ww-gold);
}

.ww-header-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.ww-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.ww-lang-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 0.35rem 0.5rem;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--ww-font);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: color 0.15s ease;
}

.ww-lang-btn:hover {
    color: #fff;
}

.ww-lang-btn.is-active {
    color: var(--ww-gold);
}

.ww-lang-sep {
    color: rgba(255, 255, 255, 0.3);
}

.ww-header-cta {
    display: none;
}

.ww-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.ww-menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.ww-mobile-nav {
    background: var(--ww-navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.7rem clamp(1rem, 4vw, 2rem) 1.4rem;
}

.ww-mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.ww-mobile-nav a {
    display: block;
    padding: 0.85rem 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ww-mobile-cta {
    width: 100%;
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .ww-nav { display: block; }
    .ww-menu-toggle { display: none; }
    .ww-mobile-nav { display: none; }

    .ww-nav-list a {
        white-space: nowrap;
    }
}

/* The quote CTA joins the header only when there is comfortable room for the
   full nav — below this the hero and mobile menu carry the CTA. */
@media (min-width: 1200px) {
    .ww-header-cta {
        display: inline-flex;
        min-height: 44px;
        padding-block: 0.55rem;
        white-space: nowrap;
    }
}

/* Sections rhythm --------------------------------------------------------- */
.ww-section {
    padding-block: clamp(3.2rem, 8vw, 5.5rem);
    scroll-margin-top: 84px;
}

.ww-section-head {
    max-width: 720px;
    margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.ww-section-head h2,
.ww-chain-copy h2,
.ww-transfer-copy h2,
.ww-resto-copy h2 {
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ww-section-lead {
    margin-top: 0.9rem;
    color: var(--ww-ink-soft);
    max-width: 62ch;
}

.ww-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ww-blue);
}

.ww-kicker::before {
    content: "";
    width: 2.2em;
    height: 2px;
    background: var(--ww-gold);
}

.ww-kicker--gold {
    color: var(--ww-gold);
}

/* Reveal motion (armed by JS only when motion is allowed) ----------------- */
.ww-motion [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.ww-motion [data-reveal].ww-in {
    opacity: 1;
    transform: none;
}

/* Hero -------------------------------------------------------------------- */
.ww-hero {
    position: relative;
    background:
        radial-gradient(900px 480px at 82% -10%, rgba(8, 119, 185, 0.35), transparent 62%),
        radial-gradient(700px 420px at -10% 110%, rgba(8, 119, 185, 0.22), transparent 60%),
        linear-gradient(160deg, var(--ww-navy) 0%, var(--ww-navy-soft) 58%, var(--ww-navy) 100%);
    color: #fff;
    padding-top: clamp(2.6rem, 7vw, 5rem);
    padding-bottom: clamp(5rem, 11vw, 8.5rem);
    scroll-margin-top: 84px;
}

.ww-hero-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.ww-hero-eyebrow {
    margin-bottom: 1.1rem;
    font-size: clamp(0.68rem, 1.6vw, 0.8rem);
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--ww-gold);
}

.ww .ww-hero-title {
    color: #fff;
    font-size: clamp(1.9rem, 5.2vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    max-width: 15ch;
}

.ww-hero-text {
    margin-top: 1.2rem;
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

.ww-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.ww-hero-trustline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(212, 164, 55, 0.35);
}

.ww-hero-trustline li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.ww-hero-trustline .ww-icon {
    color: var(--ww-gold);
}

.ww-hero-visual {
    position: relative;
}

.ww-hero-map {
    display: block;
    width: 100%;
    height: auto;
}

.ww-map-grid {
    fill: none;
    stroke: rgba(255, 255, 255, 0.07);
    stroke-width: 1;
}

.ww-map-route {
    fill: none;
    stroke: var(--ww-gold);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
}

.ww-motion .ww-hero-map .ww-map-route {
    stroke-dashoffset: 640;
    animation: ww-route-draw 2.4s ease forwards 0.3s;
}

@keyframes ww-route-draw {
    to { stroke-dashoffset: 0; }
}

.ww-map-node {
    fill: var(--ww-blue);
    stroke: #fff;
    stroke-width: 2;
}

.ww-map-node--gold {
    fill: var(--ww-gold);
}

.ww-map-node-ring {
    fill: none;
    stroke: rgba(8, 119, 185, 0.55);
    stroke-width: 1.5;
}

.ww-map-node-ring--gold {
    stroke: rgba(212, 164, 55, 0.55);
}

.ww-map-label {
    fill: rgba(255, 255, 255, 0.75);
    font-family: var(--ww-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-anchor: middle;
}

.ww-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 999px;
    color: var(--ww-navy);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(4, 12, 20, 0.35);
    white-space: nowrap;
}

.ww-hero-chip .ww-icon {
    color: var(--ww-blue);
}

.ww-hero-chip--gold {
    border: 1.5px solid var(--ww-gold);
}

.ww-hero-chip--gold .ww-icon {
    color: var(--ww-gold);
}

@media (min-width: 768px) {
    .ww-hero-chip {
        position: absolute;
    }

    .ww-hero-chip--1 { top: 8%; left: -2%; }
    .ww-hero-chip--2 { top: 34%; right: -3%; }
    .ww-hero-chip--3 { bottom: 30%; left: 4%; }
    .ww-hero-chip--4 { top: 4%; right: 22%; }
    .ww-hero-chip--5 { bottom: 8%; right: 10%; }
}

@media (max-width: 767.98px) {
    .ww-hero-visual {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .ww-hero-map {
        flex-basis: 100%;
        max-width: 420px;
        margin-inline: auto;
    }
}

@media (min-width: 1024px) {
    .ww-hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }
}

/* Curved brand band between hero and content ------------------------------ */
.ww-band {
    position: absolute;
    inset-inline: 0;
    bottom: -1px;
    line-height: 0;
}

.ww-band svg {
    display: block;
    width: 100%;
    height: clamp(48px, 8vw, 110px);
}

.ww-band-white {
    fill: var(--ww-white);
}

.ww-band-gold {
    fill: none;
    stroke: var(--ww-gold);
    stroke-width: 3;
}

/* Trust strip ------------------------------------------------------------- */
.ww-trust {
    background: var(--ww-white);
    padding-block: clamp(1.6rem, 4vw, 2.6rem);
}

.ww-trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem 1.5rem;
}

.ww-trust-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--ww-navy);
}

.ww-trust-list .ww-icon {
    width: 1.7em;
    height: 1.7em;
    color: var(--ww-blue);
}

/* Services ---------------------------------------------------------------- */
.ww-services {
    background: var(--ww-gray);
}

.ww-services-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.ww-card {
    background: var(--ww-white);
    border: 1px solid var(--ww-line);
    border-radius: var(--ww-radius);
    padding: 1.5rem 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ww-card:hover {
    transform: translateY(-4px);
    border-color: var(--ww-gold);
    box-shadow: var(--ww-shadow);
}

.ww-service-lockup {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.ww-service-brand {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--ww-ink-soft);
}

.ww-service-divider {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, var(--ww-gold), transparent);
}

.ww-service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1.6px solid var(--ww-blue);
    border-radius: 50%;
    color: var(--ww-blue);
    background: rgba(8, 119, 185, 0.06);
    transition: transform 0.2s ease;
}

.ww-card:hover .ww-service-badge {
    transform: translateY(-2px) scale(1.05);
}

.ww-service-badge .ww-icon {
    width: 1.55em;
    height: 1.55em;
}

.ww-service-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
}

.ww-service-card p {
    color: var(--ww-ink-soft);
    font-size: 0.92rem;
    flex: 1;
}

.ww-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.4rem 0;
    background: none;
    border: 0;
    color: var(--ww-blue);
    font-family: var(--ww-font);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.ww-card-cta .ww-icon {
    transition: transform 0.18s ease;
}

.ww-card-cta:hover .ww-icon {
    transform: translateX(4px);
}

.ww-service-card--resto {
    background: linear-gradient(180deg, #FFFFFF 0%, #FCF7EB 100%);
    border-color: rgba(212, 164, 55, 0.55);
}

.ww-service-card--resto .ww-service-badge {
    border-color: var(--ww-gold);
    color: var(--ww-gold);
    background: rgba(212, 164, 55, 0.08);
}

.ww-service-card--resto .ww-card-cta {
    color: #A57D20;
}

@media (min-width: 1024px) {
    /* The restaurant card closes the grid as a full-width editorial band. */
    .ww-service-card--resto {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 1.4rem 2rem;
    }

    .ww-service-card--resto .ww-service-lockup {
        min-width: 170px;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .ww-service-card--resto h3 {
        grid-column: 2;
    }

    .ww-service-card--resto p {
        grid-column: 2;
        max-width: 70ch;
    }

    .ww-service-card--resto .ww-card-cta {
        grid-column: 3;
        grid-row: 1 / span 2;
    }
}

/* Journey ----------------------------------------------------------------- */
.ww-journey {
    background: var(--ww-white);
}

.ww-journey-steps {
    display: grid;
    gap: 1.8rem;
    counter-reset: step;
}

.ww-journey-step {
    position: relative;
    padding-left: 1.2rem;
    border-left: 2px dashed rgba(212, 164, 55, 0.6);
}

.ww-journey-num {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ww-gold);
    letter-spacing: 0.02em;
    margin-bottom: 0.3rem;
}

.ww-journey-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.ww-journey-step p {
    color: var(--ww-ink-soft);
    font-size: 0.92rem;
    max-width: 34ch;
}

@media (min-width: 900px) {
    .ww-journey-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .ww-journey-step {
        padding-left: 0;
        padding-top: 1.3rem;
        border-left: 0;
        border-top: 2px dashed rgba(212, 164, 55, 0.6);
    }

    .ww-journey-step::before {
        content: "";
        position: absolute;
        top: -7px;
        left: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--ww-blue);
        border: 2.5px solid var(--ww-white);
        box-shadow: 0 0 0 1.5px var(--ww-blue);
    }
}

/* Cargo / Logistics / Sourcing chain -------------------------------------- */
.ww-chain {
    background:
        radial-gradient(700px 420px at 100% 0%, rgba(8, 119, 185, 0.25), transparent 60%),
        var(--ww-navy);
    color: #fff;
}

.ww .ww-chain h2 {
    color: #fff;
}

.ww-chain .ww-section-lead {
    color: rgba(255, 255, 255, 0.8);
}

.ww-chain-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.ww-chain-copy .ww-btn {
    margin-top: 1.6rem;
}

.ww-chain-steps {
    display: grid;
    gap: 0;
}

.ww-chain-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.ww-chain-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 24px;
    top: calc(50% + 26px);
    bottom: calc(-50% + 26px);
    border-left: 2px dashed rgba(212, 164, 55, 0.6);
}

.ww-chain-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1.6px solid var(--ww-gold);
    border-radius: 50%;
    color: var(--ww-gold);
    background: rgba(212, 164, 55, 0.08);
}

.ww-chain-icon .ww-icon {
    width: 1.5em;
    height: 1.5em;
}

.ww-chain-label {
    font-weight: 600;
    font-size: 1.02rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .ww-chain-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    }
}

/* Transfer ---------------------------------------------------------------- */
.ww-transfer {
    background: var(--ww-white);
}

.ww-transfer-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.ww-transfer-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    background: var(--ww-gray);
    border-radius: var(--ww-radius-lg);
    padding: 2.4rem 1.6rem 2rem;
}

.ww-transfer-arc {
    width: min(100%, 340px);
    height: auto;
}

.ww-transfer-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ww-white);
    border: 1.6px solid var(--ww-blue);
    color: var(--ww-blue);
    box-shadow: var(--ww-shadow);
}

.ww-transfer-node:first-child {
    left: 10%;
    top: 16%;
}

.ww-transfer-node--check {
    right: 10%;
    top: 16%;
    border-color: var(--ww-gold);
    color: var(--ww-gold);
}

.ww-compliance {
    margin-top: 1.4rem;
    padding: 0.9rem 1.1rem;
    background: var(--ww-gray);
    border-left: 3px solid var(--ww-gold);
    border-radius: 0 10px 10px 0;
    font-size: 0.82rem;
    color: var(--ww-ink-soft);
    max-width: 56ch;
}

.ww-transfer-copy .ww-btn {
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .ww-transfer-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

/* Restaurant -------------------------------------------------------------- */
.ww-resto {
    background:
        radial-gradient(720px 420px at 0% 100%, rgba(212, 164, 55, 0.16), transparent 60%),
        linear-gradient(150deg, var(--ww-navy) 0%, var(--ww-navy-soft) 100%);
    color: #fff;
}

.ww .ww-resto h2 {
    color: #fff;
}

.ww-resto .ww-section-lead {
    color: rgba(255, 255, 255, 0.82);
}

.ww-resto-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.ww-resto-visual {
    margin: 0;
    border: 1.5px solid var(--ww-gold);
    border-radius: var(--ww-radius-lg);
    padding: 0.6rem;
    background: rgba(212, 164, 55, 0.05);
}

.ww-resto-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: calc(var(--ww-radius-lg) - 8px);
}

.ww-resto-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--ww-radius-lg) - 8px);
    background:
        radial-gradient(340px 220px at 70% 25%, rgba(212, 164, 55, 0.28), transparent 65%),
        linear-gradient(160deg, #12233A 0%, #0A1626 100%);
}

.ww-resto-placeholder .ww-icon {
    width: 72px;
    height: 72px;
    stroke-width: 1.3;
    color: var(--ww-gold);
}

.ww-resto-mark {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.ww-resto-mark i {
    display: block;
    margin-top: 0.35rem;
    font-style: normal;
    color: var(--ww-gold);
    font-size: 0.66rem;
    letter-spacing: 0.42em;
}

.ww-resto-brandline {
    margin-top: 1.3rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ww-gold);
}

.ww-resto-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

@media (min-width: 1024px) {
    .ww-resto-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
}

/* Values ------------------------------------------------------------------ */
.ww-values {
    background: var(--ww-white);
}

.ww-values-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 205px), 1fr));
}

.ww-value {
    padding: 1.4rem 1.3rem;
    border: 1px solid var(--ww-line);
    border-radius: var(--ww-radius);
    background: var(--ww-white);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.ww-value:hover {
    border-color: var(--ww-gold);
    transform: translateY(-3px);
}

.ww-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 0.9rem;
    border-radius: 50%;
    border: 1.6px solid var(--ww-blue);
    color: var(--ww-blue);
    background: rgba(8, 119, 185, 0.06);
}

.ww-value-icon .ww-icon {
    width: 1.5em;
    height: 1.5em;
}

.ww-value h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.ww-value p {
    font-size: 0.88rem;
    color: var(--ww-ink-soft);
}

/* Coverage ---------------------------------------------------------------- */
.ww-coverage {
    background: var(--ww-gray);
}

.ww-coverage-map {
    background: var(--ww-navy);
    border-radius: var(--ww-radius-lg);
    padding: clamp(0.8rem, 2.5vw, 1.6rem);
    margin-bottom: 1.4rem;
}

.ww-coverage-map svg {
    display: block;
    width: 100%;
    height: auto;
}

.ww-locations-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 195px), 1fr));
}

.ww-location {
    display: flex;
    gap: 0.9rem;
    padding: 1.2rem 1.1rem;
    background: var(--ww-white);
    border: 1px solid var(--ww-line);
    border-radius: var(--ww-radius);
}

.ww-location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.6px solid var(--ww-gold);
    color: var(--ww-gold);
}

.ww-location h3 {
    font-size: 1rem;
}

.ww-location p {
    font-size: 0.85rem;
    color: var(--ww-ink-soft);
}

.ww-location-role {
    display: inline-block;
    margin-top: 0.45rem;
    padding: 0.15rem 0.6rem;
    background: rgba(8, 119, 185, 0.08);
    border-radius: 999px;
    color: var(--ww-blue);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Contact ----------------------------------------------------------------- */
.ww-contact {
    background:
        radial-gradient(800px 480px at 0% 0%, rgba(8, 119, 185, 0.28), transparent 60%),
        var(--ww-navy);
    color: #fff;
}

.ww .ww-contact h2 {
    color: #fff;
}

.ww-contact .ww-section-lead {
    color: rgba(255, 255, 255, 0.82);
}

.ww-contact-grid {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.ww-contact-points {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.ww-contact-points li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.ww-contact-points .ww-icon {
    color: var(--ww-gold);
}

@media (min-width: 1024px) {
    .ww-contact-grid {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    }
}

/* Quote form -------------------------------------------------------------- */
.ww-form-wrap {
    background: var(--ww-white);
    border-radius: var(--ww-radius-lg);
    padding: clamp(1.3rem, 3.5vw, 2.2rem);
    color: var(--ww-ink);
    box-shadow: 0 30px 70px rgba(4, 12, 20, 0.4);
    scroll-margin-top: 90px;
}

.ww-form-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .ww-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ww-field--full {
        grid-column: 1 / -1;
    }
}

.ww-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ww-field label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ww-navy);
}

.ww-field label em {
    font-style: normal;
    font-weight: 400;
    color: var(--ww-ink-soft);
}

.ww-field input,
.ww-field select,
.ww-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.65rem 0.9rem;
    font-family: var(--ww-font);
    font-size: 1rem;
    color: var(--ww-ink);
    background: var(--ww-white);
    border: 1.5px solid var(--ww-line);
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ww-field textarea {
    resize: vertical;
    min-height: 110px;
}

.ww-field input:focus,
.ww-field select:focus,
.ww-field textarea:focus {
    outline: none;
    border-color: var(--ww-blue);
    box-shadow: 0 0 0 3px rgba(8, 119, 185, 0.18);
}

.ww-field input[aria-invalid="true"],
.ww-field select[aria-invalid="true"] {
    border-color: var(--ww-error);
}

.ww-field-error {
    color: var(--ww-error);
    font-size: 0.8rem;
    font-weight: 500;
}

.ww-field-hint {
    font-size: 0.78rem;
    color: var(--ww-ink-soft);
}

.ww-form-note {
    font-size: 0.8rem;
    color: var(--ww-ink-soft);
    background: var(--ww-gray);
    border-left: 3px solid var(--ww-gold);
    border-radius: 0 10px 10px 0;
    padding: 0.8rem 1rem;
}

.ww-field--consent .ww-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    font-size: 0.86rem;
    color: var(--ww-ink);
    cursor: pointer;
}

.ww-consent input {
    width: 20px;
    height: 20px;
    min-height: 0;
    margin-top: 0.15rem;
    accent-color: var(--ww-blue);
    flex-shrink: 0;
}

.ww-form-actions {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.ww-btn--submit {
    width: 100%;
}

@media (min-width: 640px) {
    .ww-btn--submit {
        width: auto;
        justify-self: start;
        min-width: 240px;
    }
}

.ww-btn--submit[disabled] {
    opacity: 0.7;
    cursor: progress;
    transform: none;
}

.ww-form-alert {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
    padding: 0.9rem 1.1rem;
    background: #FBEDEB;
    border-left: 3px solid var(--ww-error);
    border-radius: 0 10px 10px 0;
    color: #7A2A23;
    font-size: 0.9rem;
}

.ww-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    padding: clamp(1.5rem, 5vw, 3rem) 1rem;
}

.ww-form-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid var(--ww-gold);
    color: var(--ww-gold);
}

.ww-form-success-icon .ww-icon {
    width: 2em;
    height: 2em;
}

.ww-form-success h3 {
    font-size: 1.3rem;
}

.ww-form-success p {
    color: var(--ww-ink-soft);
    max-width: 44ch;
}

/* Honeypot: visually removed, still in the DOM for bots. */
.ww-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Floating WhatsApp action ------------------------------------------------ */
.ww-whatsapp-fab {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--ww-blue);
    color: #fff;
    box-shadow: 0 14px 30px rgba(8, 119, 185, 0.45);
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.ww-whatsapp-fab:hover {
    transform: translateY(-3px);
    background: var(--ww-blue-dark);
}

.ww-whatsapp-fab .ww-icon {
    width: 1.7em;
    height: 1.7em;
}

/* Footer ------------------------------------------------------------------ */
.ww-footer {
    background: var(--ww-navy-deep);
    color: rgba(255, 255, 255, 0.78);
    border-top: 3px solid var(--ww-gold);
    padding-block: clamp(2.6rem, 6vw, 4rem) 1.6rem;
    font-size: 0.9rem;
}

.ww-footer-top {
    display: grid;
    gap: 2.2rem;
    padding-bottom: 2.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .ww-footer-top {
        grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    }
}

.ww-footer-statement {
    margin-top: 1.1rem;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.7);
}

.ww-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.1rem;
}

.ww-footer h3 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ww-footer-subhead {
    margin-top: 1.6rem;
}

.ww-footer-col ul {
    display: grid;
    gap: 0.55rem;
}

.ww-footer a {
    display: inline-block;
    padding-block: 0.15rem;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.15s ease;
}

.ww-footer a:hover {
    color: var(--ww-gold-soft);
}

.ww-footer-locations {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.4rem 1rem !important;
}

.ww-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.ww-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.ww-footer-legal em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.4);
}

.ww-footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.8rem;
}

.ww-footer-portals {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ww-footer-portals a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.ww-lang--footer .ww-lang-btn {
    color: rgba(255, 255, 255, 0.55);
}

.ww-lang--footer .ww-lang-btn.is-active {
    color: var(--ww-gold);
}

/* Silent reconnect on the public page ------------------------------------- */
/* While the landing page is active, the Blazor Server reconnect dialog is
   hidden; wakawaka-landing.js reloads quietly if reconnection gives up. */
html.ww-silent-reconnect #components-reconnect-modal {
    display: none !important;
}

/* Reduced motion ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .ww *,
    .ww *::before,
    .ww *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
