/* ========================================
   Barnevakten Website Styles
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --primary: #1a365d;
    --primary-light: #2d4a7c;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --white: #ffffff;
    --gray-50: #ffffff;
    --gray-100: #f5f5f7;
    --gray-200: #e8e8ed;
    --surface: #ffffff;
    --surface-alt: #f5f5f7;
    --border: #e8e8ed;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    --section-max-width: 1400px;
}

[data-theme='dark'] {
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --gray-50: #0f172a;
    --gray-100: #1e293b;
    --gray-200: #334155;
    --surface: #1e293b;
    --surface-alt: #0f172a;
    --border: #334155;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', 'Segoe UI', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Hero Section (100% viewport width, full bleed)
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #0b0b0d;
    z-index: 0;
}

.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Dark gradient from bottom up – improves text visibility (Apple-style) */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 35%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ========================================
   Header & Navigation (legacy – .site-header styled in components.css)
   ======================================== */
header:not(.site-header) {
    position: relative;
    z-index: 10;
    padding: 24px 0;
}

/* ========================================
   Hero Content – title bottom-left, buttons bottom-right (Apple-style)
   ======================================== */
.hero {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 100px;
    width: 100%;
    max-width: var(--section-max-width);
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 100%;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin: 0;
    line-height: 1.5;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: #000;
    padding: 14px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition:
        transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.3s ease,
        opacity 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

[data-theme='dark'] .btn-primary {
    background: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

[data-theme='dark'] .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
}

.btn-primary svg {
    width: 24px;
    height: 24px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition:
        transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
        background 0.3s ease,
        border-color 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

[data-theme='dark'] .btn-secondary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   Section boxes – max-width on desktop, full on mobile
   ======================================== */
.showcase,
.features,
.highlights,
.pro-section,
.cta-section,
.contact-section {
    max-width: var(--section-max-width);
    margin: 10px auto;
    overflow: hidden;
}

@media (max-width: 768px) {
    .showcase,
    .features,
    .highlights,
    .pro-section,
    .cta-section,
    .contact-section {
        max-width: none;
        width: 100%;
        margin: 0;
    }
}

/* ========================================
   App Showcase - header above, slider section below
   ======================================== */
.showcase {
    padding: 96px 0 0;
    overflow: visible;
}

.showcase-header {
    padding-bottom: 34px;
}
/* Align with rest of page – same 24px as .container */
.showcase-header .container {
    padding-left: 24px;
    padding-right: 24px;
}
.showcase-header .section-label,
.showcase-header h2,
.showcase-header p {
    text-align: left;
}
.showcase-header h2 {
    font-size: 3rem;
}
.showcase-header .section-header {
    margin-bottom: 0;
    text-align: left;
}
.showcase-header .section-header p {
    margin: 0;
}

/* Sticky zone for slider + controls */
.showcase-slider-sticky-zone {
    padding-bottom: 26px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
}

/* Container: max-width, peeks extend outside – same 24px padding as header for alignment */
.showcase-slides-container {
    --showcase-peek: 180px;
    --showcase-slide-width: 100cqw; /* full container width for alignment with title */
    max-width: var(--section-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    overflow: visible;
    container-type: inline-size;
    container-name: showcase;
}

@media (max-width: 767px) {
    .showcase-slides-container {
        --showcase-peek: 120px;
    }
}

/* Clip extends outside container – reveals peek in margins */
.showcase-slides-clip {
    width: calc(100% + 2 * var(--showcase-peek));
    margin-left: calc(-1 * var(--showcase-peek));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain; /* prevent swipe-back when at first/last slide */
    touch-action: auto; /* allow both horizontal drag and vertical page scrolling */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.showcase-slides-clip::-webkit-scrollbar {
    display: none;
}

/* Slider controls: docked under slider, fixed while inside slider bounds */
.showcase-pagination {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: fit-content;
    margin: 24px auto 0;
    padding: 0;
}

.showcase-pagination.is-fixed {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    margin: 0;
}

.showcase-pagination-pill {
    display: flex;
    align-items: center;
    padding: 24px 28px 24px 32px;
    background: #efeff2;
    border-radius: 24px;
}
[data-theme='dark'] .showcase-pagination-pill {
    background: rgba(30, 41, 59, 0.9);
}

.showcase-pagination-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes showcase-progress-fill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    padding: 0;
    transition:
        width 0.3s ease,
        background 0.25s ease,
        border-radius 0.3s ease;
    position: relative;
    overflow: hidden;
}
.showcase-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}
/* Active dot = pill with progress bar fill */
.showcase-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
}
.showcase-dot-progress {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    transform-origin: left center;
}
.showcase-dot.active .showcase-dot-progress {
    display: block;
}
.showcase-dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.showcase-play {
    width: 52px;
    height: 52px;
    border: none;
    background: #efeff2;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: opacity 0.2s ease;
}
.showcase-play:hover {
    opacity: 0.85;
}
.showcase-play .material-symbols-rounded {
    font-size: 28px;
}
.showcase-play.playing .material-symbols-rounded {
    font-variation-settings: 'FILL' 1;
}

.hero-video-toggle {
    position: absolute;
    top: 96px;
    right: 24px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(18, 18, 22, 0.38);
    color: #f5f5f7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    z-index: 1410;
    pointer-events: auto;
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 6px 14px rgba(0, 0, 0, 0.26);
    transition: opacity 0.2s ease;
}

.hero-video-toggle:hover {
    opacity: 0.85;
}

.hero-video-toggle .material-symbols-rounded {
    font-size: 20px;
}

[data-theme='dark'] .showcase-dot {
    background: rgba(148, 163, 184, 0.3);
}
[data-theme='dark'] .showcase-dot:hover {
    background: rgba(148, 163, 184, 0.5);
}
[data-theme='dark'] .showcase-dot.active {
    background: rgba(148, 163, 184, 0.25);
}
[data-theme='dark'] .showcase-dot.active .showcase-dot-progress {
    background: rgba(148, 163, 184, 0.7);
}
[data-theme='dark'] .showcase-play {
    background: #3d4a5c;
    color: #fff;
}
[data-theme='dark'] .showcase-play:hover {
    opacity: 0.9;
}

/* Track – peek padding aligns first/last slide with container */
.showcase-slides-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 24px;
    padding: 0 var(--showcase-peek);
}

