@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

:root {
    --primary: #277768;
    --primary-dark: #184a42;
    --dark: #0f1c2d;
    --muted: #617086;
    --surface: #ffffff;
    --surface-alt: #f7f8fb;
    --gift: #70d66c;
    --pay: #ef9e00;
    --ticket: #e36258;
    --cashless: #238ae2;
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--surface);
    color: var(--dark);
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

.container {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0 0;
}

.nav-pill {
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 60px);
}

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

.desktop-nav {
    position: relative;
    display: flex;
    flex: 1;
    justify-content: center;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 40px);
    padding: 0;
    margin: 0;
    font-weight: 600;
}

.desktop-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.btn-primary {
    padding: 12px 28px;
    border-radius: 12px;
    background: #57b55c;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(87, 181, 92, 0.35);
    transition: transform 0.2s ease;
    margin-left: auto;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #3f9545;
}

.openmenu,
.closemenu {
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(39, 119, 104, 0.12);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.openmenu span,
.openmenu span::before,
.openmenu span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 999px;
    position: relative;
}

.openmenu span::before {
    top: -6px;
    position: absolute;
}

.openmenu span::after {
    bottom: -6px;
    position: absolute;
}

.closemenu {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.flou {
    position: fixed;
    inset: 0;
    background: hsla(0, 0%, 93%, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: flex-end;
    padding: 110px 20px 20px;
    z-index: 90;
}

.flou.visible {
    display: flex;
}

#flounav {
    width: min(380px, 100%);
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 28, 45, 0.12);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#flounav a {
    font-weight: 600;
    color: var(--dark);
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(100deg,
            #050505 0%,
            #0d0d0d 25%,
            #3a3a3a 50%,
            #bcbcbc 75%,
            #e6e6e6 100%);
    color: #fff;
    position: relative;
    padding-top: 160px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
    padding-bottom: 90px;
}

.hero-copy {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s ease forwards;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.85);
}

.wallet-logos {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.wallet-logos a {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.wallet-logos img {
    width: 42px;
    height: auto;
}

.hero-visual {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding-top: 28px;
    padding-bottom: 0px;
    padding-left: 28px;
    padding-right: 28px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

/* Solutions */
.solutions-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #fefefe 0%, #f6f6f6 60%, #f1f1f1 100%);
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
}

.solutions-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.solutions-header p {
    margin-top: 14px;
    font-size: 1.12rem;
    color: rgba(15, 28, 45, 0.78);
}

.colorbackground {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    padding: 40px 0 40px 0;
    transition: background-color 0.45s ease;
    background: var(--gift);
    box-shadow: inset 0 30px 60px rgba(10, 10, 10, 0.12);
}

.colorbackground > .container {
    max-width: 1200px;
}

.solutions-grid {
    display: grid;
    gap: clamp(24px, 3vw, 40px);
}

.elementToTrigger {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 42px;
    padding: clamp(36px, 5vw, 60px);
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
    color: #fff;
    opacity: 0.35;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.elementToTrigger.active {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 25px 60px rgba(10, 10, 10, 0.2);
}

.elementToTrigger img {
    width: 82px;
    height: auto;
}

.elementToTrigger h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    margin: 4px 0 6px;
    color: #fff;
    letter-spacing: -0.01em;
}

.elementToTrigger p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.elementToTrigger p strong {
    color: #fff;
}

.elementToTrigger .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #111;
    background: #fff;
    border-radius: 999px;
    padding: 12px 30px;
    border: none;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.15);
}

/* Contact / Footer CTA */
.contact-section {
    padding: 140px 0 80px;
    background: #2a2d34;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
    gap: clamp(30px, 5vw, 90px);
    align-items: center;
    background: #3c3f48;
    border-radius: 38px;
    padding: clamp(32px, 5vw, 70px);
    box-shadow: 0 35px 80px rgba(5, 6, 8, 0.45);
}

.contact-image img {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    border-radius: 28px;
    object-fit: cover;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.35));
    transform: scaleX(-1);
}

.contact-card {
    background: transparent;
    padding: 0;
}

.contact-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.3rem, 3.5vw, 3rem);
    margin: 0 0 16px;
    letter-spacing: -0.015em;
    line-height: 1.08;
}

.contact-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.contact-phone {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.contact-phone::before {
    content: "✆";
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #2a2d34;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-brand img {
    width: 150px;
}

.footer-links h4 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Responsive */
@media (max-width: 1100px) {
    .desktop-nav,
    .btn-primary {
        display: none;
    }

    .openmenu,
    .closemenu {
        display: inline-flex;
    }
}

@media (max-width: 900px) {
    .hero-inner,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        text-align: center;
    }

    .wallet-logos {
        justify-content: center;
    }

    .nav-pill {
        border-radius: 20px;
    }
}

@media (max-width: 600px) {
    .nav-pill {
        padding: 12px 18px;
    }

    .elementToTrigger,
    .contact-card {
        padding: 24px;
    }
}
