/* =============================================================================
   ACTIVATE! WIRELESS — Site styles
   Implemented from the Claude Design handoff bundle
   (activate-wireless-design-system). Tokens mirror project/colors_and_type.css.
   ========================================================================== */

:root {
    /* ------------------------------------------------------------------ COLORS */
    /* Brand primary — the Activate red. */
    --red-500: #FC0000;
    --red-600: #DC0000;
    --red-700: #B30000;
    --red-100: #FFE0E0;
    --red-50: #FFF5F5;

    /* Neutrals — Bootstrap-aligned ramp. */
    --black: #000000;
    --ink-900: #212529;
    --ink-800: #343A40;
    --ink-700: #495057;
    --ink-600: #6C757D;
    --ink-500: #ADB5BD;
    --ink-400: #CED4DA;
    --ink-300: #DEE2E6;
    --ink-200: #E9ECEF;
    --ink-100: #F1F3F5;
    --ink-50:  #F8F9FA;
    --paper:   #FAFAFA;
    --white:   #FFFFFF;

    /* Semantic. */
    --success-500: #198754;
    --info-500: #0D6EFD;
    --warning-500: #FFC107;
    --danger-500: #DC3545;

    /* Foreground / background semantic tokens. */
    --fg-strong: var(--ink-900);
    --fg-default: var(--ink-700);
    --fg-muted: var(--ink-600);
    --fg-subtle: var(--ink-500);
    --fg-on-dark: var(--white);
    --fg-on-dark-muted: rgba(255, 255, 255, 0.72);
    --fg-accent: var(--red-500);
    --fg-link: var(--red-500);

    --bg-page: var(--white);
    --bg-section: var(--paper);
    --bg-section-2: var(--ink-50);
    --bg-dark: var(--ink-900);
    --bg-card: var(--white);

    --border-default: var(--ink-300);
    --border-strong: var(--ink-400);
    --border-on-dark: rgba(255, 255, 255, 0.16);

    /* Aliases — keep existing project styles working after the rebuild. */
    --aw-accent: var(--red-500);
    --aw-accent-hover: var(--red-600);
    --aw-text: var(--ink-900);
    --aw-text-muted: var(--ink-600);
    --aw-bg: var(--white);
    --aw-surface: var(--white);
    --aw-border: var(--ink-300);

    /* ----------------------------------------------------------------- TYPE */
    --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-logo: 'Anton', 'Oswald', 'Impact', sans-serif;
    --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

    --tracking-display: 0.12em;
    --tracking-eyebrow: 0.18em;
    --tracking-button: 0.12em;
    --tracking-normal: 0;

    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;

    --fs-display: 64px;
    --fs-h1: 40px;
    --fs-h2: 32px;
    --fs-h3: 24px;
    --fs-price: 48px;
    --fs-lg: 18px;
    --fs-body: 16px;
    --fs-sm: 14px;
    --fs-xs: 12px;
    --fs-eyebrow: 13px;

    /* ------------------------------------------------------------- SPACING */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;

    --section-pad-y: 96px;
    --container-max: 1200px;
    --container-pad: 32px;
    /* outer cap for full-bleed marketing sections (hero, banners) so they
       don't sprawl on ultra-wide displays. text/copy containers stay at
       --container-max above. */
    --section-max-width: 1600px;

    /* ------------------------------------------------------------- RADII */
    --radius-0: 0;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-pill: 9999px;

    /* ------------------------------------------------------------ SHADOWS */
    --shadow-none: none;
    --shadow-xs: 0 1px 2px rgba(33, 37, 41, 0.04);
    --shadow-sm: 0 2px 4px rgba(33, 37, 41, 0.06);
    --shadow-md: 0 4px 12px rgba(33, 37, 41, 0.08);
    --shadow-lg: 0 12px 32px rgba(33, 37, 41, 0.10);
    --shadow-focus: 0 0 0 3px rgba(252, 0, 0, 0.25);

    /* ------------------------------------------------------ MOTION */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --dur-fast: 140ms;
    --dur-base: 220ms;
    --dur-slow: 400ms;
}

/* =============================================================================
   Base
   ========================================================================== */
body {
    background-color: var(--bg-page);
    color: var(--fg-default);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--leading-relaxed);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--fg-strong);
}

a {
    color: inherit;
}

