/* ------------------------------------------------------ */
/*            BR360 Nederland – Landingpage Style         */
/* ------------------------------------------------------ */

:root {
    --bg-dark: #050814;
    --bg-dark-alt: #090f22;
    --blue: #00AFFF;
    --orange: #FF7A00;
    --teal: #00CC99;
    --light: #F0F5FF;
    --muted: #8A99C2;
}

/* GLOBAL ------------------------------------------------ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111b3c 0, var(--bg-dark) 60%, #02030a 100%);
    color: var(--light);
}

.wrapper {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* NAV --------------------------------------------------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: linear-gradient(90deg, rgba(5,8,20,.9), rgba(11,17,40,.9));
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.nav-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
}

.nav-logo span {
    color: var(--orange);
}

.nav-cta a {
    text-decoration: none;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--light);
    border: 1px solid rgba(255,255,255,.25);
    transition: 0.25s ease;
}

.nav-cta a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* HERO -------------------------------------------------- */

.hero {
    padding-top: 110px;
    padding-bottom: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--teal);
    font-size: 12px;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-title .blue {
    color: var(--blue);
}

.hero-title .orange {
    background: var(--orange);
    color: #111;
    padding: 0 6px;
    border-radius: 4px;
    box-shadow: 0 0 28px rgba(255,122,0,.6);
}

.hero-sub {
    margin-top: 18px;
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
}

.hero-tagline {
    margin-top: 12px;
    font-size: 15px;
    color: var(--light);
}

.hero-cta-row {
    margin-top: 26px;
    display: flex;
    gap: 16px;
}

/* CTA BUTTON ------------------------------------------- */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    font-size: 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #ffb347);
    color: #111;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(255,122,0,.4);
    transition: .2s ease-in-out;
    animation: pulseGlow 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(255,122,0,.7);
}

/* HERO VISUAL ------------------------------------------ */

.hero-visual {
    position: relative;
    min-height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring-pulse {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0,175,255,.25), transparent 65%);
    filter: blur(10px);
    animation: softPulse 4s ease-in-out infinite;
}

.ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    border: 3px solid rgba(0,175,255,.4);
    animation: rotateRing 18s linear infinite;
}

.ring::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: inherit;
    border: 3px solid rgba(255,122,0,.6);
    animation: rotateRingReverse 24s linear infinite;
}

.hero-card {
    z-index: 2;
    background: radial-gradient(circle at top left, #1f2a4a, #0a0f24);
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 50px rgba(0,0,0,.6);
}

.hero-card-title {
    font-size: 20px;
    font-weight: 700;
}

.hero-card-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.hero-metrics {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
}

/* PROBLEEM / OPLOSSING -------------------------------- */

.section-title {
    font-size: 30px;
    font-weight: 700;
}

.section-kicker {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .18em;
    color: var(--teal);
}

.section-sub {
    font-size: 15px;
    color: var(--muted);
    max-width: 650px;
    margin-bottom: 30px;
}

.split {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.card {
    padding: 24px;
    background: linear-gradient(135deg, #101731, #070b18);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.card h4 {
    color: var(--blue);
    font-size: 18px;
    margin-bottom: 10px;
}

.card ul {
    padding-left: 18px;
    color: var(--muted);
}

/* STEPS ------------------------------------------------ */

.steps {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.step-pill {
    flex: 1 1 220px;
    background: #0d1326;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
}

.step-pill .badge {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #111;
}

/* CTA LOWER -------------------------------------------- */

.centered {
    text-align: center;
}

/* ANIMATIONS ------------------------------------------- */

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateRingReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes softPulse {
    0%,100% { opacity: .25; transform: scale(1); }
    50%     { opacity: .6; transform: scale(1.08); }
}

@keyframes pulseGlow {
    0%,100% { box-shadow: 0 0 20px rgba(255,122,0,.5); }
    50%     { box-shadow: 0 0 40px rgba(255,122,0,.9); }
}

/* RESPONSIVE ------------------------------------------- */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-title { font-size: 38px; }
    .split { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .hero-cta-row { flex-direction: column; }
    .btn-primary { width: 100%; text-align: center; }
}
