:root {
    --bg: #020817;
    --surface: #04111f;
    --card: #071628;
    --accent: #013dc4;
    --accent-bright: #013dc4;
    --accent-light: #013dc4;
    --accent2: #013dc4;
    --accent3: #06ffa5;
    --gold: #f59e0b;
    --text: #013dc4;
    --muted: #ffffff;
    --border: rgba(1, 61, 196, 0.18);
    --border-bright: rgba(58, 124, 255, 0.25);
    --glow: 0 0 60px rgba(1, 61, 196, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--muted);
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
.sol-title,
.feat-title,
.testi-name,
.mini-stat-num,
.cta-box h2 {
    color: var(--text) !important;
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 20000;
    /* Increased to stay above modal */
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s;
    mix-blend-mode: screen;
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(58, 124, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 19999;
    /* Increased to stay above modal */
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s,
        border 0.3s;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(2, 8, 23, 0.78);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.25s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--accent-light);
}

.nav-cta {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 8px;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(1, 61, 196, 0.4);
}

.nav-cta:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 61, 196, 0.55);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* HAMBURGER */
.nav-hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU / SIDEBAR */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Syne", sans-serif;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--accent-light);
}

.mobile-sidebar .nav-cta {
    width: 100%;
    text-align: center;
}

/* HERO — 2-col split */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Changed to left */
    justify-content: center;
    text-align: left;
    /* Changed to left */
    padding: 7rem 6% 5rem;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 5;
    background: #020817;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(2, 8, 23, 0.8),
        rgba(2, 8, 23, 0.5) 50%,
        rgba(2, 8, 23, 0.8)
    );
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(1, 61, 196, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 61, 196, 0.05) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(
        ellipse 90% 90% at 50% 50%,
        black 0%,
        transparent 75%
    );
    z-index: 2;
}