/* Each slide full width of container for alignment */
.showcase-slide {
    flex: 0 0 var(--showcase-slide-width);
    width: var(--showcase-slide-width);
    flex-shrink: 0;
    min-height: 420px;
    max-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--surface-alt);
    overflow: hidden;
    border-radius: 24px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

/* Alternate showcase card colors */
.showcase-slide:nth-child(1) {
    background: #ebf0fe;
}
.showcase-slide:nth-child(2) {
    background: #f9f3ff;
}
.showcase-slide:nth-child(3) {
    background: rgb(249, 255, 237);
}
.showcase-slide:nth-child(4) {
    background: #fceee6;
}
.showcase-slide:nth-child(5) {
    background: #f5f5f7;
}

/* Keep dark mode palette readable */
[data-theme='dark'] .showcase-slide:nth-child(n) {
    background: var(--surface-alt);
}
@media (min-width: 768px) {
    .showcase-slide {
        min-height: 520px;
        max-height: 650px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 32px;
        padding: 40px 48px;
        border-radius: 24px;
    }
}

.showcase-slide-content {
    flex: 0 1 auto;
    min-width: 0;
    text-align: left;
}
@media (min-width: 768px) {
    .showcase-slide-content {
        flex: 0 1 clamp(460px, 36vw, 560px);
        max-width: clamp(460px, 36vw, 560px);
        text-align: left;
    }
}

.showcase-slide-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.35;
    will-change: transform, opacity;
}

