/* --------------------------------------------------------
   GLOBAL STYLE – HYBRID PREMIUM AI + BUSINESS
   Mobile-first architecture (best practice 2025)
-------------------------------------------------------- */

:root {
    --bg: #0b0f1a; /* Mye nærmere eksempelbildet */
    --bg-light: #141a28; /* Også litt mørkere for dropdown/nav bg */
    --card: rgba(30, 41, 59, 0.65);

    --text: #f1f5f9;
    --text-dim: #cbd5e1;

    --accent-1: #f97316; /* varm oransje */
    --accent-2: #a855f7; /* lilla */
    --accent-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 18%, #a855f7 55%, #38bdf8 100%);
    --cta-shadow: 0 26px 70px rgba(248, 113, 22, 0.8);


    --radius: 16px;
    --shadow-1: 0 12px 30px rgba(0,0,0,0.45);
    --shadow-2: 0 4px 14px rgba(0,0,0,0.25);

    --max-width: 1200px;
    --transition: 0.25s ease;
}

/* --------------------------------------------------------
   RESET / BASE
-------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.45;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.2rem;
}

section {
    padding: 4rem 0;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
}

/* --------------------------------------------------------
   NAVBAR
-------------------------------------------------------- */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(
        to bottom,
        #080b12 0%,
        #0b0f1a 100%
    ) !important;
    backdrop-filter: blur(18px);
    border-bottom: none !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.85); /* litt dypere glow i stedet */
}



.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.75rem;
    padding: 0.35rem 1.2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}


.brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}


.brand-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 10px; 
    background: radial-gradient(circle at 30% 20%, #111827, #020617);
    box-shadow: 0 14px 30px rgba(0,0,0,0.75);
    overflow: hidden;
    padding: 0;
}

/* veldig subtil glow, nesten usynlig – bare litt dybde */
.brand-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(59,130,246,0.28), transparent 60%);
    opacity: 0.7;
    z-index: 0;
}

.brand-icon img {
    position: relative;
    z-index: 1;
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    display: block;
}




.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Press Start 2P', cursive !important;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #e2e8f0;
    opacity: 0.95;
}



.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
    margin-top: 2px;
}





.nav-links {
    display: none;
    flex-direction: column;
    gap: 1.3rem;
    background: var(--bg-light);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1.5rem;
    width: 70%;
    border-radius: 0 0 0 20px;
    box-shadow: var(--shadow-1);
}

.nav-links.open {
    display: flex;
}

.nav-links a {
    color: var(--text);
    font-size: 1.1rem;
    text-decoration: none;
}

.nav-links {
    display: none;
    flex-direction: column;
    gap: 1.3rem;
    background: var(--bg-light);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1.5rem;
    width: 70%;
    border-radius: 0 0 0 20px;
    box-shadow: var(--shadow-1);
}

.nav-links a {
    text-decoration: none;
}

.nav-link {
    font-family: "Space Grotesk", sans-serif !important;
    font-size: 0.70rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    /*background: linear-gradient(90deg, var(--accent-1), var(--accent-2));*/
    transition: width var(--transition);
}


.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}



/* Aktiv nav-link (for siden man står på) */
.nav-link.is-active,
.nav-link[data-active="true"] {
    color: var(--text);
}

.nav-link.is-active::after,
.nav-link[data-active="true"]::after {
    width: 100%;
    opacity: 1;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}








.nav-cta {
    padding: 0.20rem 0.9rem;       /* redusert padding */
    min-width: 240px;              /* SLIMMER, FIXER BREDDEN */
    justify-content: center;       
    border-radius: 999px;
    background: var(--accent-gradient);
    color: #020617;
    font-size: 0.60rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: auto !important;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--cta-shadow);
    transition: transform var(--transition),
                box-shadow var(--transition),
                filter var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 1);
}



.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-size: 1.8rem;
}


.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    width: 34px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

/* Selve "burgeren" – 3 linjer */
.nav-toggle-line {
    position: relative;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    display: block;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
}

.nav-toggle-line::before {
    top: -6px;
}

.nav-toggle-line::after {
    top: 6px;
}




@media (max-width: 767px) {
    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.4rem;
    }
}


/* --------------------------------------------------------
   HERO SECTION – HYBRID PREMIUM AI
-------------------------------------------------------- */








/* --------------------------------------------------------
   HERO SECTION – VIDEO HERO
-------------------------------------------------------- */

.hero-section {
    padding: 5.5rem 1rem 3.5rem;
    position: relative;
}

.hero-with-video {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Videorama */
.hero-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.8);
    background: #020617;
}

.hero-video {
    width: 100%;
    height: clamp(220px, 55vh, 520px);
    object-fit: cover;
    display: block;
}

/* Mørk gradient over video så tekst blir lesbar */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.3), transparent 60%),
        linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0.3));
}

/* Teksten midt oppå videoen */
.hero-video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.8rem 1.4rem;
    text-align: center;
}