/* =============================================================================
   Utility classes
   ========================================================================== */
.text-accent {
    color: var(--red-500) !important;
}

.tracking-widest { letter-spacing: 0.2em; }
.tracking-wide   { letter-spacing: 0.1em; }

/* =============================================================================
   Semantic type — design system parity
   ========================================================================== */
.aw-display {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: var(--fs-display);
    letter-spacing: var(--tracking-display);
    line-height: var(--leading-tight);
    color: var(--fg-strong);
    text-transform: uppercase;
}

.aw-h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: var(--fs-h1);
    letter-spacing: var(--tracking-display);
    line-height: var(--leading-snug);
    color: var(--fg-strong);
    text-transform: uppercase;
}

.aw-eyebrow {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--fs-eyebrow);
    letter-spacing: var(--tracking-eyebrow);
    line-height: 1;
    color: var(--fg-strong);
    text-transform: uppercase;
}

.aw-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-price);
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--fg-strong);
}

.aw-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-body);
    line-height: var(--leading-relaxed);
    color: var(--fg-muted);
}

.aw-button-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: var(--tracking-button);
    text-transform: uppercase;
    line-height: 1;
}

/* =============================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    background-color: var(--red-500);
    border-color: var(--red-500);
    border-radius: var(--radius-0);
    padding: 13px 26px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: var(--tracking-button);
    text-transform: uppercase;
    transition: background-color var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--red-600);
    border-color: var(--red-600);
}

.btn-primary:active {
    background-color: var(--red-700);
    border-color: var(--red-700);
}

.btn-primary.btn-lg,
.btn-lg.btn-primary {
    padding: 16px 36px;
    font-size: 14px;
}

.btn-outline-dark {
    border-radius: var(--radius-0);
    border: 1px solid var(--ink-300);
    background: transparent;
    color: var(--ink-900);
    padding: 12px 25px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: var(--tracking-button);
    text-transform: uppercase;
    transition: background-color var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out);
}

.btn-outline-dark:hover {
    background-color: var(--ink-900);
    color: var(--white);
    border-color: var(--ink-900);
}

/* =============================================================================
   Navigation (light touches on Bootstrap navbar in _Layout.cshtml)
   ========================================================================== */
.navbar {
    border-bottom: 1px solid var(--ink-200);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-900);
    transition: color var(--dur-base) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-500);
}

.main-content {
    padding-top: 80px;
    /* paper bg shows in the letterbox margins around the max-width-capped
       full-bleed sections (.hero-rotator, .girls-night). all other
       sections paint their own background, so this only appears there. */
    background-color: var(--paper);
}

.logo-header {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.logo-footer {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
}

/* =============================================================================
   "Make Good Decisions" intro section (sits above the rotator hero)
   ========================================================================== */
.make-good-decisions {
    background: var(--paper);
    padding: 120px var(--container-pad) 96px;
}

@media (max-width: 640px) {
    .make-good-decisions {
        padding: 64px 20px 56px;
    }
}

.make-good-decisions__inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.make-good-decisions__headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 10vw, 64px);
    letter-spacing: clamp(0.01em, 0.5vw, 0.06em);
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--ink-900);
    margin: 0;
}

.make-good-decisions__body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--fg-muted);
    line-height: 1.65;
    max-width: 540px;
    margin: 28px auto 40px;
}

.make-good-decisions__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================================
   Hero Rotator — photo + scrim + copy per slide
   Desktop: crossfade two absolutely-stacked slides, copy overlays the photo.
   Mobile (<=640px): single-active slide stacks photo + dark "split band" of
   copy below — see HANDOFF - Hero Rotator Mobile (split-band).
   ========================================================================== */
.hero-rotator {
    position: relative;
    width: 100%;
    max-width: var(--section-max-width);
    margin-left: auto;
    margin-right: auto;
    height: calc(100vh - 92px);
    min-height: 620px;
    max-height: 820px;
    background: var(--ink-900);
    overflow: hidden;
}

.hero-rotator-viewport {
    position: absolute;
    inset: 0;
}

.hero-rotator-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 900ms var(--ease-in-out), visibility 0s linear 900ms;
}

.hero-rotator-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 900ms var(--ease-in-out), visibility 0s linear 0s;
}

