/* =============================================
   XII HUB SPORT - Dark Theme for Activity Pages
   ============================================= */

/* =============================================
   DESIGN SYSTEM (shared with home-modern.css)
   ============================================= */
:root {
    --xii-black: #0a0a0a;
    --xii-dark: #141414;
    --xii-dark-alt: #1e1d1d;
    --xii-gold: #bd9a00;
    --xii-gold-light: #d4b300;
    --xii-red: #c91b00;
    --xii-green: #7a9e28;
    --xii-purple: #aa00ab;
    --xii-blue: #20458a;
    --xii-blue-light: #5ba8d1;
    --xii-gray-mid: #75767a;
    --xii-white: #ffffff;
    --xii-gray-light: #aaaaaa;
    --xii-gray: #888888;
    --font-display: 'Jura', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================
   LOGO "HUB SPORT" TEXT
   ============================================= */
.logo-area__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
}
.logo-area__text {
    display: block;
    font-family: 'Jura', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-top: -2px;
}

/* =============================================
   GLOBAL OVERRIDES
   ============================================= */
.activity-page {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--xii-black);
    color: var(--xii-white);
    position: relative;
    z-index: 1;
    display: flow-root;
}

/* Override site.css global "section { height: 300px; margin: 60px 0; }" */
.activity-page section {
    height: auto !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
    box-sizing: border-box;
}

.activity-page .slider-area,
.activity-page .slider-top-space-header1 {
    display: none !important;
}

/* =============================================
   ACCENT COLOR MODIFIERS
   ============================================= */
.activity-page--wod { --accent: #bd9a00; }
.activity-page--ladyboxing { --accent: #c91b00; }
.activity-page--crosstraining { --accent: #7a9e28; }
.activity-page--yoga { --accent: #aa00ab; }
.activity-page--biking { --accent: #20458a; }
.activity-page--spinning { --accent: #20458a; }
.activity-page--kids { --accent: #5ba8d1; }
.activity-page--mobilite { --accent: #75767a; }
.activity-page--tarifs { --accent: #bd9a00; }
.activity-page--planning { --accent: #bd9a00; }

/* =============================================
   DARK HEADER
   ============================================= */
.header--dark {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--xii-black) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    transition: background 0.4s ease;
}

.header--dark .header-top-area {
    background: transparent !important;
}

.header--dark .main-menu nav > ul > li > a {
    color: #fff !important;
    text-shadow: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header--dark .main-menu nav > ul > li > a:hover,
.header--dark .main-menu nav > ul > li.active > a {
    color: var(--xii-gold) !important;
}

.header--dark .main-menu nav > ul > li > ul {
    background: rgba(255, 255, 255, 0.97);
}

.header--dark .main-menu nav > ul > li > ul > li > a {
    color: #333 !important;
    text-shadow: none !important;
}

.header--dark .main-menu nav > ul > li > ul > li > a:hover {
    color: var(--xii-gold) !important;
}

/* =============================================
   SECTION 1: HERO
   ============================================= */
.activity-page .act-hero {
    position: relative;
    width: 100%;
    height: 50vh !important;
    min-height: 380px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 84px;
}

.act-hero__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.act-hero:hover .act-hero__bg {
    transform: scale(1.03);
}

.act-hero__overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.7) 0%,
        rgba(10,10,10,0.3) 40%,
        rgba(10,10,10,0.8) 100%
    );
    z-index: 2;
}

/* Accent gradient at bottom */
.act-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 6px;
    background: var(--accent);
    z-index: 3;
}

.act-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.act-hero__breadcrumb {
    display: inline-block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.act-hero__breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.act-hero__breadcrumb a:hover {
    color: var(--xii-gold);
    text-decoration: none;
}

.act-hero__breadcrumb span {
    color: var(--accent);
}

.act-hero__title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--xii-white);
    margin: 0 0 15px;
    text-shadow: 2px 2px 30px rgba(0,0,0,0.5);
}

.act-hero__tagline {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    line-height: 1.6;
    margin: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   SECTION 2: INTRO
   ============================================= */
.act-intro {
    background: var(--xii-black);
    padding: 80px 0;
    position: relative;
}

.act-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.act-intro__text h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--xii-white);
    margin: 0 0 30px;
}

.act-intro__text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px;
}

.act-intro__text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--xii-gray-light);
    margin: 0 0 18px;
}

.act-intro__text strong,
.act-intro__text b {
    color: var(--xii-white);
    font-weight: 700;
}

.act-intro__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.act-intro__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s var(--ease-out);
}