/* LEFT */
.hero-left {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Changed to left */
    overflow: visible;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(1, 61, 196, 0.12);
    border: 1px solid rgba(58, 124, 255, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    color: #ffffff;
    /* Changed to white */
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    animation: fadeLeft 0.7s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    line-height: 1.4;
    /* Increased from 1.3 for more clearance */
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    animation: fadeLeft 0.7s 0.1s ease both;
    overflow: visible;
}

.hero h1 span {
    display: inline-block;
    /* Better for background-clip rendering */
    width: auto;
    padding: 0.1em 0.15em 0.3em 0;
    /* Substantial bottom padding for descenders */
    margin-bottom: -0.2em;
    /* Tighten up the gap caused by extra padding */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero h1 .line1 {
    color: #ffffff;
    /* Changed to White */
}

.hero h1 .line2 {
    color: #ffffff;
    /* Changed to White */
    animation: fadeLeft 0.7s 0.1s ease both;
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #ffffff;
    max-width: 650px;
    margin-bottom: 2.2rem;
    line-height: 1.6;
    font-weight: 500;
    /* Increased for better weight */
    background: rgba(2, 8, 23, 0.4);
    /* Subtle dark tint */
    backdrop-filter: blur(8px);
    /* Glass effect for contrast */
    padding: 1.2rem 1.5rem;
    border-left: 3px solid var(--accent-light);
    border-radius: 0 12px 12px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeLeft 0.7s 0.22s ease both;
}

.hero-buttons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    animation: fadeLeft 0.7s 0.34s ease both;
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: none;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(1, 61, 196, 0.45);
}

.btn-primary:hover {
    background: var(--accent-bright);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(1, 61, 196, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #ffffff;
    /* Changed to white */
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* White semi-transparent border */
    font-family: "Syne", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.hero-mini-stats {
    display: flex;
    gap: 2rem;
    animation: fadeLeft 0.7s 0.45s ease both;
}

.mini-stat-num {
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent-light);
    line-height: 1;
}

.mini-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 0.2rem;
    letter-spacing: 0.04em;
}

.mini-divider {
    width: 1px;
    background: var(--border-bright);
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
    max-width: 700px;
}

.hero-pill {
    background: rgba(1, 61, 196, 0.15);
    /* Increased background visibility on video */
    border: 1px solid var(--border-bright);
    border-radius: 50px;
    padding: 0.28rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    font-family: "Syne", sans-serif;
    color: #ffffff;
    letter-spacing: 0.06em;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.hero-pill:hover {
    border-color: var(--accent-light);
    color: var(--accent-light);
    background: rgba(1, 61, 196, 0.14);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 2;
    animation: fadeLeft 1s 0.9s ease both;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(1, 61, 196, 0.4);
    border-radius: 11px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--accent-light);
    border-radius: 2px;
    animation: scrollWheel 2s ease infinite;
}

.scroll-label {
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* MARQUEE */
.marquee-section {
    padding: 2.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-label {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    /* White text on blue background */
    background: #013dc4;
    /* The requested blue color */
    width: fit-content;
    margin: 0 auto 1.5rem;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
}

.marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 22s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: #ffffff;
    letter-spacing: 0.12em;
    white-space: nowrap;
    transition: color 0.3s;
}

.marquee-item:hover {
    color: var(--accent-light);
}

/* SECTIONS */
section {
    padding: 7rem 5%;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    background: #013dc4;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 540px;
    font-weight: 300;
}

/* SOLUTIONS */
.solutions {
    background: var(--surface);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.solution-card {
    background: var(--card);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.solution-card.payin::before {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.solution-card.payout::before {
    background: linear-gradient(90deg, var(--accent2), var(--accent3));
}

.solution-card:hover {
    background: rgba(7, 22, 40, 0.95);
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

.sol-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    color: #fff;
}

.sol-icon.in {
    background: rgba(1, 61, 196, 0.12);
    border: 1px solid rgba(1, 61, 196, 0.25);
}

.sol-icon.out {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.sol-title {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.sol-subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    line-height: 1.65;
}

.sol-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sol-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.88rem;
    color: #ffffff;
}

.sol-features li::before {
    content: "→";
    color: var(--accent-light);
    font-weight: 700;
    flex-shrink: 0;
}

.sol-tag {
    margin-top: 1.4rem;
    font-size: 0.72rem;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
    font-style: italic;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.pm-badge {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.3s;
    font-family: "Syne", sans-serif;
    letter-spacing: 0.05em;
}

.pm-badge:hover {
    border-color: var(--accent-light);
    color: var(--accent-light);
    background: rgba(1, 61, 196, 0.08);
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-light),
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(1, 61, 196, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(1, 61, 196, 0.08);
}

.feat-icon {
    font-size: 1.9rem;
    margin-bottom: 1.1rem;
    display: block;
    color: #fff;
}

.feat-title {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

.feat-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65;
    font-weight: 300;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--surface);
    overflow: hidden;
}

.testi-track-wrap {
    overflow: hidden;
    margin-top: 3.5rem;
}

.testi-track {
    display: flex;
    gap: 1.4rem;
    animation: marquee 32s linear infinite;
    width: max-content;
}

.testi-card {
    width: 350px;
    flex-shrink: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.8rem;
    transition: border-color 0.3s;
}

.testi-card:hover {
    border-color: rgba(1, 61, 196, 0.4);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.82rem;
    margin-bottom: 0.9rem;
    letter-spacing: 0.12em;
}

.testi-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 1.4rem;
    font-weight: 300;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
}

.testi-name {
    font-family: "Syne", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--muted);
}

/* CTA */
.cta-section {
    background-color: #040f20;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(1, 61, 196, 0.18) 0%,
        transparent 70%
    );
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-box {
    position: relative;
    background: var(--card);
    border: 1px solid rgba(1, 61, 196, 0.25);
    border-radius: 28px;
    padding: 5rem 3rem;
    max-width: 780px;
    margin: 0 auto;
    overflow: hidden;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--accent2),
        var(--accent3)
    );
}

.cta-box h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CONTACT */
.contact-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.9rem;
    transition: all 0.3s;
    background: var(--card);
}