.showcase-slide-text.showcase-text-animate {
    animation: showcase-text-enter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes showcase-text-enter {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media (min-width: 768px) {
    .showcase-slide-text {
        font-size: 1.5rem;
    }
}

.showcase-slide-media {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (min-width: 768px) {
    .showcase-slide-media {
        margin-left: auto;
    }
}

/* Screenshots big enough to clip in slide, subtle per-slide rotation */
.showcase-slide-media img {
    width: 280px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Larger image treatment for slides with 3-device compositions */
.showcase-slide-media img.showcase-image-large {
    width: 430px;
    max-width: none;
}

/* Selected slides: expand image so top/bottom are clipped by the card */
.showcase-slide-media img.showcase-image-bleed {
    width: 560px;
    max-width: none;
    margin-top: -52px;
    margin-bottom: -52px;
}

/* Slide 4 has a wider aspect ratio, so it needs a larger bleed size */
.showcase-slide:nth-child(4) .showcase-slide-media img.showcase-image-bleed {
    width: 680px;
    margin-top: -72px;
    margin-bottom: -72px;
}
/* Each slide gets a slightly different rotation for variety */
.showcase-slide:nth-child(1) .showcase-slide-media img {
    transform: rotate(-2deg);
}
.showcase-slide:nth-child(2) .showcase-slide-media img {
    transform: rotate(1.5deg);
}
.showcase-slide:nth-child(3) .showcase-slide-media img {
    transform: rotate(-3deg);
}
.showcase-slide:nth-child(4) .showcase-slide-media img {
    transform: rotate(2deg);
}
.showcase-slide:nth-child(5) .showcase-slide-media img {
    transform: rotate(-1deg);
}
.showcase-slide:nth-child(6) .showcase-slide-media img {
    transform: rotate(2.5deg);
}
.showcase-slide:nth-child(7) .showcase-slide-media img {
    transform: rotate(-2.5deg);
}
.showcase-slide:nth-child(8) .showcase-slide-media img {
    transform: rotate(1deg);
}
.showcase-slide:nth-child(9) .showcase-slide-media img {
    transform: rotate(-3.5deg);
}
.showcase-slide:nth-child(10) .showcase-slide-media img {
    transform: rotate(0.5deg);
}
.showcase-slide:nth-child(1) .showcase-slide-media img:hover {
    transform: rotate(-2deg) scale(1.03);
}
.showcase-slide:nth-child(2) .showcase-slide-media img:hover {
    transform: rotate(1.5deg) scale(1.03);
}
.showcase-slide:nth-child(3) .showcase-slide-media img:hover {
    transform: rotate(-3deg) scale(1.03);
}
.showcase-slide:nth-child(4) .showcase-slide-media img:hover {
    transform: rotate(2deg) scale(1.03);
}
.showcase-slide:nth-child(5) .showcase-slide-media img:hover {
    transform: rotate(-1deg) scale(1.03);
}
.showcase-slide:nth-child(6) .showcase-slide-media img:hover {
    transform: rotate(2.5deg) scale(1.03);
}
.showcase-slide:nth-child(7) .showcase-slide-media img:hover {
    transform: rotate(-2.5deg) scale(1.03);
}
.showcase-slide:nth-child(8) .showcase-slide-media img:hover {
    transform: rotate(1deg) scale(1.03);
}
.showcase-slide:nth-child(9) .showcase-slide-media img:hover {
    transform: rotate(-3.5deg) scale(1.03);
}
.showcase-slide:nth-child(10) .showcase-slide-media img:hover {
    transform: rotate(0.5deg) scale(1.03);
}
@media (min-width: 768px) {
    .showcase-slide-media img {
        width: 260px;
    }

    .showcase-slide-media img.showcase-image-large {
        width: 580px;
    }

    .showcase-slide-media img.showcase-image-bleed {
        width: 760px;
        margin-top: -88px;
        margin-bottom: -88px;
    }

    .showcase-slide:nth-child(4) .showcase-slide-media img.showcase-image-bleed {
        width: 920px;
        margin-top: -110px;
        margin-bottom: -110px;
    }
}

/* ========================================
   Feature Highlights with Screenshots
   ======================================== */
.highlights {
    padding: 60px 0;
    background: var(--surface-alt);
}

/* highlights-grid: 2x2 grey columns – full width for consistent content */
.highlights.highlights-grid {
    padding: 0;
    background: transparent;
    overflow: visible;
    max-width: none;
    width: 100%;
    margin: 0;
}

.highlights-columns {
    width: 100%;
    padding: 36px 0 56px;
    display: flex;
    justify-content: center;
}

.highlights-columns .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.highlights-grid-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.highlight-column {
    background: var(--surface-alt);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 32px 0;
    min-width: 0;
}

.highlight-column.highlight-column-dark {
    background: #000;
}

.highlight-column.highlight-column-dark .highlight-text h2,
.highlight-column.highlight-column-dark .highlight-text p,
.highlight-column.highlight-column-dark .highlight-list li {
    color: #fff;
}

.highlight-column .highlight-phone {
    margin-top: auto;
}

[data-theme='dark'] .highlight-column {
    background: var(--gray-100);
}

.highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 44px 0;
}

.highlight-row + .highlight-row {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

[data-theme='dark'] .highlight-row + .highlight-row {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.highlight-row.reverse {
    direction: rtl;
}

.highlight-row.reverse > * {
    direction: ltr;
}

.highlight-phone {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.highlight-screenshot {
    width: 340px;
    max-height: 520px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    transition:
        transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
        filter 0.5s ease;
}

.highlight-screenshot-oppdrag-large {
    width: min(100%, 560px);
    max-height: 720px;
}

.highlight-screenshot-rutiner-large {
    width: min(100%, 520px);
    max-height: 680px;
}

.highlight-screenshot:hover {
    transform: translateY(-12px);
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.12));
}

/* Dual phone layout for Oppdrag - side by side with slight overlap */
.highlight-phone-dual {
    display: flex;
    gap: -20px;
}

.highlight-phone-dual .highlight-screenshot {
    width: 280px;
    max-height: 520px;
}

.highlight-phone-dual .highlight-screenshot:last-child {
    margin-left: -30px;
}

.highlight-phone-dual .highlight-screenshot:hover {
    transform: none;
}

.highlight-text h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-wrap: balance;
}

.highlight-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
    text-wrap: pretty;
}

.highlights-grid .highlight-column .highlight-text {
    text-align: center;
}

.highlights-grid .highlight-column .highlight-text p {
    margin-left: auto;
    margin-right: auto;
}

.highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.highlight-list .material-symbols-rounded {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: var(--surface-alt);
    padding: 96px 0;
    position: relative;
}

/* features-why: title outside, grey columns inside – full width like hero for consistent content width */
.features-why {
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    overflow: visible;
    max-width: none;
    width: 100%;
    margin: 0;
}

.features-why-header {
    width: 100%;
    padding: 34px 0 26px;
    display: flex;
    justify-content: center;
}

.features-why-header .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.features-why-header .section-header {
    text-align: left;
    margin-bottom: 0;
}

.features-why-header .section-header p {
    margin: 0;
}

.features-why-columns {
    width: 100%;
    padding: 0 0 54px;
    display: flex;
    justify-content: center;
}

.features-why-columns .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.features-why .features-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.features-why .feature-column {
    background: var(--surface-alt);
    padding: 40px 32px;
    min-height: 180px;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.features-why .feature-column:hover {
    transform: none;
    box-shadow: none;
}

[data-theme='dark'] .features-why .feature-column {
    background: var(--gray-100);
}

.features-why-tagline {
    text-align: center;
    margin-top: 24px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* features-about: same layout as features-why – 2 column cards */
.features-about {
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    overflow: visible;
    max-width: none;
    width: 100%;
    margin: 0;
}

.features-about-header {
    width: 100%;
    padding: 12px 0 14px;
    display: flex;
    justify-content: center;
}

.features-about-header .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.features-about-header .section-header {
    text-align: left;
    margin-bottom: 0;
}

.features-about-header h2 {
    font-size: 3rem;
}

.features-about-columns {
    width: 100%;
    padding: 0 0 22px;
    display: flex;
    justify-content: center;
}

.features-about-columns .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.features-about .features-about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.features-about .feature-column {
    background: var(--surface-alt);
    padding: 40px 32px;
    min-height: 180px;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.features-about .feature-column:hover {
    transform: none;
    box-shadow: none;
}

.features-about .feature-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

[data-theme='dark'] .features-about .feature-column {
    background: var(--gray-100);
}

/* features-everyday: same column layout as features-why – full width for consistent content */
.features-everyday {
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    overflow: visible;
    max-width: none;
    width: 100%;
    margin: 0;
}

.features-everyday-header {
    width: 100%;
    padding: 34px 0 26px;
    display: flex;
    justify-content: center;
}

.features-everyday-header .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.features-everyday-header .section-header {
    text-align: left;
    margin-bottom: 0;
}

.features-everyday-header .section-header p {
    margin: 0;
}

.features-everyday-columns {
    width: 100%;
    padding: 0 0 30px;
    display: flex;
    justify-content: center;
}

.features-everyday-columns .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.features-everyday .features-everyday-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.features-everyday .feature-column {
    background: var(--surface-alt);
    padding: 40px 32px;
    min-height: 180px;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.features-everyday .feature-column:hover {
    transform: none;
    box-shadow: none;
}

[data-theme='dark'] .features-everyday .feature-column {
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-wrap: balance;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    text-wrap: pretty;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 32px;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme='dark'] .feature-card {
    background: var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: fit-content;
    height: fit-content;
    background: transparent;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: none;
}

.feature-icon .material-symbols-rounded {
    font-size: 28px;
    color: #000;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ========================================
   PRO Section
   ======================================== */
.pro-section {
    padding: 80px 0;
    background: var(--surface-alt);
}

.pro-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pro-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #06b6d4);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.pro-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pro-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pro-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.pro-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--card-shadow);
}

.pro-feature .material-symbols-rounded {
    font-size: 20px;
    color: #000;
}

.pro-price {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pro-price strong {
    color: var(--text-primary);
    font-size: 1.2rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 22px 0;
    position: relative;
    overflow: visible;
    max-width: var(--section-max-width);
    margin: 0 auto;
    display: block;
}

.cta-section .container {
    width: 100%;
    max-width: var(--section-max-width);
    padding-left: 24px;
    padding-right: 24px;
}

.cta-section .cta-content {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    padding: clamp(72px, 9vw, 120px) clamp(24px, 6vw, 72px);
    background: var(--primary);
    isolation: isolate;
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('screenshots/cta-family.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.38;
    z-index: 0;
}

.cta-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.5;
    z-index: 1;
}

.cta-content > * {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 72px 0;
    background: transparent;
}

.contact-section .container {
    max-width: var(--section-max-width);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 3.6vw, 48px);
    align-items: stretch;
    background: #f5f5f7;
    padding: clamp(48px, 5.5vw, 88px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 440px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 16px 0;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: #6e6e73;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 42ch;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item .material-symbols-rounded {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    font-size: 24px;
}

.contact-item strong {
    display: block;
    color: #1d1d1f;
    font-weight: 600;
}

.contact-item span {
    color: #6e6e73;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
}

[data-theme='dark'] .contact-form-wrapper {
    background: transparent;
    border: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-wrapper .form-group label {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 0.88rem;
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: #ffffff;
    color: #1d1d1f;
}

.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 92px;
}

.contact-form-wrapper .spam-check {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
}

.contact-form-wrapper .spam-check label {
    color: #1d1d1f;
    font-size: 0.82rem;
}

.contact-form-wrapper .spam-check input {
    margin-top: 6px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-light);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn .material-symbols-rounded {
    font-size: 18px;
}

.form-status {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--text-primary);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-brand span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   Scroll Animations
   ======================================== */
.highlight-row,
.highlight-column,
.feature-card,
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.highlight-row.visible,
.highlight-column.visible,
.feature-card.visible,
.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered highlight columns */
.highlight-column:nth-child(2) {
    transition-delay: 0.1s;
}
.highlight-column:nth-child(3) {
    transition-delay: 0.2s;
}
.highlight-column:nth-child(4) {
    transition-delay: 0.3s;
}

/* Staggered feature cards */
.feature-card:nth-child(2) {
    transition-delay: 0.1s;
}
.feature-card:nth-child(3) {
    transition-delay: 0.2s;
}
.feature-card:nth-child(4) {
    transition-delay: 0.3s;
}
.feature-card:nth-child(5) {
    transition-delay: 0.4s;
}
.feature-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-buttons {
        align-self: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    .highlight-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .highlight-row.reverse {
        direction: ltr;
    }

    .highlight-column .highlight-text {
        text-align: left;
    }

    .highlight-column .highlight-phone {
        justify-content: flex-start;
    }

    .highlight-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .highlight-column .highlight-text p {
        margin-left: 0;
        margin-right: 0;
    }

    .highlight-list {
        align-items: center;
    }

    .highlight-column .highlight-list {
        align-items: flex-start;
    }

    .highlight-phone-dual .highlight-screenshot {
        width: 240px;
        max-height: 480px;
    }

    .highlight-phone-dual .highlight-screenshot:last-child {
        margin-left: -25px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-why .features-why-grid,
    .features-everyday .features-everyday-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 24px 20px;
    }

    .contact-info {
        max-width: 680px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-video-toggle {
        top: calc(64px + env(safe-area-inset-top) + 8px);
        right: 16px;
    }

    .hero-section {
        --hero-mobile-cta-bar-height: 92px;
        min-height: 100svh;
    }

    .hero {
        position: relative;
        padding: 0 0 calc(var(--hero-mobile-cta-bar-height) + 22px);
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-buttons {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        align-self: stretch;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(18, 18, 22, 0.42);
        backdrop-filter: saturate(180%) blur(18px);
        -webkit-backdrop-filter: saturate(180%) blur(18px);
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.05rem;
    }

    .nav-links {
        display: none;
    }

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .highlights-grid-inner {
        grid-template-columns: 1fr;
    }

    .highlight-text h2 {
        font-size: 1.8rem;
    }

    .highlight-screenshot {
        width: 280px;
        max-height: 440px;
    }

    .highlight-screenshot-oppdrag-large {
        width: min(100%, 440px);
        max-height: 620px;
    }

    .highlight-screenshot-rutiner-large {
        width: min(100%, 420px);
        max-height: 560px;
    }

    .highlight-phone-dual .highlight-screenshot {
        width: 200px;
        max-height: 440px;
    }

    .highlight-phone-dual .highlight-screenshot:last-child {
        margin-left: -20px;
    }

    .showcase-slide-media img {
        width: 360px;
    }

    .showcase-slide-media img.showcase-image-large {
        width: min(100%, 540px);
    }

    .showcase-slide-media img.showcase-image-bleed {
        width: min(100%, 620px);
        margin-top: 6px;
        margin-bottom: -12px;
    }

    .showcase-slide:nth-child(4) .showcase-slide-media img.showcase-image-bleed {
        width: min(100%, 680px);
        margin-top: 10px;
        margin-bottom: -16px;
    }

    .showcase-slide:nth-child(5) .showcase-slide-media img.showcase-image-bleed {
        width: min(100%, 660px);
        margin-top: 10px;
        margin-bottom: -14px;
    }

    .showcase {
        padding: 56px 0 0;
    }

    .showcase-header {
        padding-bottom: 24px;
    }
    .showcase-header h2,
    .features-about-header h2 {
        font-size: 2.25rem;
    }

    .showcase-slider-sticky-zone {
        padding-bottom: 22px;
    }

    .showcase-pagination {
        margin-top: 18px;
    }

    .showcase-pagination.is-fixed {
        bottom: 18px;
    }

    .showcase-slide {
        min-height: 620px;
        justify-content: flex-start;
        gap: 20px;
        padding: 30px 0 0;
    }

    .showcase-slide-content {
        width: 100%;
        padding: 6px 32px 0;
    }

    .showcase-slide-text {
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.34;
        letter-spacing: -0.01em;
    }

    .showcase-slide-media {
        width: 100%;
        flex: 1;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }

    .showcase-slide:nth-child(n) .showcase-slide-media img,
    .showcase-slide:nth-child(n) .showcase-slide-media img:hover {
        transform: none;
    }

    .highlights {
        padding: 32px 0;
    }

    .highlight-row {
        padding: 28px 0;
    }

    .features {
        padding: 56px 0;
    }

    .features-everyday .features-everyday-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        scroll-snap-type: none;
        gap: 14px;
        padding: 0;
    }

    .features-everyday .feature-column {
        min-height: 100%;
        padding: 24px 18px;
    }

    .cta-section {
        padding: 20px 0;
    }

    .contact-section {
        padding: 44px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-video-toggle {
        top: calc(64px + env(safe-area-inset-top) + 8px);
        right: 14px;
    }

    .hero-section {
        --hero-mobile-cta-bar-height: 96px;
        min-height: 100svh;
    }
}

@media (max-width: 768px) {
    .highlight-column .highlight-phone {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .highlight-screenshot {
        width: 240px;
        max-height: 380px;
    }

    .highlight-screenshot-oppdrag-large {
        width: min(100%, 360px);
        max-height: 520px;
    }

    .highlight-screenshot-rutiner-large {
        width: min(100%, 340px);
        max-height: 480px;
    }

    .highlight-phone-dual .highlight-screenshot {
        width: 160px;
        max-height: 380px;
    }

    .highlight-phone-dual .highlight-screenshot:last-child {
        margin-left: -15px;
    }

    .showcase-slide-media img {
        width: 320px;
    }

    .showcase-slide-media img.showcase-image-large {
        width: min(100%, 460px);
    }

    .showcase-slide-media img.showcase-image-bleed {
        width: min(100%, 560px);
        margin-top: 6px;
        margin-bottom: -10px;
    }

    .showcase-slide:nth-child(4) .showcase-slide-media img.showcase-image-bleed {
        width: min(100%, 920px);
        margin-top: -150px;
        margin-bottom: -150px;
        opacity: 1;
    }

    .showcase-slide:nth-child(5) .showcase-slide-media img.showcase-image-bleed {
        width: min(100%, 900px);
        margin-top: -140px;
        margin-bottom: -145px;
        opacity: 1;
    }

    .showcase-slide {
        min-height: 560px;
        padding: 26px 0 0;
    }

    .showcase-slide-content {
        padding: 6px 24px 0;
    }

    .showcase-slide-text {
        font-size: 1rem;
        font-weight: 600;
    }

    .features-everyday .features-everyday-grid {
        gap: 10px;
    }

    .features-everyday .feature-column {
        padding: 18px 14px;
    }

    .features-everyday .feature-column h3 {
        font-size: 1rem;
    }

    .features-everyday .feature-column p {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .showcase-pagination {
        margin-top: 16px;
    }

    .showcase-pagination.is-fixed {
        bottom: 16px;
    }

    .showcase-header h2,
    .features-about-header h2 {
        font-size: 1.9rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .highlight-text h2 {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-slides-track {
        transition: none;
    }

    .showcase-dot-progress {
        animation: none !important;
        transform: scaleX(1);
    }

    .showcase-slide-text.showcase-text-animate {
        animation: none;
    }
}

@media (max-width: 768px) {
    .hero-bg video {
        object-position: 78% center;
    }

    .showcase-slide .showcase-slide-media img,
    .showcase-slide .showcase-slide-media img.showcase-image-large,
    .showcase-slide .showcase-slide-media img.showcase-image-bleed {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        margin: 0 !important;
        object-fit: cover !important;
        object-position: center bottom !important;
        opacity: 1 !important;
    }

    .showcase-slide {
        position: relative;
        overflow: hidden;
    }

    .showcase-slide::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 58%;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.76) 0%,
            rgba(0, 0, 0, 0.58) 34%,
            rgba(0, 0, 0, 0.24) 68%,
            rgba(0, 0, 0, 0) 100%
        );
    }

    .showcase-slide .showcase-slide-content {
        position: relative;
        z-index: 2;
        margin-top: auto;
        padding: 0 24px 28px;
    }

    .showcase-slide .showcase-slide-text {
        color: #fff;
        text-shadow: none;
    }

    .showcase-slide .showcase-slide-media {
        position: absolute;
        inset: 0;
        z-index: 0;
        margin: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: stretch;
        justify-content: stretch;
        pointer-events: none;
    }

    /* Keep these sections visible on mobile even if reveal observer/timing is delayed */
    .features-everyday-header.reveal-on-scroll,
    .features-about-header.reveal-on-scroll,
    .features-everyday .feature-card,
    .features-about .feature-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