.act-intro__image:hover img {
    transform: scale(1.03);
}

/* Accent bar on image */
.act-intro__image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent);
}

/* =============================================
   SECTION 3: DETAILS
   ============================================= */
.act-details {
    background: var(--xii-dark);
    padding: 80px 0;
    position: relative;
}

.act-details__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.act-detail {
    background: var(--xii-dark-alt);
    border-radius: 10px;
    padding: 35px;
    border-top: 3px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.act-detail:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.act-detail h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--xii-white);
    margin: 0 0 18px;
}

.act-detail p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--xii-gray-light);
    margin: 0 0 12px;
}

.act-detail p:last-child {
    margin-bottom: 0;
}

.act-detail strong,
.act-detail b {
    color: var(--xii-white);
}

.act-detail a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.act-detail a:hover {
    color: var(--xii-gold-light);
}

/* =============================================
   SECTION 4: BENEFITS
   ============================================= */
.act-benefits {
    background: var(--xii-black);
    padding: 80px 0;
    position: relative;
}

.act-benefits__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--xii-white);
    margin: 0 0 15px;
}

.act-benefits__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px;
}

.act-benefits__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.act-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 22px;
    background: var(--xii-dark);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: transform 0.3s;
}

.act-benefit:hover {
    transform: translateX(5px);
}

.act-benefit__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
    margin-top: 2px;
}

.act-benefit p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--xii-gray-light);
    margin: 0;
}

/* =============================================
   SECTION 5: CTA
   ============================================= */
.act-cta {
    background: var(--xii-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.act-cta__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--xii-white);
    margin: 0 0 40px;
}