/* Real <img> per slide — better LCP/perf than CSS background, and required
   for the mobile split-band where photo and copy are independent boxes. */
.hero-rotator-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-rotator-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.82) 36%,
        rgba(0, 0, 0, 0.55) 52%,
        rgba(0, 0, 0, 0.10) 72%,
        rgba(0, 0, 0, 0.00) 90%
    );
}

.hero-rotator-copy {
    position: absolute;
    inset: 0;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-rotator-content-inner {
    max-width: 620px;
}

.hero-rotator-heading {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 56px;
    line-height: 1.06;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-rotator-body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 28px 0 12px;
    max-width: 520px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-rotator-body-aside {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
    margin: 0 0 16px;
    max-width: 480px;
    font-style: italic;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-rotator-tagline {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1.5;
    margin: 0 0 32px;
    max-width: 480px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-rotator-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-rotator-price-strip {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Dot indicators — pill that elongates when active, brand red. */
.hero-rotator-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
    padding: 0;
}

.hero-rotator-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width var(--dur-base) var(--ease-out),
                background-color var(--dur-base) var(--ease-out);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-rotator-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.hero-rotator-dot.is-active {
    width: 28px;
    background: var(--red-500);
}

.hero-rotator-dot:focus-visible {
    outline: 2px solid var(--red-500);
    outline-offset: 3px;
}

/* Mobile split-band — photo on top, copy in a solid ink-900 band below.
   Per HANDOFF: same copy, just relocated for legibility on bright photos.
   Slides share a grid cell so the opacity crossfade from the desktop rule
   still plays; both slides have identical copy so heights match. */
@media (max-width: 640px) {
    .hero-rotator {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .hero-rotator-viewport {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-areas: "slide";
    }
    .hero-rotator-slide {
        position: relative;
        inset: auto;
        grid-area: slide;
        display: flex;
        flex-direction: column;
        /* opacity / visibility / transition all inherited from the base
           .hero-rotator-slide rule so the 900ms crossfade still runs. */
    }
    .hero-rotator-photo {
        position: static;
        flex: 0 0 auto;
        width: 100%;
        height: 240px;
    }
    .hero-rotator-scrim {
        display: none;
    }
    .hero-rotator-copy {
        position: static;
        inset: auto;
        max-width: none;
        margin: 0;
        background: var(--ink-900);
        padding: 28px 20px 36px;
    }
    .hero-rotator-content-inner {
        max-width: none;
    }
    .hero-rotator-heading,
    .hero-rotator-body,
    .hero-rotator-body-aside,
    .hero-rotator-tagline,
    .hero-rotator-price-strip {
        text-shadow: none;
    }
    .hero-rotator-heading {
        font-size: 34px;
        letter-spacing: 0.03em;
    }
    .hero-rotator-body { font-size: 16px; margin-top: 18px; }
    .hero-rotator-tagline { margin-bottom: 24px; }
    .hero-rotator-dots {
        bottom: 16px;
    }
}

/* =============================================================================
   Plans section — square cards, eyebrow + price + red-check features
   ========================================================================== */
.plans-section {
    background: var(--paper);
    padding: var(--section-pad-y) var(--container-pad);
}

.plans-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.plans-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.plans-section__title {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 0.18em;
    line-height: var(--leading-snug);
    font-weight: 300;
    text-transform: uppercase;
    color: var(--ink-900);
    margin: 0;
}

.plans-section__subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--fg-muted);
    margin: 14px 0 0;
}

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

@media (max-width: 991px) {
    .plans-grid { grid-template-columns: 1fr; }
}

/* Homepage plan cards live inside .plans-grid; scope so the same class on
   Plans/Index.cshtml (Bootstrap .card) keeps its existing look. */
.plans-grid .plan-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    padding: 40px 28px 32px;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-height: 380px;
    box-shadow: none;
    transition: box-shadow var(--dur-base) var(--ease-out);
    border-radius: var(--radius-0);
}

.plans-grid .plan-card:hover {
    box-shadow: var(--shadow-md);
    transform: none;
}

.plans-grid .plan-card--popular {
    border: 2px solid var(--ink-900);
}

.plan-card__ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink-900);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 16px;
    white-space: nowrap;
    border-radius: var(--radius-pill);
}

.plan-card__name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--ink-900);
    margin: 0 0 28px;
}