.contact-item:hover {
    border-color: var(--accent-light);
    transform: translateX(6px);
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 61, 196, 0.1);
    color: #fff;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    /* Changed to white */
    stroke-width: 2.5;
    fill: none;
}

.contact-text a,
.contact-text span {
    color: #ffffff;
    /* Changed to white */
    text-decoration: none;
    font-size: 0.92rem;
}

.contact-text a:hover {
    color: var(--accent-light);
}

.contact-label {
    font-size: 0.7rem;
    color: var(--accent-light);
    /* Changed to blue */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
}

.newsletter-form {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.newsletter-form input {
    flex: 1;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 1.3rem;
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--accent-light);
}

.newsletter-form input::placeholder {
    color: var(--muted);
}

.newsletter-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.6rem;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 61, 196, 0.4);
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: linear-gradient(135deg, #071628 0%, #040f20 100%);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(1, 61, 196, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-header h2 {
    font-family: "Syne", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff !important;
}

.modal-header p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.booking-form .form-group {
    margin-bottom: 1.2rem;
}

.booking-form label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-form input,
.booking-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(1, 61, 196, 0.3);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    transition: all 0.3s;
}

.booking-form select {
    background-color: rgba(255, 255, 255, 0.05);
    /* Dark by default */
    cursor: pointer;
}

.booking-form select:focus {
    background-color: #013dc4;
    /* Turns blue when clicked/focused */
}

.booking-form select option {
    background-color: #071628;
    /* Dark background for options to match modal */
    color: #fff;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--accent-light);
    background: rgba(1, 61, 196, 0.1);
    box-shadow: 0 0 0 4px rgba(1, 61, 196, 0.2);
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-family: "Syne", sans-serif;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(1, 61, 196, 0.3);
}

.btn-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(1, 61, 196, 0.5);
}

/* FOOTER */
footer {
    background: var(--bg);
    padding: 1.8rem 5%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 1.8rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-copy {
    color: var(--muted);
    font-size: 0.78rem;
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 1rem 1.4rem;
    font-size: 0.88rem;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s;
    max-width: 280px;
    box-shadow: 0 10px 40px rgba(1, 61, 196, 0.3);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-title {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.2rem;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* KEYFRAMES */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradShift {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

@keyframes ringPulse {
    0% {
        opacity: 0.6;
        transform: scale(0.85);
    }

    60% {
        opacity: 0.15;
        transform: scale(1.15);
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    nav {
        padding: 0 5%;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        border: none;
        margin-top: 2.5rem;
    }

    .solution-card {
        border-radius: 15px;
        padding: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 2.5rem;
    }

    section {
        padding: 5rem 5%;
    }
}

@media (max-width: 768px) {
    .hero-mini-stats {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem !important;
    }

    .mini-divider {
        display: none;
    }

    .mini-stat {
        flex: 1 1 calc(50% - 1rem);
        text-align: center;
    }

    .mini-stat-num {
        font-size: 1.4rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testi-card {
        width: 280px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 6%;
    }

    .hero {
        padding-top: 6rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .hero-desc {
        padding: 1rem;
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

    .hero-mini-stats {
        gap: 1.5rem 0.5rem;
    }

    .mini-stat {
        flex: 1 1 45%;
    }

    .mini-stat-num {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .solution-card {
        padding: 1.8rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .nav-logo img {
        height: 36px;
    }

    .mobile-sidebar {
        width: 85%;
        right: -85%;
    }

    .footer-links {
        gap: 1rem;
        justify-content: center;
        width: 100%;
    }

    .footer-copy {
        text-align: center;
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-links {
        display: inline-grid;
    }
}

#features {
    background: var(--bg);
    padding: 2rem 5%;
}