.act-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reusable CTA button (same as home) */
.btn-gold {
    display: inline-block;
    padding: 16px 45px;
    border: 2px solid var(--xii-gold);
    background: transparent;
    color: var(--xii-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.btn-gold:hover,
.btn-gold:focus {
    background: var(--xii-gold);
    color: var(--xii-black);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(189, 154, 0, 0.25);
}

.btn-gold--filled {
    background: var(--xii-gold);
    color: var(--xii-black);
    border-color: var(--xii-gold);
}

.btn-gold--filled:hover,
.btn-gold--filled:focus {
    background: var(--xii-gold-light);
    border-color: var(--xii-gold-light);
    color: var(--xii-black);
}

.btn-accent {
    display: inline-block;
    padding: 16px 45px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--xii-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.btn-accent:hover,
.btn-accent:focus {
    background: var(--accent);
    color: var(--xii-white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* =============================================
   FOOTER (dark theme)
   ============================================= */
.activity-page ~ footer,
html:has(.activity-page) footer {
    background: var(--xii-black) !important;
    position: relative;
    z-index: 10;
    clear: both;
}

html:has(.activity-page) footer .footer-area {
    background: var(--xii-black) !important;
    padding: 50px 0 30px;
}

html:has(.activity-page) footer .footer-area .container {
    max-width: 800px;
    margin: 0 auto;
}

html:has(.activity-page) footer .twitter-area {
    display: none !important;
}

html:has(.activity-page) footer .footer-area .row {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
}

html:has(.activity-page) footer .footer-area .row::before,
html:has(.activity-page) footer .footer-area .row::after {
    display: none !important;
}

html:has(.activity-page) footer .footer-area .col-lg-6 {
    display: none !important;
}

html:has(.activity-page) footer .footer-area .col-lg-3.col-md-3 {
    float: none !important;
    width: auto !important;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
}

html:has(.activity-page) footer .about-company,
html:has(.activity-page) footer .corporate-office {
    text-align: center;
}

html:has(.activity-page) footer .corporate-address ul {
    list-style: none;
    padding-left: 0;
}

html:has(.activity-page) footer .social-icons {
    text-align: center;
}

html:has(.activity-page) footer .social-icons ul {
    display: inline-flex;
    justify-content: center;
}

html:has(.activity-page) footer .copy-right-area {
    background: var(--xii-black) !important;
}

html:has(.activity-page) footer .copy-right-area .container {
    max-width: 100%;
    text-align: center;
}

html:has(.activity-page) footer .copy-right-area .copy-right {
    text-align: center;
}

html:has(.activity-page) footer .copy-right-area .row > [class*="col-"] {
    width: 100% !important;
    float: none !important;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SECTION: PRICING (tarifs page)
   ============================================= */
.pricing {
    background: var(--xii-black);
    padding: 80px 0;
    position: relative;
}

.pricing--alt {
    background: var(--xii-dark);
}

.pricing__heading {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--xii-white);
    text-align: center;
    margin: 0 0 10px;
}

.pricing__heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 18px auto 0;
}

.pricing__sub {
    font-size: 15px;
    color: var(--xii-gray);
    text-align: center;
    margin: 15px 0 0;
    letter-spacing: 0.5px;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.pricing__grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.pricing__grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

/* Pricing card */
.pricing-card {
    background: var(--xii-dark-alt);
    border-radius: 10px;
    padding: 40px 28px 35px;
    text-align: center;
    border-top: 3px solid var(--accent);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing--alt .pricing-card {
    background: rgba(30, 29, 29, 0.6);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.pricing-card__name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--xii-white);
    margin: 0 0 12px;
    line-height: 1.4;
}

.pricing-card__desc {
    font-size: 13px;
    color: var(--xii-gray);
    line-height: 1.7;
    margin: 0 0 28px;
    flex-grow: 1;
}

.pricing-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(189, 154, 0, 0.1);
    border: 1px solid rgba(189, 154, 0, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pricing-card__btn {
    display: inline-block;
    padding: 13px 32px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--xii-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin-top: auto;
}

.pricing-card__btn:hover,
.pricing-card__btn:focus {
    background: var(--accent);
    color: var(--xii-black);
    text-decoration: none;
}

/* Featured card */
.pricing-card--featured {
    border-top: 3px solid var(--xii-gold);
    position: relative;
}

.pricing-card--featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--xii-black);
    background: var(--xii-gold);
    padding: 4px 10px;
    border-radius: 3px;
}

/* =============================================
   SECTION: PLANNING (schedule page)
   ============================================= */
.schedule {
    background: var(--xii-black);
    padding: 60px 0 80px;
    position: relative;
}

/* Box tabs */
.schedule__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.schedule__tab {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--xii-gray-light);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.schedule__tab:hover,
.schedule__tab:focus {
    border-color: var(--xii-gold);
    color: var(--xii-white);
    text-decoration: none;
}

.schedule__tab--active,
.schedule__tab--active:hover {
    background: var(--xii-gold);
    border-color: var(--xii-gold);
    color: var(--xii-black);
    text-decoration: none;
}

/* Box block */
.schedule__box {
    margin-bottom: 60px;
}

.schedule__box:last-child {
    margin-bottom: 0;
}

.schedule__box-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--xii-white);
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.06);
}

.schedule__box-name i {
    color: var(--xii-gold);
    margin-right: 10px;
    font-size: 20px;
}

/* Aligned schedule grid */
.sched__header {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
}

.sched__header-spacer {
    width: 55px;
    flex-shrink: 0;
}

.sched__header-day {
    flex: 1;
    background: var(--xii-dark-alt);
    color: var(--xii-white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 4px;
    border-radius: 6px 6px 0 0;
}

.sched__body {
    display: flex;
    gap: 6px;
}

/* Time axis */
.sched__axis {
    width: 55px;
    flex-shrink: 0;
    position: relative;
}

.sched__axis-label {
    position: absolute;
    right: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--xii-gray);
    letter-spacing: 1px;
    line-height: 1;
    transform: translateY(-50%);
    white-space: nowrap;
}

/* Day columns */
.sched__col {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 0 0 6px 6px;
    background-image: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 60px
    );
}