.hero-title {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.hero-title .accent {
    background: var(--accent-gradient);  /* samme som knappene */
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}


@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    max-width: 620px;
    font-size: 1rem;
    color: var(--text-dim);
}

/* CTA under video */
.hero-cta-below {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 2rem auto 1.5rem;
    width: 100%;
    max-width: 460px;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-cta-below {
        flex-direction: row;
    }
}

/* Behold eksisterende knappestil, bare litt slankere om du vil */
.btn-primary,
.btn-ghost {
    padding: 0.7rem 2.6rem;
}

/* "Bygger med" under knappene */
.hero-trust {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.hero-logos {
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0.85;
}


/* Hoved-CTA – lik den store oransje/lilla knappen du hadde før */
.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;              /* hvit tekst */
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 25px 50px rgba(247, 109, 12, 0.55); /* dypere glow */
    border-radius: 999px;
    padding: 0.85rem 2.8rem;
    font-size: 0.95rem;
}


.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 1);
}

/* Sekundær knapp – outline/ghost, men samme størrelse */
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--text-dim);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: rgba(248, 250, 252, 0.9);
    color: var(--text);
    background: rgba(15, 23, 42, 0.7);
}


/* Hero visual cards */
.hero-visual {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 60%);
    filter: blur(60px);
    animation: heroGlow 6s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-card {
    background: var(--card);
    backdrop-filter: blur(10px);
    padding: 1.4rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    max-width: 320px;
    border: 1px solid rgba(148,163,184,0.15);
    text-align: center;
}

@keyframes heroGlow {
    0% { transform: scale(1); opacity: 0.65; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.65; }
}








/* --------------------------------------------------------
   MEGA CTA – "Se hva jeg kan automatisere"
-------------------------------------------------------- */

.mega-cta {
    padding: 3.5rem 0 4rem;
}

.mega-cta-inner {
    background: radial-gradient(circle at top left,
                 rgba(148, 163, 184, 0.12), transparent 55%),
                linear-gradient(to bottom right,
                 rgba(15,23,42,0.96), rgba(15,23,42,0.88));
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
    padding: 2.4rem 1.8rem;
    text-align: center;
}

.mega-cta-title {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.mega-cta-text {
    max-width: 640px;
    margin: 0 auto 1.8rem;
    color: var(--text-dim);
    font-size: 0.98rem;
}

.mega-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2.8rem;
    border-radius: 999px;
    border: none;
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 25px 60px rgba(248, 113, 22, 0.7);
    cursor: pointer;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        filter var(--transition);
}

.mega-cta-button:hover,
.mega-cta-button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 1);
}

@media (min-width: 768px) {
    .mega-cta-inner {
        padding: 3rem 3rem;
    }

    .mega-cta-title {
        font-size: 2rem;
    }
}








/* --------------------------------------------------------
   SECTIONS SHARED STYLING
-------------------------------------------------------- */

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.card-grid {
    display: grid;
    gap: 1.3rem;
}

.card {
    background: var(--card);
    padding: 1.6rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-2);
}




/* --------------------------------------------------------
   TYPSIKE PROBLEMER – SCROLLENDE CARDS
-------------------------------------------------------- */

.painpoints {
    padding: 4rem 0 4rem;
}

.painpoints .section-desc {
    max-width: 720px;
    margin: 0.2rem auto 0;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.painpoints-marquee {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;

    /* full bredde over hele vinduet */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 4vw;  /* litt luft på sidene */
}


.marquee-row {
    overflow: hidden;
    position: relative;
}

.marquee-inner {
    display: inline-flex;
    gap: 1.2rem;
    min-width: max-content;
    animation: pain-marquee-left 32s linear infinite;
    animation-play-state: running;
}

.marquee-row--reverse .marquee-inner {
    animation-name: pain-marquee-right;
}	

/* Pause scroll-animation når man hoverer over en rad */
.marquee-row:hover {
    animation-play-state: paused;
}

.marquee-row-reverse:hover {
    animation-play-state: paused;
}
/* Når raden har klassen .paused: stopp animasjonen */
.marquee-row.paused .marquee-inner {
    animation-play-state: paused;
}



.pain-card {
    background: radial-gradient(circle at top left,
                 rgba(148,163,184,0.18), transparent 55%),
                rgba(15,23,42,0.98);
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.35);
    padding: 1.4rem 1.5rem;
    min-width: 260px;
    max-width: 320px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.95);
    color: var(--text);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease,
        background 0.25s ease;
}
/* Når du hoverer over en rad: dim alle kort litt */
.marquee-row:hover .pain-card {
    opacity: 0.75;
}

/* Kortet du faktisk holder over: full fokus + løft + glow */
.marquee-row:hover .pain-card:hover {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(129,140,248,0.9);
    box-shadow:
        0 26px 65px rgba(15,23,42,0.98),
        0 0 32px rgba(129,140,248,0.55);
    background: radial-gradient(circle at top left,
                 rgba(129,140,248,0.38), transparent 60%),
                rgba(15,23,42,0.98);
}
	