.plan-card__price-wrap {
    margin-bottom: 32px;
}

.plan-card__price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 56px;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--ink-900);
}

.plan-card__price-unit {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fg-muted);
    margin-left: 2px;
}

.plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    text-align: left;
    flex: 1 1 auto;
}

.plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fg-default);
    padding: 6px 0;
}

.plan-card__check {
    color: var(--red-500);
    font-size: 14px;
    line-height: 1;
    margin-top: 2px;
    flex: 0 0 auto;
}

.plan-card__cta {
    margin-top: auto;
    width: 100%;
}

/* =============================================================================
   "ACTIVATE! GIRLS NIGHT." full-bleed banner — B&W photo + two-color word
   ========================================================================== */
.girls-night {
    position: relative;
    width: 100%;
    max-width: var(--section-max-width);
    margin-left: auto;
    margin-right: auto;
    height: 520px;
    background: var(--white);
    overflow: hidden;
}

.girls-night__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: grayscale(1) contrast(1.08);
}

.girls-night__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.girls-night__headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 88px;
    letter-spacing: -0.005em;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    color: var(--ink-900);
}

.girls-night__headline + .girls-night__headline {
    margin-top: 8px;
}

/* Tablet pull-down. */
@media (max-width: 768px) and (min-width: 641px) {
    .girls-night { height: 360px; }
    .girls-night__content { padding: 0 24px; }
    .girls-night__headline { font-size: 52px; }
}

/* Mobile split-band — same pattern as .hero-rotator. */
@media (max-width: 640px) {
    .girls-night {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    .girls-night__photo {
        position: static;
        width: 100%;
        height: 220px;
        flex: 0 0 auto;
    }
    .girls-night__content {
        position: static;
        background: var(--ink-900);
        height: auto;
        max-width: none;
        /* reset the base `margin: 0 auto` — as a column flex item those auto
           side margins shrink the band to content width and center it.
           full width to match the photo above, same as .hero-rotator-copy. */
        width: 100%;
        margin: 0;
        padding: 28px 20px 36px;
    }
    .girls-night__headline {
        font-size: 40px;
        color: var(--white);
    }
    /* the black half of the two-color word treatment needs to flip to white
       on the dark band so it stays legible. */
    .girls-night__headline > span:not(.text-accent) {
        color: var(--white);
    }
}

/* =============================================================================
   Feature row — 3-up with red/black dot indicators
   ========================================================================== */
.feature-row {
    background: var(--white);
    padding: var(--section-pad-y) var(--container-pad);
}

.feature-row__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

@media (max-width: 768px) {
    .feature-row__inner { grid-template-columns: 1fr; gap: 32px; }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 0 8px;
}

.feature-item__dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: var(--radius-pill);
    background: var(--ink-900);
    margin-bottom: 28px;
    transition: background-color var(--dur-base) var(--ease-out);
}

.feature-item.is-active .feature-item__dot,
.feature-item:hover .feature-item__dot {
    background: var(--red-500);
}

.feature-item__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-900);
    margin-bottom: 16px;
}

.feature-item__body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--fg-muted);
    max-width: 280px;
    margin: 0;
}

/* =============================================================================
   "Ready to Activate?" dark CTA band
   ========================================================================== */
.cta-section {
    background: var(--ink-900);
    padding: var(--section-pad-y) var(--container-pad);
    color: var(--white);
    text-align: center;
}

.cta-section__inner {
    max-width: 720px;
    margin: 0 auto;
}

.cta-section__headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.cta-section__body {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 20px auto 40px;
    max-width: 520px;
}

/* =============================================================================
   Footer touches (Bootstrap structure in _Layout.cshtml)
   ========================================================================== */
footer.bg-light {
    background-color: var(--ink-50) !important;
}

/* =============================================================================
   Carryover helpers used by other pages (Account, Cart, Checkout)
   ========================================================================== */
.sticky-summary {
    top: 100px;
    z-index: 1;
}

.progress-bar-custom {
    height: 10px;
}

.plan-features {
    max-width: 200px;
}

.divider-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red-500);
    border-radius: 50%;
    display: inline-block;
}

/* =============================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-rotator-slide,
    .hero-rotator-slide.is-active,
    .hero-rotator-dot,
    .feature-item__dot,
    .plan-card {
        transition: none !important;
    }
}