/* Time slots */
.sched__slot {
    position: absolute;
    left: 2px;
    right: 2px;
    border-radius: 5px;
    padding: 5px 7px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sched__slot:hover {
    left: 2px !important;
    width: auto !important;
    z-index: 500 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(189, 154, 0, 0.6);
    transform: scaleY(1.03);
}
.sched__slot:hover .sched__slot-name {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}
.sched__slot--short:hover .sched__slot-time {
    display: block;
}
.sched__slot--bg:hover {
    opacity: 1;
}

.sched__slot-time {
    font-size: 10px;
    opacity: 0.8;
    line-height: 1.2;
    white-space: nowrap;
}

.sched__slot-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hide text in very short slots */
.sched__slot--short .sched__slot-time {
    display: none;
}

.sched__slot--short .sched__slot-name {
    font-size: 9px;
}

/* Long background slots (e.g. Open Gym) — reduced opacity so overlapping classes stay visible */
.sched__slot--bg {
    opacity: 0.45;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}
.sched__slot--bg .sched__slot-name {
    font-weight: 400;
}

/* Empty message */
.schedule__empty {
    text-align: center;
    padding: 60px 20px;
}

.schedule__empty h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--xii-white);
    letter-spacing: 2px;
    margin: 0 0 15px;
}

.schedule__empty p {
    color: var(--xii-gray);
    font-size: 15px;
}

/* Mobile scroll wrapper */
.schedule__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.schedule__scroll::-webkit-scrollbar {
    height: 6px;
}

.schedule__scroll::-webkit-scrollbar-track {
    background: var(--xii-dark);
    border-radius: 3px;
}

.schedule__scroll::-webkit-scrollbar-thumb {
    background: rgba(189, 154, 0, 0.4);
    border-radius: 3px;
}