.pain-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.6);
    color: rgba(209,213,219,0.9);
    margin-bottom: 0.7rem;
}

.pain-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.pain-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Animasjon – desktop */
@keyframes pain-marquee-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pain-marquee-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Mobile: litt roligere, og tillat manuell scroll */
@media (max-width: 767px) {
    .painpoints-marquee {
        gap: 1rem;
    }

    .marquee-inner {
        animation-duration: 40s;
    }

    .marquee-row {
        padding-bottom: 0.5rem;
    }

    .marquee-row::-webkit-scrollbar {
        display: none;
    }
}






/* --------------------------------------------------------
   BENEFITS / RESULTATER – CARDS
-------------------------------------------------------- */

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit {
    background: var(--card);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    padding: 1.7rem 1.8rem;
    box-shadow: 0 22px 55px rgba(0,0,0,0.75);
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(248, 250, 252, 0.22), transparent 60%),
                linear-gradient(135deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 12px 35px rgba(15,23,42,0.9);
}

.benefit-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.benefit-text {
    font-size: 0.96rem;
    color: var(--text-dim);
    margin-bottom: 0.85rem;
}

.benefit-tag {
    display: inline-block;
    margin-top: 0.2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(15,23,42,0.9);
    color: rgba(226, 232, 240, 0.9);
    border: 1px solid rgba(148,163,184,0.4);
}

/* Tekstboksen nederst i seksjonen */
.benefit-highlight {
    margin-top: 2.2rem;
    padding: 1.4rem 1.6rem;
    border-radius: 16px;
    background: radial-gradient(circle at top left,
                 rgba(148,163,184,0.14), transparent 55%),
                rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.28);
    font-size: 0.95rem;
    color: var(--text-dim);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* To kolonner på desktop */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}






/* --------------------------------------------------------
   PROCESS
-------------------------------------------------------- */

.process-grid {
    display: grid;
    gap: 1.3rem;
}

.process-step {
    background: var(--card);
    padding: 1.4rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}

/* --------------------------------------------------------
   PRICING
-------------------------------------------------------- */

.pricing-grid {
    display: grid;
    gap: 1.3rem;
}

.pricing-card {
    background: var(--card);
    padding: 1.6rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}

/* --------------------------------------------------------
   BOOKING
-------------------------------------------------------- */

#booking .calendar-embed {
    background: var(--card);
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}

/* --------------------------------------------------------
   FOOTER
-------------------------------------------------------- */

footer {
    padding: 2rem 0;
    background: #0c1220;
    text-align: center;
    color: var(--text-dim);
}




/* --------------------------------------------------------
   ABOUT / OM MEG
-------------------------------------------------------- */

.about {
    padding: 4rem 0 4.5rem;
    border-top: 1px solid rgba(148,163,184,0.22);
    background:
        radial-gradient(circle at top left, rgba(148,163,184,0.12), transparent 55%),
        #020617;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 1.8rem;
}

.about-title {
    font-size: 1.9rem;
    letter-spacing: -0.03em;
}

.about-layout {
    display: grid;
    gap: 1.8rem;
}

.about-main p {
    color: var(--text-dim);
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

.about-main p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    margin-top: 1.2rem;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    background: radial-gradient(circle at top left, rgba(56,189,248,0.14), transparent 55%);
    border: 1px solid rgba(56,189,248,0.4);
    font-size: 0.9rem;
    color: rgba(226,232,240,0.96);
}

.about-side {
    padding: 1.1rem 1.2rem;
    border-radius: 16px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.45);
    box-shadow: 0 20px 60px rgba(15,23,42,0.9);
    align-self: flex-start;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.5);
    color: rgba(226,232,240,0.9);
    margin-bottom: 0.9rem;
}

.about-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.about-label {
    font-weight: 600;
    color: #e5e7eb;
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.3fr);
        align-items: flex-start;
    }
}






/* --------------------------------------------------------
   DESKTOP BREAKPOINTS
-------------------------------------------------------- */

@media (min-width: 768px) {
    .nav-links {
        position: static;
        display: flex !important;
        flex-direction: row;
        gap: 1.8rem;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }

    .hero-inner {
        max-width: var(--max-width);
    }

    .hero-title {
        font-size: 3rem;
        text-align: left;
    }

    .hero-subtitle {
        text-align: left;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-section {
        padding-top: 7rem;
    }

    .hero-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-visual {
        margin-top: 0;
    }

    .services-grid, .pricing-grid, .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        text-align: center !important;
    }

    .hero-subtitle {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-video-content {
        align-items: center !important;
    }
}




/* Scroll reveal – brukes sammen med JS */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}




@keyframes pulseDot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.45);
    }
    70% {
        transform: scale(1.25);
        box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.45);
    }
}
.btn-primary,
.btn-ghost,
.nav-cta {
    border-radius: 999px !important;
}


/* --- Hide navbar on scroll --- */
.navbar {
    transition: transform 0.35s ease;
}

.navbar.hide-on-scroll {
    transform: translateY(-120%);
}