/* Legend */
.sched__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 25px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.sched__legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sched__legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.sched__legend-name {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--xii-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 991px) {
    .act-hero { height: 40vh; min-height: 300px; }
    .act-hero__title { font-size: 42px; letter-spacing: 5px; }
    .act-hero__tagline { font-size: 14px; }

    .act-intro { padding: 60px 0; }
    .act-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .act-intro__text h2 { font-size: 24px; }

    .act-details { padding: 60px 0; }
    .act-details__grid {
        grid-template-columns: 1fr;
    }

    .act-benefits { padding: 60px 0; }
    .act-benefits__list {
        grid-template-columns: 1fr;
    }
    .act-benefits__title { font-size: 24px; }

    .act-cta { padding: 60px 0; }
    .act-cta__title { font-size: 26px; }

    .pricing { padding: 60px 0; }
    .pricing__heading { font-size: 26px; }
    .pricing__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid--3 { grid-template-columns: repeat(2, 1fr); }
    .pricing__grid--2 { grid-template-columns: repeat(2, 1fr); }

    .schedule { padding: 40px 0 60px; }
    .schedule__box-name { font-size: 20px; }
    .schedule__tabs { gap: 6px; }
    .schedule__tab { padding: 10px 20px; font-size: 11px; }

    .sched__header,
    .sched__body { min-width: 700px; }
    .sched__header-day { font-size: 11px; padding: 12px 2px; }
    .sched__axis-label { font-size: 10px; }
    .sched__slot-name { font-size: 10px; }
    .sched__slot-time { font-size: 9px; }
    .sched__legend { gap: 8px 16px; padding: 14px 18px; }
    .sched__legend-name { font-size: 10px; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 767px) {
    .act-hero {
        height: 40vh;
        min-height: 280px;
        margin-top: 0;
    }
    .act-hero__title { font-size: 30px; letter-spacing: 3px; }
    .act-hero__tagline { font-size: 13px; display: none; }
    .act-hero__breadcrumb { font-size: 11px; letter-spacing: 1px; }

    .act-intro { padding: 40px 0; }
    .act-intro__grid { gap: 30px; }
    .act-intro__text h2 { font-size: 22px; letter-spacing: 2px; }
    .act-intro__text p { font-size: 14px; }

    .act-details { padding: 40px 0; }
    .act-detail { padding: 25px; }
    .act-detail h3 { font-size: 16px; }

    .act-benefits { padding: 40px 0; }
    .act-benefit { padding: 15px 18px; }
    .act-benefits__title { font-size: 22px; letter-spacing: 2px; }

    .act-cta { padding: 50px 0; }
    .act-cta__title { font-size: 22px; letter-spacing: 2px; }
    .btn-gold,
    .btn-accent { padding: 14px 35px; font-size: 12px; letter-spacing: 2px; }
    .act-cta__buttons { flex-direction: column; align-items: center; }

    .pricing { padding: 40px 0; }
    .pricing__heading { font-size: 22px; letter-spacing: 2px; }
    .pricing__grid,
    .pricing__grid--3,
    .pricing__grid--2 { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card { padding: 30px 24px 28px; }
    .pricing-card__name { font-size: 15px; }
    .pricing-card--featured::before { top: 10px; right: 10px; }

    .schedule { padding: 30px 0 50px; }
    .schedule__tabs { gap: 5px; margin-bottom: 30px; }
    .schedule__tab { padding: 10px 16px; font-size: 10px; letter-spacing: 1px; }
    .schedule__box-name { font-size: 18px; letter-spacing: 2px; }
    .sched__legend { gap: 6px 12px; padding: 12px 14px; margin-top: 18px; }
    .sched__legend-color { width: 10px; height: 10px; }
    .sched__legend-name { font-size: 9px; }

    html:has(.activity-page) footer .footer-area .col-lg-3.col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.activity-page--contact { --accent: #bd9a00; }

/* Layout */
.contact-section {
    padding: 70px 0 80px;
    background: #0a0a0a;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Form column */
.contact__form-wrap h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}
.contact__form-wrap .contact__subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
}
.contact__form .form-group {
    margin-bottom: 18px;
}
.contact__form .form-group label {
    display: none;
}
.contact__form .form-control {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #fff;
    padding: 14px 18px;
    font-size: 14px;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}
.contact__form .form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(189,154,0,0.15);
}
.contact__form .form-control::placeholder {
    color: #666;
}
.contact__form select.form-control {
    color: #fff !important;
    height: auto !important;
}
.contact__form select.form-control option {
    background: #141414;
    color: #fff;
}
.contact__form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.contact__form .btn-send {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}
.contact__form .btn-send:hover {
    background: #d4ac00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189,154,0,0.3);
}
.contact__form .form-response {
    margin-top: 15px;
}
.contact__form .vert {
    color: #7a9e28;
    font-size: 14px;
    line-height: 1.6;
}
.contact__form .rouge {
    color: #c91b00;
    font-size: 14px;
    line-height: 1.6;
}

/* Info column */
.contact__info h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}
.contact__info .contact__subtitle {
    color: #888;
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Box cards */
.contact__box {
    background: #141414;
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 16px;
    border-left: 3px solid var(--accent);
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact__box:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.contact__box--nice { border-left-color: #bd9a00; }
.contact__box--mougins { border-left-color: #c91b00; }
.contact__box--vl { border-left-color: #7a9e28; }

.contact__box-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.contact__box--nice .contact__box-name { color: #bd9a00; }
.contact__box--mougins .contact__box-name { color: #c91b00; }
.contact__box--vl .contact__box-name { color: #7a9e28; }

.contact__box-address {
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.contact__box-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.contact__box-tag {
    font-size: 11px;
    color: #888;
    background: rgba(255,255,255,0.04);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.contact__box-links {
    margin-top: 10px;
    display: flex;
    gap: 16px;
}
.contact__box-link {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.contact__box-link:hover {
    color: #d4ac00;
}

/* Phone & hours */
.contact__phone {
    margin-top: 25px;
    padding: 20px 24px;
    background: #141414;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact__phone-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(189,154,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}
.contact__phone-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
.contact__phone-hours {
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

/* Social */
.contact__social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}
.contact__social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
}
.contact__social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Map */
.contact__map {
    background: #141414;
    padding: 0;
    position: relative;
}
.contact__map #googleMap {
    height: 400px;
    width: 100%;
    filter: grayscale(0.8) brightness(0.7) contrast(1.1);
}

/* Contact responsive — tablet */
@media (max-width: 991px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-section { padding: 50px 0 60px; }
}

/* Contact responsive — mobile */
@media (max-width: 767px) {
    .contact-section { padding: 40px 0 50px; }
    .contact__form-wrap h2,
    .contact__info h2 { font-size: 22px; letter-spacing: 2px; }
    .contact__box { padding: 18px 20px; }
    .contact__phone { padding: 16px 20px; }
    .contact__map #googleMap { height: 300px; }
}

/* =============================================
   NEWS / ACTUALITÉS PAGE
   ============================================= */
.activity-page--news { --accent: #bd9a00; }

/* News listing */
.news-section {
    padding: 70px 0 80px;
    background: #0a0a0a;
}
.news-section .news__heading {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}
.news-section .news__subheading {
    color: #888;
    font-size: 14px;
    text-align: center;
    margin-bottom: 50px;
}

/* News grid */
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* News card */
.news__card {
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}
.news__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.news__card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.news__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.news__card:hover .news__card-img img {
    transform: scale(1.06);
}
.news__card-date {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
}
.news__card-date-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}
.news__card-date-month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}
.news__card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news__card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}
.news__card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.news__card-title a:hover {
    color: var(--accent);
}
.news__card-excerpt {
    color: #888;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}
.news__card-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
    align-self: flex-start;
}
.news__card-link:hover {
    color: #d4ac00;
}
.news__card-link i {
    margin-left: 6px;
    transition: transform 0.3s;
}
.news__card-link:hover i {
    transform: translateX(4px);
}

/* Pagination */
.news__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}
.news__pagination a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}
.news__pagination a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Empty state */
.news__empty {
    text-align: center;
    padding: 80px 20px;
}
.news__empty h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.news__empty p {
    color: #888;
    font-size: 14px;
}

/* =============================================
   NEWS DETAIL PAGE
   ============================================= */
.news-detail {
    padding: 70px 0 80px;
    background: #0a0a0a;
}
.news-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 35px;
    transition: color 0.3s;
}
.news-detail__back:hover {
    color: #d4ac00;
}
.news-detail__article {
    max-width: 800px;
    margin: 0 auto;
}
.news-detail__hero-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
    max-height: 450px;
}
.news-detail__hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.news-detail__meta span {
    color: #888;
    font-size: 13px;
}
.news-detail__meta i {
    color: var(--accent);
    margin-right: 6px;
}
.news-detail__title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 30px;
}
.news-detail__content {
    color: #bbb;
    font-size: 15px;
    line-height: 1.9;
}
.news-detail__content p {
    margin-bottom: 18px;
}
.news-detail__content a {
    color: var(--accent);
}
.news-detail__content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}

/* Gallery */
.news-detail__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 35px;
}
.news-detail__gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}
.news-detail__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    cursor: pointer;
}
.news-detail__gallery-item:hover img {
    transform: scale(1.08);
}

/* Files / attachments */
.news-detail__files {
    margin-top: 30px;
    padding: 20px 24px;
    background: #141414;
    border-radius: 10px;
}
.news-detail__files a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    margin-right: 20px;
    transition: color 0.3s;
}
.news-detail__files a:hover {
    color: #d4ac00;
}

/* News responsive — tablet */
@media (max-width: 991px) {
    .news__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .news-detail__gallery { grid-template-columns: repeat(3, 1fr); }
    .news-detail__title { font-size: 28px; }
}

/* News responsive — mobile */
@media (max-width: 767px) {
    .news-section { padding: 40px 0 50px; }
    .news-section .news__heading { font-size: 22px; letter-spacing: 2px; }
    .news__grid { grid-template-columns: 1fr; gap: 20px; }
    .news__card-img { height: 200px; }
    .news-detail { padding: 40px 0 50px; }
    .news-detail__title { font-size: 22px; letter-spacing: 1px; }
    .news-detail__gallery { grid-template-columns: repeat(2, 1fr); }
    .news-detail__hero-img { max-height: 300px; }
}


/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a1a1a;
    border-top: 1px solid rgba(189, 154, 0, 0.3);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Jura', sans-serif;
}
.cookie-banner.is-visible {
    transform: translateY(0);
}
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 30px;
}
.cookie-banner__main {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.cookie-banner__text {
    flex: 1;
}
.cookie-banner__text h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.cookie-banner__text p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
.cookie-banner__text a {
    color: #bd9a00;
    text-decoration: underline;
}
.cookie-banner__text a:hover {
    color: #d4ad00;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    padding-top: 4px;
}
.cookie-banner__btn {
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
    font-family: 'Jura', sans-serif;
}
.cookie-banner__btn--accept {
    background: #bd9a00;
    color: #0a0a0a;
}
.cookie-banner__btn--accept:hover {
    background: #d4ad00;
}
.cookie-banner__btn--reject {
    background: transparent;
    color: #aaa;
    border: 1px solid #444;
}
.cookie-banner__btn--reject:hover {
    border-color: #888;
    color: #fff;
}
.cookie-banner__btn--settings {
    background: transparent;
    color: #bd9a00;
    border: 1px solid #bd9a00;
}
.cookie-banner__btn--settings:hover {
    background: rgba(189, 154, 0, 0.1);
}

/* Cookie settings panel */
.cookie-settings {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
.cookie-settings.is-open {
    display: block;
}
.cookie-group {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #222;
}
.cookie-group:last-child {
    border-bottom: none;
}
.cookie-group__info {
    flex: 1;
    padding-right: 20px;
}
.cookie-group__name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}
.cookie-group__desc {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}
.cookie-group__badge {
    display: inline-block;
    background: rgba(189, 154, 0, 0.15);
    color: #bd9a00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle__slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #333;
    border-radius: 24px;
    transition: background 0.2s ease;
}
.cookie-toggle__slider:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #888;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
    background: #bd9a00;
}
.cookie-toggle input:checked + .cookie-toggle__slider:before {
    transform: translateX(20px);
    background: #0a0a0a;
}
.cookie-toggle input:disabled + .cookie-toggle__slider {
    opacity: 0.6;
    cursor: default;
}

/* Save preferences button in settings */
.cookie-settings__save {
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
}

/* Responsive */
@media (max-width: 767px) {
    .cookie-banner__inner {
        padding: 20px 16px;
    }
    .cookie-banner__main {
        flex-direction: column;
        gap: 16px;
    }
    .cookie-banner__actions {
        width: 100%;
        flex-wrap: wrap;
    }
    .cookie-banner__btn {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 12px;
    }
    .cookie-group {
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* =============================================
   PRIVACY / CONFIDENTIALITE PAGE
   ============================================= */

.privacy-section {
    background: #0a0a0a;
    padding: 60px 0 80px;
}
.privacy__content {
    max-width: 800px;
    margin: 0 auto;
}
.privacy__content h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
.privacy__content h2:first-child {
    margin-top: 0;
}
.privacy__content h3 {
    color: #bd9a00;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 24px 0 10px;
}
.privacy__content p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 12px;
}
.privacy__content a {
    color: #bd9a00;
    text-decoration: underline;
}
.privacy__content a:hover {
    color: #d4ad00;
}
.privacy__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.privacy__content ul li {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}
.privacy__content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #bd9a00;
    border-radius: 50%;
}
.privacy__browser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}
.privacy__browser-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
}
.privacy__browser-card h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
}
.privacy__browser-card ol {
    list-style: none;
    counter-reset: steps;
    padding: 0;
    margin: 0;
}
.privacy__browser-card ol li {
    counter-increment: steps;
    color: #999;
    font-size: 13px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
}
.privacy__browser-card ol li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    color: #bd9a00;
    font-weight: 700;
    font-size: 12px;
}
@media (max-width: 767px) {
    .privacy-section { padding: 40px 0 60px; }
    .privacy__browser-grid { grid-template-columns: 1fr; }
}
