/* ===================================================================
   CORPORATE LIGHT — Custom CSS
   Light palette for PULSE by VOXA House
   =================================================================== */

html, body { overflow-x: hidden; max-width: 100%; }

.dashboard-support-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius-sm);
    background: var(--cl-bg);
    color: var(--cl-text-body) !important;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.dashboard-support-link:hover,
.dashboard-support-link:focus-visible {
    color: var(--cl-accent) !important;
    border-color: var(--cl-accent);
    background: var(--cl-accent-light);
}

.dashboard-support-link:focus-visible {
    outline: 2px solid var(--cl-accent);
    outline-offset: 2px;
}

/* ── Color Tokens ── */
:root {
    --cl-bg:           #ffffff;
    --cl-bg-muted:     #f8fafc;
    --cl-bg-subtle:    #f1f5f9;
    --cl-text-heading: #0f172a;
    --cl-text-body:    #475569;
    --cl-text-muted:   #94a3b8;
    --cl-accent:       #131C1F;
    --cl-accent-hover: #0D1518;
    --cl-accent-light: #EAECED;
    --cl-accent-mid:   rgba(19,28,31,0.08);
    --cl-gold:         #B89A68;
    --cl-border:       #e2e8f0;
    --cl-shadow-sm:    0 1px 4px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --cl-shadow-md:    0 4px 20px rgba(15,23,42,0.07);
    --cl-shadow-lg:    0 12px 48px rgba(15,23,42,0.09);
    --cl-radius-sm:    6px;
    --cl-radius:       12px;
    --cl-radius-lg:    20px;
    --cl-section-y:    96px;
    --cl-tracking-wide: 0.08em;
    --cl-tracking-btn:  0.05em;
}

/* ── Base ── */
body   { background-color: var(--cl-bg); color: var(--cl-text-body); }
h1, h2, h3, h4, h5, h6 { color: var(--cl-text-heading); }
a      { color: var(--cl-accent); }
a:hover { color: var(--cl-accent-hover); }
.overlay { background-color: rgba(15,23,42,0.4); }

/* ═══════════════════════════════════════════════════
   OFFCANVAS (mobile menu — light)
   ═══════════════════════════════════════════════════ */
.offcanvas__area {
    background-color: var(--cl-bg);
    border-right: 1px solid var(--cl-border);
}
.offcanvas__area .offcanvas__topbar {
    border-bottom: 1px solid var(--cl-border);
}
.offcanvas__area .menu__close { color: var(--cl-text-heading); }
.offcanvas__menu ul li a { color: var(--cl-text-body); }
.offcanvas__menu ul li a:hover { color: var(--cl-accent); }
.offcanvas__login a { color: var(--cl-text-heading); }

/* ═══════════════════════════════════════════════════
   HEADER — white sticky bar
   ═══════════════════════════════════════════════════ */
.header__area {
    background-color: var(--cl-bg) !important;
    border-bottom: 1px solid var(--cl-border) !important;
    box-shadow: none !important;
}
.header__area.fixed-header {
    background-color: var(--cl-bg) !important;
    box-shadow: var(--cl-shadow-md) !important;
    border-bottom-color: transparent !important;
}
/* No transparent-on-home for light theme */
.header__area--transparent {
    position: static !important;
    background-color: var(--cl-bg) !important;
    border-bottom-color: var(--cl-border) !important;
}
.header__area--transparent.fixed-header {
    position: fixed !important;
    background-color: var(--cl-bg) !important;
}
.header__area .header__main { padding: 18px 0; border: none; }

/* Layout: logo left | pulse center | nav+cta right */
.header__main--split {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    justify-content: space-between;
}
.header__logo--center {
    position: static !important;
    transform: none !important;
    flex: 0 0 auto;
    width: auto !important;
}
.header__area .header__logo--center a img {
    max-width: 120px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    filter: invert(1);
    animation: logo-pulse 2.4s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes logo-pulse {
    0%   { transform: scale(1);    opacity: 1; }
    45%  { transform: scale(1.06); opacity: 0.80; }
    55%  { transform: scale(1.06); opacity: 0.80; }
    100% { transform: scale(1);    opacity: 1; }
}
/* Hide the left split nav — we use the right nav for all items */
.header__main--split .header__menu--left { display: none !important; }

/* Pulse wordmark area becomes the nav center */
.header__pulse {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.header__pulse__word { display: none !important; } /* hide PULSE image; nav is shown instead */

/* Right nav */
.header__main--split .header__menu--right ul { gap: 28px; }
.header__area .header__menu ul li a {
    color: var(--cl-text-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    padding: 4px 0 !important;
    position: relative !important;
    white-space: nowrap;
}
.header__area .header__menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--cl-accent);
    transition: width 0.2s ease;
}
.header__area .header__menu ul li a:hover,
.header__area .header__menu ul li a.active {
    color: var(--cl-accent) !important;
}
.header__area .header__menu ul li a:hover::after,
.header__area .header__menu ul li a.active::after { width: 100%; }

/* Widgets */
.header__widgets--split { gap: 10px; align-items: center; }
.header__social { display: none !important; }
.header__login a {
    color: var(--cl-text-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 14px !important;
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius-sm);
    transition: all 0.2s;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}
.header__login a:hover {
    border-color: var(--cl-accent);
    color: var(--cl-accent) !important;
    background: var(--cl-accent-light);
}

/* "Get Started" CTA button added via header template */
.cl-header__cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--cl-accent);
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: var(--cl-radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
}
.cl-header__cta:hover {
    background-color: var(--cl-accent-hover);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.menu__open { color: var(--cl-text-heading) !important; font-size: 22px; }

/* Mobile bottom nav */
.mobile-bottom-nav {
    background: var(--cl-bg);
    border-top: 1px solid var(--cl-border);
    box-shadow: 0 -4px 16px rgba(15,23,42,0.08);
}
.mobile-bottom-nav__item { color: var(--cl-text-muted) !important; }
.mobile-bottom-nav__item.active,
.mobile-bottom-nav__item:hover { color: var(--cl-accent) !important; }
.mobile-bottom-nav__item i { color: inherit !important; }
.mobile-bottom-nav__item span { color: inherit; }

@media screen and (max-width: 991px) {
    .header__main--split {
        justify-content: flex-start;
        gap: 0;
    }
    .header__pulse { flex: 1 1 auto; }
    .header__widgets--split { flex: 0 0 auto; margin-left: 8px; }
}

/* ═══════════════════════════════════════════════════
   SEOLY BADGE — shared pill utility
   ═══════════════════════════════════════════════════ */
.seoly-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.seoly-badge--accent {
    background: var(--cl-accent-mid);
    color: var(--cl-accent);
    border: 1px solid rgba(19,28,31,0.16);
}
.seoly-badge--outline {
    background: rgba(184,154,104,0.07);
    color: var(--cl-gold);
    border: 1.5px solid rgba(184,154,104,0.32);
}
.seoly-badge--gold {
    background: rgba(184,154,104,0.10);
    color: var(--cl-gold);
    border: 1px solid rgba(184,154,104,0.28);
}

/* ═══════════════════════════════════════════════════
   SEOLY BUTTON SYSTEM
   ═══════════════════════════════════════════════════ */
.seoly-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: var(--cl-radius-sm);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: var(--cl-tracking-btn);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    border: 1.5px solid transparent;
}
.seoly-btn--primary {
    background-color: var(--cl-accent);
    color: #ffffff !important;
    border-color: var(--cl-accent);
    box-shadow: 0 4px 18px rgba(19,28,31,0.16);
}
.seoly-btn--primary:hover {
    background-color: var(--cl-accent-hover);
    border-color: var(--cl-accent-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(19,28,31,0.28);
}
.seoly-btn--ghost {
    background: transparent;
    color: var(--cl-text-heading) !important;
    border-color: var(--cl-border);
}
.seoly-btn--ghost:hover {
    border-color: var(--cl-accent);
    color: var(--cl-accent) !important;
    background: var(--cl-accent-light);
}
.seoly-btn--sm { padding: 9px 20px; font-size: 14px; }
.seoly-btn--full { width: 100%; }
@media screen and (max-width: 575px) { .seoly-btn--primary, .seoly-btn--ghost { width: 100%; justify-content: center; } }

/* ═══════════════════════════════════════════════════
   SEOLY HERO — two-column, person in circle
   ═══════════════════════════════════════════════════ */
.seoly-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #EAECED 0%, #FFFFFF 55%, #F0FDF4 100%);
    padding: 120px 0 96px;
}
@media screen and (max-width: 991px) { .seoly-hero { padding: 96px 0 72px; } }
@media screen and (max-width: 575px) { .seoly-hero { padding: 80px 0 60px; } }

/* ── Hero background blobs ── */
.seoly-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.seoly-hero__blob--1 {
    width: 600px; height: 600px;
    background: rgba(19,28,31,0.08);
    top: -150px; right: -100px;
}
.seoly-hero__blob--2 {
    width: 420px; height: 420px;
    background: rgba(16,185,129,0.08);
    bottom: -80px; left: -60px;
}
.seoly-hero > .container { position: relative; z-index: 1; }

/* ── Two-column hero grid ── */
.seoly-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 520px;
}
@media screen and (max-width: 991px) {
    .seoly-hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .seoly-hero__right { order: -1; }
}

/* ── Left copy column ── */
.seoly-hero__left { text-align: left; }
@media screen and (max-width: 575px) { .seoly-hero__left { text-align: center; } }

.seoly-hero__left h1 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    max-width: 560px;
}
.seoly-hero__left p {
    font-size: 18px;
    color: var(--cl-text-body);
    max-width: 480px;
    margin: 0 0 36px;
    line-height: 1.7;
}
@media screen and (max-width: 575px) {
    .seoly-hero__left h1 { margin: 0 auto 20px; font-size: 32px; }
    .seoly-hero__left p  { font-size: 16px; margin: 0 auto 36px; }
}

/* ── Hero CTAs ── */
.seoly-hero__ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
@media screen and (max-width: 575px) { .seoly-hero__ctas { justify-content: center; } }

/* ── Hero stats row ── */
.seoly-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
@media screen and (max-width: 575px) { .seoly-hero__stats { justify-content: center; } }
.seoly-hero__stat {
    display: flex;
    flex-direction: column;
    padding: 0 24px 0 0;
    margin-right: 24px;
}
.seoly-hero__stat strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1;
    letter-spacing: -0.02em;
}
.seoly-hero__stat span {
    font-size: 12px;
    color: var(--cl-text-muted);
    font-weight: 500;
    margin-top: 3px;
}
.seoly-hero__stat-sep {
    width: 1px;
    height: 36px;
    background: var(--cl-border);
    margin-right: 24px;
}
@media screen and (max-width: 575px) { .seoly-hero__stat-sep { display: none; } }

/* ── Right visual column: circle + floating cards ── */
.seoly-hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.seoly-hero__circle-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 440px;
    height: 480px;
    max-width: 100%;
}
.seoly-hero__circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EAECED 0%, #CDD1D2 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(19,28,31,0.12);
    flex-shrink: 0;
}
.seoly-hero__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
@media screen and (max-width: 575px) {
    .seoly-hero__circle-wrap { width: 280px; height: 320px; }
    .seoly-hero__circle { width: 260px; height: 260px; }
}

/* ── Floating mini-cards ── */
.seoly-hero__float-card {
    position: absolute;
    background: #ffffff;
    border-radius: var(--cl-radius-sm);
    box-shadow: var(--cl-shadow-lg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--cl-border);
    white-space: nowrap;
    animation: seoly-float 3.5s ease-in-out infinite;
}
.seoly-hero__float-card--top {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}
.seoly-hero__float-card--bottom {
    bottom: 40px;
    left: -10px;
    animation-delay: 1.75s;
}
.seoly-hero__float-card__icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--cl-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-accent);
    font-size: 16px;
    flex-shrink: 0;
}
.seoly-hero__float-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1;
}
.seoly-hero__float-card span {
    display: block;
    font-size: 11px;
    color: var(--cl-text-muted);
    margin-top: 2px;
}
.seoly-hero__float-card__platforms {
    display: flex;
    gap: 6px;
    font-size: 18px;
}
.seoly-hero__float-card:last-child span { font-size: 12px; color: var(--cl-text-body); font-weight: 500; }
@keyframes seoly-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@media screen and (max-width: 575px) {
    .seoly-hero__float-card { display: none; }
}

/* ── Capability ticker ── */
.cl-ticker {
    background: var(--cl-accent);
    padding: 14px 0;
    overflow: hidden;
}
.cl-ticker__track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: cl-ticker-scroll 28s linear infinite;
    width: max-content;
    white-space: nowrap;
}
.cl-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    padding: 0 20px;
    letter-spacing: 0.03em;
}
.cl-ticker__item i { font-size: 14px; opacity: 0.85; }
.cl-ticker__sep {
    color: rgba(255,255,255,0.35);
    font-size: 18px;
    font-weight: 300;
    flex: 0 0 auto;
}
@keyframes cl-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Button system ── */
.cl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--cl-radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}
.cl-btn--primary {
    background-color: var(--cl-accent);
    color: #ffffff !important;
    border: 2px solid var(--cl-accent);
    box-shadow: 0 4px 14px rgba(19,28,31,0.22);
}
.cl-btn--primary:hover {
    background-color: var(--cl-accent-hover);
    border-color: var(--cl-accent-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19,28,31,0.25);
}
.cl-btn--ghost {
    background-color: transparent;
    color: var(--cl-text-heading) !important;
    border: 2px solid var(--cl-border);
}
.cl-btn--ghost:hover {
    border-color: var(--cl-accent);
    color: var(--cl-accent) !important;
    background-color: var(--cl-accent-light);
}
.cl-btn--sm { padding: 9px 18px; font-size: 14px; }

/* ── Logo marquee ── */
.cl-logos {
    padding: 36px 0;
    background: var(--cl-bg-muted);
    border-top: 1px solid var(--cl-border);
    border-bottom: 1px solid var(--cl-border);
    overflow: hidden;
}
.cl-logos__label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cl-text-muted);
    margin-bottom: 20px;
}
.cl-logos__track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: cl-marquee 32s linear infinite;
    width: max-content;
}
.cl-logos__track:hover { animation-play-state: paused; }
@keyframes cl-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.cl-logos__track img {
    height: 26px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity 0.2s, filter 0.2s;
    flex: 0 0 auto;
}
.cl-logos__track img:hover { opacity: 0.75; filter: grayscale(0); }

/* ═══════════════════════════════════════════════════
   SECTION GENERIC
   ═══════════════════════════════════════════════════ */
.section__heading span { color: var(--cl-accent) !important; }

.home__eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(184,154,104,0.08);
    color: var(--cl-gold);
    border: 1px solid rgba(184,154,104,0.28);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* btn overrides */
.btn--base, .btn.btn--base {
    background-color: var(--cl-accent) !important;
    border-color: var(--cl-accent) !important;
    color: #ffffff !important;
}
.btn--base:hover, .btn.btn--base:hover {
    background-color: var(--cl-accent-hover) !important;
    border-color: var(--cl-accent-hover) !important;
    color: #ffffff !important;
}
.btn-outline--base {
    border-color: var(--cl-accent) !important;
    color: var(--cl-accent) !important;
    background: transparent !important;
}
.btn-outline--base:hover {
    background-color: var(--cl-accent) !important;
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════
   ACTION PLAN PROMO
   ═══════════════════════════════════════════════════ */
.home__action-plan-promo {
    background: linear-gradient(135deg, var(--cl-accent) 0%, #0D1518 100%);
    padding: 72px 0;
}
.home__action-plan-promo__inner {
    display: flex;
    gap: 56px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.home__action-plan-promo .home__eyebrow {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.95);
    border-color: rgba(255,255,255,0.25);
}
.home__action-plan-promo__title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.home__action-plan-promo__sub {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 20px;
}
.home__action-plan-promo__checks {
    list-style: none;
    padding: 0; margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.home__action-plan-promo__checks li {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    padding-left: 22px;
    position: relative;
}
.home__action-plan-promo__checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
}
.home__action-plan-promo__note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    font-style: italic;
    display: block;
    text-align: center;
}
.btn--industries-primary {
    background-color: #ffffff;
    color: var(--cl-accent) !important;
    padding: 14px 28px;
    border-radius: var(--cl-radius-sm);
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}
.btn--industries-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: var(--cl-accent-hover) !important;
}
.btn--industries-lg { padding: 16px 36px; font-size: 16px; }
@media screen and (max-width: 767px) {
    .home__action-plan-promo__inner { gap: 36px; flex-direction: column; }
    .home__action-plan-promo { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════
   TRUST BAR (light)
   ═══════════════════════════════════════════════════ */
.home__trust {
    background: var(--cl-bg-muted);
    border-top: 1px solid var(--cl-border);
    border-bottom: 1px solid var(--cl-border);
    padding: 56px 0;
}
.home__trust__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    list-style: none;
    padding: 0; margin: 0;
}
.home__trust__list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--cl-border);
}
.home__trust__list li:last-child { border-right: none; }
.home__trust__num {
    display: block;
    font-size: 44px;
    font-weight: 700;
    color: var(--cl-accent);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.home__trust__label {
    font-size: 14px;
    color: var(--cl-text-body);
    font-weight: 500;
    display: block;
}
@media screen and (max-width: 767px) {
    .home__trust__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .home__trust__list li {
        border-right: none;
        border-bottom: 1px solid var(--cl-border);
        padding: 24px;
    }
    .home__trust__list li:nth-child(2n) { border-left: 1px solid var(--cl-border); }
    .home__trust__list li:nth-last-child(-n+2) { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS — STEPS (light)
   ═══════════════════════════════════════════════════ */
.home__steps {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg);
}
.home__steps__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 60px;
}
.home__steps__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin-bottom: 14px;
}
.home__steps__sub {
    font-size: 17px;
    color: var(--cl-text-body);
    line-height: 1.65;
}
.home__steps__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
}
.home__steps__item {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.home__steps__item:hover {
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-4px);
}
.home__steps__num {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--cl-accent-mid);
    color: var(--cl-accent);
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 16px;
}
.home__steps__icon {
    width: 56px; height: 56px;
    border-radius: var(--cl-radius);
    background: var(--cl-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.home__steps__icon i { font-size: 22px; color: var(--cl-accent); }
.home__steps__name {
    font-size: 17px;
    font-weight: 600;
    color: var(--cl-text-heading);
    margin-bottom: 10px;
}
.home__steps__desc {
    font-size: 14px;
    color: var(--cl-text-body);
    line-height: 1.6;
    margin-bottom: 0;
}
.home__steps__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-border);
    font-size: 24px;
    padding: 0 8px;
    margin-top: 60px;
}
@media screen and (max-width: 991px) {
    .home__steps__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .home__steps__arrow { display: none; }
}
@media screen and (max-width: 575px) {
    .home__steps__grid { grid-template-columns: 1fr; }
    .home__steps { padding: 64px 0; }
}

/* ═══════════════════════════════════════════════════
   FEATURE CARDS (light)
   ═══════════════════════════════════════════════════ */
.key__feature, .features__home__section {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}
.key__topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.key__topbar .section__heading { margin-inline: 0; max-width: 480px; }
.key__topbar .btn { flex: 0 0 auto; white-space: nowrap; }

.features__card__col { display: flex; }
.features__card {
    background: var(--cl-bg) !important;
    border: 1.5px solid var(--cl-border) !important;
    border-radius: var(--cl-radius) !important;
    padding: 0 0 24px !important;
    overflow: hidden;
    box-shadow: var(--cl-shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.features__card:hover {
    border-color: var(--cl-accent) !important;
    box-shadow: var(--cl-shadow-lg) !important;
    transform: translateY(-5px);
}
.features__card__photo {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: var(--cl-radius) var(--cl-radius) 0 0;
    flex: 0 0 auto;
    position: relative;
}
.features__card__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--cl-radius) var(--cl-radius) 0 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0)    40%,
        rgba(0,0,0,0.18) 70%,
        rgba(0,0,0,0.38) 100%
    );
    pointer-events: none;
}
.features__card h4 {
    font-size: 18px; font-weight: 600;
    color: var(--cl-text-heading);
    padding: 20px 20px 8px;
    margin-bottom: 0;
}
.features__card p {
    font-size: 14px;
    color: var(--cl-text-body);
    line-height: 1.6;
    padding: 0 20px;
    flex: 1 1 auto;
    margin: 0;
}
.features__card__link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-accent);
    padding: 0 20px;
    margin-top: 14px;
    transition: color 0.2s;
}
.features__card__link:hover { color: var(--cl-accent-hover); }

/* ═══════════════════════════════════════════════════
   INDUSTRIES (light)
   ═══════════════════════════════════════════════════ */
.home__industries {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg);
}
.home__industries__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.home__industries__title {
    font-size: 36px; font-weight: 700;
    color: var(--cl-text-heading); margin-bottom: 14px;
}
.home__industries__sub { font-size: 17px; color: var(--cl-text-body); }
.home__industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.home__industries__card {
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 26px 22px;
    background: var(--cl-bg);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--cl-text-heading);
    box-shadow: var(--cl-shadow-sm);
}
.home__industries__card:hover {
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-2px);
    color: var(--cl-accent);
}
.home__industries__card--img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-image: var(--ind-bg);
    position: relative;
    overflow: hidden;
    padding: 0;
}
.home__industries__card--img .home__industries__card__label {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--cl-text-heading);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1;
}
.home__industries__card--img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.25), transparent);
    z-index: 0;
}
.home__industries__card--img:hover::before {
    background: linear-gradient(to top, rgba(19,28,31,0.25), transparent);
}
.home__industries__card__icon {
    width: 44px; height: 44px;
    border-radius: var(--cl-radius-sm);
    background: var(--cl-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.home__industries__card__icon i { color: var(--cl-accent); font-size: 18px; }
.home__industries__card__label {
    font-size: 15px; font-weight: 600; display: block;
}
.home__industries__cta { text-align: center; margin-top: 44px; }
.btn--industries-ghost {
    display: inline-block;
    border: 2px solid var(--cl-border);
    color: var(--cl-text-heading) !important;
    padding: 12px 28px;
    border-radius: var(--cl-radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
}
.btn--industries-ghost:hover {
    border-color: var(--cl-accent);
    color: var(--cl-accent) !important;
    background: var(--cl-accent-light);
}
@media screen and (max-width: 991px) {
    .home__industries__grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 575px) {
    .home__industries__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   BEFORE / AFTER (light)
   ═══════════════════════════════════════════════════ */
.home__beforeafter {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}
.home__beforeafter__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.home__beforeafter__title {
    font-size: 36px; font-weight: 700;
    color: var(--cl-text-heading); margin-bottom: 14px;
}
.home__beforeafter__strapline { font-size: 17px; color: var(--cl-text-body); }
.home__beforeafter__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.home__beforeafter__col {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-lg);
    padding: 32px;
    box-shadow: var(--cl-shadow-sm);
}
.home__beforeafter__col__header { margin-bottom: 24px; }
.home__beforeafter__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.04em;
}
.home__beforeafter__badge--before { background: #FEF2F2; color: #DC2626; }
.home__beforeafter__badge--after  { background: var(--cl-accent-light); color: var(--cl-accent); }
.home__beforeafter__list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.home__beforeafter__list li {
    font-size: 15px;
    color: var(--cl-text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}
.home__beforeafter__x     { color: #DC2626; font-weight: 700; flex: 0 0 auto; }
.home__beforeafter__check { color: var(--cl-accent); font-weight: 700; flex: 0 0 auto; }
.home__beforeafter__testimonial {
    background: var(--cl-bg-subtle);
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 24px;
    margin-top: 24px;
}
.home__beforeafter__quote-mark {
    color: var(--cl-accent);
    font-size: 36px;
    line-height: 0.6;
    margin-bottom: 16px;
    display: block;
}
.home__beforeafter__blockquote {
    font-size: 15px;
    color: var(--cl-text-body);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 16px;
}
.home__beforeafter__figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
}
.home__beforeafter__figcaption__text { display: flex; flex-direction: column; gap: 2px; }
.home__beforeafter__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--cl-accent-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-accent);
    font-weight: 700;
    font-size: 14px;
    flex: 0 0 auto;
    overflow: hidden;
}
.home__beforeafter__avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.home__beforeafter__author {
    font-size: 14px; font-weight: 600;
    color: var(--cl-text-heading);
    display: block;
}
.home__beforeafter__role {
    font-size: 12px;
    color: var(--cl-text-muted);
    display: block;
}
.home__beforeafter__bottom-cta { text-align: center; margin-top: 48px; }
.home__beforeafter__bottom-note {
    font-size: 12px;
    color: var(--cl-text-muted);
    margin-top: 12px;
    display: block;
}
@media screen and (max-width: 767px) {
    .home__beforeafter__grid { grid-template-columns: 1fr; }
    .home__beforeafter { padding: 64px 0; }
}

/* ── Final CTA ── */
.home__finalcta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: var(--cl-section-y) 0;
    text-align: center;
}
.home__finalcta h2 { color: #ffffff; font-size: 40px; margin-bottom: 16px; }
.home__finalcta p  { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; }

/* ── Sticky floating CTA ── */
.home__sticky-cta {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--cl-bg);
    border: 1px solid var(--cl-border);
    border-radius: 100px;
    box-shadow: var(--cl-shadow-lg);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}
.home__sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.home__sticky-cta__text { font-size: 14px; font-weight: 600; color: var(--cl-text-heading); }
.home__sticky-cta__btn {
    background: var(--cl-accent);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.home__sticky-cta__btn:hover { background: var(--cl-accent-hover); color: #ffffff; }
@media screen and (max-width: 575px) { .home__sticky-cta { display: none; } }

/* ═══════════════════════════════════════════════════
   BREADCRUMB (light)
   ═══════════════════════════════════════════════════ */
.breadcrumb {
    padding: 40px 0 28px;
    background: var(--cl-bg-muted);
    border-bottom: 1px solid var(--cl-border);
}
.breadcrumb__wrapper {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}
.breadcrumb__title {
    color: var(--cl-text-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}
.breadcrumb__list { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb__item { color: var(--cl-text-muted); font-size: 14px; }
.breadcrumb__link { color: var(--cl-accent); text-decoration: none; }
.breadcrumb__link:hover { color: var(--cl-accent-hover); }

/* ═══════════════════════════════════════════════════
   PRICING PAGE — Light Palette
   ═══════════════════════════════════════════════════ */

/* Hero: indigo gradient instead of dark photo */
/* ── Pricing light header (replaces dark hero) ── */
.pricing__light-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #EAECED 0%, #FFFFFF 55%, #EAECED 100%);
    padding: 100px 0 72px;
    border-bottom: 1px solid var(--cl-border);
}
.pricing__light-header__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}
.pricing__light-header__blob--1 {
    width: 500px; height: 500px;
    background: rgba(19,28,31,0.08);
    top: -120px; right: -80px;
}
.pricing__light-header__blob--2 {
    width: 320px; height: 320px;
    background: rgba(19,28,31,0.06);
    bottom: -60px; left: -40px;
}
.pricing__light-header .container { position: relative; z-index: 1; }
.pricing__light-header__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.pricing__light-header__overline {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cl-accent);
    margin-bottom: 14px;
    background: var(--cl-accent-mid);
    border: 1px solid rgba(19,28,31,0.08);
    padding: 5px 14px;
    border-radius: 100px;
}
.pricing__light-header__headline {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.pricing__light-header__sub {
    font-size: 17px;
    color: var(--cl-text-body);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.pricing__light-header__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--cl-text-muted);
    margin-top: 20px;
}
.pricing__light-header .pricing__wrap { margin-bottom: 0; }
@media screen and (max-width: 575px) {
    .pricing__light-header { padding: 80px 0 56px; }
    .pricing__light-header__headline { font-size: 28px; }
}

/* Trustbar below hero */
.pricing__trustbar {
    background: var(--cl-bg-muted);
    border-bottom: 1px solid var(--cl-border);
    padding: 28px 0;
}
.pricing__trustbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pricing__trustbar__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 36px;
    border-right: 1px solid var(--cl-border);
}
.pricing__trustbar__item:last-child { border-right: none; }
.pricing__trustbar__icon  { width: 24px; height: 24px; color: var(--cl-accent); flex: 0 0 auto; }
.pricing__trustbar__item strong {
    display: block; font-size: 14px; font-weight: 700;
    color: var(--cl-text-heading);
}
.pricing__trustbar__item span {
    display: block; font-size: 12px;
    color: var(--cl-text-muted);
}
.pricing__trustbar__sep { display: none; }
@media screen and (max-width: 575px) {
    .pricing__trustbar__inner { flex-direction: column; }
    .pricing__trustbar__item { border-right: none; border-bottom: 1px solid var(--cl-border); width: 100%; padding: 14px 24px; }
    .pricing__trustbar__item:last-child { border-bottom: none; }
}

/* Cards section */
.pricing__cards-section {
    background: var(--cl-bg-muted);
    padding: 64px 0 88px;
}
.pricing__wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

/* Cards — photo header + dark body */
.pricing__card {
    background: #131C1F !important;
    border: 1.5px solid rgba(255,255,255,0.10) !important;
    box-shadow: 0 8px 32px rgba(19,28,31,0.18) !important;
    border-radius: 18px !important;
    padding: 0 !important;
    overflow: hidden !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
    display: flex;
    flex-direction: column;
}
.pricing__card:hover {
    border-color: rgba(184,154,104,0.50) !important;
    box-shadow: 0 24px 60px rgba(19,28,31,0.30) !important;
    transform: translateY(-4px) !important;
}
.pricing__card--featured {
    border-color: var(--cl-gold) !important;
    box-shadow: 0 0 0 2px var(--cl-gold), 0 24px 60px rgba(19,28,31,0.30) !important;
    transform: translateY(-8px) !important;
    background: #1a2528 !important;
}

/* ── Photo header — sharp diagonal slant at bottom (no gradient fade) ── */
.pricing__card__photo {
    width: 100%;
    height: 210px;
    background-size: cover;
    background-position: center;
    flex: 0 0 auto;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
    /* No ::after gradient — the diagonal clip creates the artistic edge */
}

/* ── Body below photo ── */
.pricing__card__body {
    padding: 24px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Text colour overrides inside dark card body */
.pricing__card__body .pricing__topbar h3 {
    font-size: 40px !important; font-weight: 700 !important; color: #fff !important;
}
.pricing__card__body .pricing__topbar h3 span {
    font-size: 16px !important; font-weight: 400 !important; color: rgba(255,255,255,0.50) !important;
}
.pricing__card__body .pricing__topbar h5 {
    font-size: 20px !important; font-weight: 700 !important; color: #fff !important;
}
.pricing__card__body .pricing__topbar p {
    color: rgba(255,255,255,0.55) !important; font-size: 14px !important;
}
.pricing__card__body .pricing__include span {
    color: var(--cl-gold) !important; font-size: 11px !important;
    font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important;
}
.pricing__card__body .pricing__content ul li { color: rgba(255,255,255,0.80) !important; font-size: 14px !important; }
.pricing__card__body .pricing__check { color: var(--cl-gold) !important; }
.pricing__card__body .pricing__cross { color: rgba(255,255,255,0.25) !important; }
.pricing__card__body .pricing__reassurance { color: rgba(255,255,255,0.40) !important; font-size: 12px !important; }
.pricing__card__body .pricing__guarantee { color: var(--cl-gold) !important; }
.pricing__card__body .pricing__expand-btn { color: rgba(255,255,255,0.55) !important; }
.pricing__card__body .pricing__cta-btn--outline {
    border-color: rgba(255,255,255,0.30) !important;
    color: #fff !important;
    background: transparent !important;
}
.pricing__card__body .pricing__cta-btn--outline:hover {
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.55) !important;
}
.pricing__card__body .pricing__cta-btn--gold {
    background: var(--cl-gold) !important;
    border-color: var(--cl-gold) !important;
    color: #0f172a !important;
}
.pricing__card__body .pricing__cta-btn--gold:hover {
    background: #a8883c !important; border-color: #a8883c !important;
}
.pricing__card__body .custom--badge {
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    color: rgba(255,255,255,0.75) !important;
}
.pricing__label {
    background: var(--cl-gold) !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

/* Toggle */
.custom--tab.pricing-toggle {
    border: 1.5px solid var(--cl-border) !important;
    background: var(--cl-bg) !important;
    border-radius: 10px !important;
    padding: 4px !important;
}
.custom--tab.pricing-toggle .nav-item .nav-link {
    color: var(--cl-text-body) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 12px 32px !important;
    border-radius: 8px !important;
}
.custom--tab.pricing-toggle .nav-item .nav-link.active {
    background-color: var(--cl-accent) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(19,28,31,0.22) !important;
}
.custom--tab.pricing-toggle .nav-item .nav-link:hover:not(.active) {
    color: var(--cl-accent) !important;
    background-color: var(--cl-accent-light) !important;
}
.pricing-toggle__save {
    background: rgba(19,28,31,0.08) !important;
    color: var(--cl-accent) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 4px;
    padding: 2px 7px;
    white-space: nowrap;
}
.nav-link.active .pricing-toggle__save {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(255,255,255,0.2) !important;
}


/* Card typography */
.pricing__topbar h3 {
    font-size: 40px !important; font-weight: 700 !important;
    color: var(--cl-text-heading) !important;
}
.pricing__topbar h3 span {
    font-size: 16px !important; font-weight: 400 !important;
    color: var(--cl-text-muted) !important;
}
.pricing__topbar h5 {
    font-size: 20px !important; font-weight: 600 !important;
    color: var(--cl-text-heading) !important;
}
.pricing__topbar p {
    color: var(--cl-text-body) !important; font-size: 14px !important;
}
.pricing__include span {
    color: var(--cl-accent) !important;
    font-size: 11px !important; font-weight: 700 !important;
    letter-spacing: 0.1em !important; text-transform: uppercase !important;
}
.pricing__content ul li {
    color: var(--cl-text-body) !important;
    font-size: 14px !important;
}
.pricing__content .text--danger { color: #94a3b8 !important; }
.pricing__content ul li:has(.text--danger) { color: #94a3b8 !important; }
.pricing__check { color: #10B981 !important; }
.pricing__cross { color: #CBD5E1 !important; }
.pricing__label {
    background: var(--cl-accent) !important;
    color: #ffffff !important;
}
.pricing__plan-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 auto;
}
.pricing__trust-strip { color: var(--cl-text-muted) !important; }
.pricing__trust-strip i { color: var(--cl-accent) !important; }

/* CTA buttons in pricing cards */
.pricing__cta-btn {
    min-height: 48px !important;
    font-size: 14px !important; font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    border-radius: 10px !important;
    margin-top: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}
.pricing__cta-btn--outline {
    border: 2px solid var(--cl-accent) !important;
    color: var(--cl-accent) !important;
    background: transparent !important;
}
.pricing__cta-btn--outline:hover {
    background: var(--cl-accent) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(19,28,31,0.22) !important;
}
.pricing__cta-btn--gold {
    background: var(--cl-accent) !important;
    border: 2px solid var(--cl-accent) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(19,28,31,0.22) !important;
}
.pricing__cta-btn--gold:hover {
    background: var(--cl-accent-hover) !important;
    border-color: var(--cl-accent-hover) !important;
}
.pricing__reassurance { color: var(--cl-text-muted) !important; font-size: 12px !important; }
.pricing__guarantee   { color: var(--cl-accent) !important; }
.pricing__expand-btn  { color: var(--cl-accent) !important; }
.pricing__sticky-cta {
    background: var(--cl-bg) !important;
    border-top: 1px solid var(--cl-border) !important;
}
.pricing__sticky-cta__name { color: var(--cl-text-heading) !important; }
.pricing__sticky-cta__btn  { background: var(--cl-accent) !important; color: #ffffff !important; }
.pricing__skeleton {
    background: var(--cl-bg-subtle) !important;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.pricing__skeleton::after {
    background: linear-gradient(90deg,var(--cl-bg-subtle) 25%,var(--cl-bg-muted) 50%,var(--cl-bg-subtle) 75%) !important;
    background-size: 200% 100%;
    animation: shimmer 1.6s linear infinite;
}

/* Mobile pricing scroll */
@media (max-width: 767px) {
    .pricing__card-row {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        gap: 16px;
    }
    .pricing__card-row > .col-xl-4,
    .pricing__card-row > .col-md-6 {
        flex: 0 0 80vw;
        max-width: 80vw;
        scroll-snap-align: start;
    }
    .pricing__card--featured { transform: translateY(0) !important; }
    .custom--tab.pricing-toggle { width: 100%; }
    .custom--tab.pricing-toggle .nav-item { flex: 1; }
    .custom--tab.pricing-toggle .nav-item .nav-link {
        width: 100% !important;
        justify-content: center !important;
        min-height: 48px !important;
        padding: 12px 12px !important;
        font-size: 14px !important;
    }
}

/* ═══════════════════════════════════════════════════
   FOOTER (light gray)
   ═══════════════════════════════════════════════════ */
.footer__area {
    background: var(--cl-bg-muted) !important;
    border-top: 1px solid var(--cl-border) !important;
}
.footer__v2 { padding: 72px 0 0; background: transparent; }
.footer__v2__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 40px 32px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--cl-border);
}
.footer__v2__brand__logo img { max-height: 40px; width: auto; }
.footer__v2__brand__tagline {
    font-size: 14px;
    color: var(--cl-text-body);
    line-height: 1.65;
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 260px;
}
.footer__v2__brand__social {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px;
}
.footer__v2__social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    border: 1px solid var(--cl-border);
    background: var(--cl-bg);
    color: var(--cl-text-body);
    font-size: 15px;
    transition: all 0.2s ease;
}
.footer__v2__social__link:hover {
    border-color: var(--cl-accent);
    color: var(--cl-accent);
    background: var(--cl-accent-light);
}
.footer__v2__brand__newsletter { display: flex; gap: 8px; }
.footer__v2__brand__newsletter__input {
    flex: 1 1 auto;
    padding: 10px 14px;
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-sm);
    font-size: 13px;
    background: var(--cl-bg);
    color: var(--cl-text-heading);
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}
.footer__v2__brand__newsletter__input:focus { border-color: var(--cl-accent); }
.footer__v2__brand__newsletter__btn {
    background: var(--cl-accent);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: var(--cl-radius-sm);
    font-size: 13px; font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: inherit;
}
.footer__v2__brand__newsletter__btn:hover { background: var(--cl-accent-hover); }
.footer__v2__col__title {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cl-text-heading);
    margin-bottom: 16px;
}
.footer__v2__col__list { display: flex; flex-direction: column; gap: 10px; }
.footer__v2__col__list li a {
    font-size: 14px;
    color: var(--cl-text-body);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__v2__col__list li a:hover { color: var(--cl-accent); }
.footer__v2__acc-btn { display: none; }
.footer__v2__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__v2__copyright { font-size: 13px; color: var(--cl-text-muted); }
.footer__v2__copyright p { margin: 0; font-size: 13px; color: var(--cl-text-muted); }
.footer__v2__tagline { font-size: 12px; color: var(--cl-text-muted); margin-top: 4px; }
.footer__v2__bottom__social { display: flex; gap: 10px; }
@media screen and (max-width: 991px) {
    .footer__v2__main { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .footer__v2__brand { grid-column: 1 / -1; }
}
@media screen and (max-width: 575px) {
    .footer__v2__main { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
    .footer__v2__col__title { display: none; }
    .footer__v2__acc-btn {
        display: flex;
        width: 100%;
        background: none;
        border: none;
        border-bottom: 1px solid var(--cl-border);
        padding: 16px 0;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--cl-text-heading);
        text-align: left;
        cursor: pointer;
        align-items: center;
        justify-content: space-between;
    }
    .footer__v2__acc-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .footer__v2__acc-content.is-open,
    .footer__v2__col--open .footer__v2__acc-content { max-height: 400px; }
    .footer__v2__col--open .footer__v2__acc-icon { transform: rotate(180deg); }
    .footer__v2__acc-icon { transition: transform 0.3s ease; }
    .footer__v2__col__list { padding: 16px 0; }
    .footer__v2__brand { grid-column: auto; padding-bottom: 24px; border-bottom: 1px solid var(--cl-border); }
    .footer__v2__bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════
   PRELOADER (light)
   ═══════════════════════════════════════════════════ */
.preloader {
    background-color: var(--cl-bg);
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.preloader__mark { position: relative; }
.preloader__logo {
    height: 44px; width: auto;
    opacity: 0;
    animation: cl-preloader-in 0.7s ease forwards 0.15s;
}
.preloader__shimmer { display: none; }
@keyframes cl-preloader-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.preloader__rule {
    width: 120px; height: 2px;
    background: var(--cl-border);
    border-radius: 2px;
    overflow: hidden;
}
.preloader__rule-fill {
    display: block; height: 100%; width: 0;
    background: var(--cl-accent);
    border-radius: 2px;
    animation: cl-preloader-bar 0.9s ease-out forwards 0.35s;
}
@keyframes cl-preloader-bar { from { width: 0; } to { width: 100%; } }

/* Scroll-to-top */
a.scroll-top {
    position: fixed;
    bottom: 80px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--cl-accent);
    color: #ffffff;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.05em;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    z-index: 100;
    box-shadow: var(--cl-shadow-md);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    padding: 4px;
}
a.scroll-top.show  { display: flex; }
a.scroll-top:hover { background: var(--cl-accent-hover); color: #ffffff; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
.reveal--delay-4 { transition-delay: 0.48s; }
.reveal--delay-5 { transition-delay: 0.60s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════ */
.section-bg { background-color: var(--cl-bg-muted) !important; }
.my-120 { margin-top: 80px; margin-bottom: 80px; }
.mb-60  { margin-bottom: 48px; }
.text--info    { color: var(--cl-accent) !important; }
.text--pink    { color: var(--cl-accent) !important; }
.text--success { color: #10B981 !important; }
.text--danger  { color: #EF4444 !important; }
/* Platform badge chips — neutral style; no garish brand colours in the light theme */
.bg--facebook,
.bg--instagram,
.bg--linkedin,
.bg--twitter,
.bg--tiktok,
.bg--youtube  {
    background: var(--cl-bg-subtle) !important;
    border: 1px solid var(--cl-border) !important;
    color: var(--cl-text-body) !important;
}
/* Inside dark pricing card bodies keep them consistent with the card palette */
.pricing__card__body .bg--facebook,
.pricing__card__body .bg--instagram,
.pricing__card__body .bg--linkedin,
.pricing__card__body .bg--twitter,
.pricing__card__body .bg--tiktok,
.pricing__card__body .bg--youtube {
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    color: rgba(255,255,255,0.75) !important;
}
.pricing__area { background: var(--cl-bg-muted); }
.cookies-card {
    background: var(--cl-bg);
    border: 1px solid var(--cl-border);
    box-shadow: var(--cl-shadow-lg);
    color: var(--cl-text-body);
}

/* ═══════════════════════════════════════════════════
   SEOLY INDUSTRIES — light-mode photo-card grid
   ═══════════════════════════════════════════════════ */
.seoly-industries {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}

/* Header */
.seoly-industries__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 52px;
}
.seoly-industries__head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1.15;
    margin-bottom: 14px;
}
.seoly-industries__head p {
    color: var(--cl-text-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* 3×2 grid */
.seoly-industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* Photo card */
.seoly-industries__card {
    position: relative;
    border-radius: var(--cl-radius-lg);
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: var(--cl-shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: var(--cl-accent);
}
.seoly-industries__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cl-shadow-lg);
    text-decoration: none;
}
.seoly-industries__card__photo {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}
.seoly-industries__card:hover .seoly-industries__card__photo {
    transform: scale(1.04);
}
.seoly-industries__card__label {
    display: block;
    padding: 14px 18px 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: var(--cl-tracking-wide);
    text-transform: uppercase;
    color: var(--cl-gold);
    background: var(--cl-accent);
}

/* Icon-only row */
.seoly-industries__icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}
.seoly-industries__icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius);
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.seoly-industries__icon-card:hover {
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-3px);
    text-decoration: none;
}
.seoly-industries__icon-card i {
    font-size: 26px;
    color: var(--cl-gold);
}
.seoly-industries__icon-card span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: var(--cl-tracking-wide);
    text-transform: uppercase;
    color: var(--cl-text-heading);
}

/* CTA row */
.seoly-industries__cta {
    text-align: center;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .seoly-industries__grid  { grid-template-columns: repeat(2, 1fr); }
    .seoly-industries__icons { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width: 575px) {
    .seoly-industries__grid  { grid-template-columns: 1fr; }
    .seoly-industries__icons { grid-template-columns: 1fr; }
    .seoly-industries__card__photo { height: 200px; }
}

/* ═══════════════════════════════════════════════════
   SEOLY FEATURES — intro split + 3 cards
   ═══════════════════════════════════════════════════ */
.seoly-features {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}

.seoly-features__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
    .seoly-features__intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

.seoly-features__intro-left h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 8px 0 0;
}

.seoly-features__intro-right p {
    font-size: 17px;
    color: var(--cl-text-body);
    line-height: 1.75;
    margin: 0;
    padding-bottom: 8px;
}

.seoly-features__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media screen and (max-width: 991px) { .seoly-features__cards { grid-template-columns: 1fr; gap: 20px; } }
@media screen and (max-width: 767px) { .seoly-features__cards { grid-template-columns: 1fr; } }

.seoly-feat-card {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-lg);
    padding: 36px 32px;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.seoly-feat-card:hover {
    box-shadow: var(--cl-shadow-lg);
    border-color: rgba(19,28,31,0.22);
    transform: translateY(-4px);
}

.seoly-feat-card__icon {
    width: 56px; height: 56px;
    border-radius: var(--cl-radius-sm);
    background: var(--cl-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px;
}

.seoly-feat-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin: 0 0 12px;
}

.seoly-feat-card p {
    font-size: 15px;
    color: var(--cl-text-body);
    line-height: 1.7;
    margin: 0 0 24px;
}

.seoly-feat-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cl-accent);
    text-decoration: none;
    transition: gap 0.2s;
}
.seoly-feat-card__link:hover { gap: 12px; color: var(--cl-accent-hover); }

/* ═══════════════════════════════════════════════════
   SEOLY ABOUT — person photo left, copy right
   ═══════════════════════════════════════════════════ */
.seoly-about {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}

.seoly-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media screen and (max-width: 991px) {
    .seoly-about__grid { grid-template-columns: 1fr; gap: 48px; }
    .seoly-about__visual { order: -1; }
}

/* ── Left visual ── */
.seoly-about__visual {
    display: flex;
    justify-content: center;
}
.seoly-about__circle-wrap {
    position: relative;
    width: 400px;
    height: 440px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.seoly-about__circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E0E3E4 0%, #CDD1D2 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(19,28,31,0.11);
    flex-shrink: 0;
}
.seoly-about__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
@media screen and (max-width: 575px) {
    .seoly-about__circle-wrap { width: 260px; height: 300px; }
    .seoly-about__circle { width: 240px; height: 240px; }
}

.seoly-about__exp-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: var(--cl-accent);
    color: #fff;
    border-radius: var(--cl-radius-sm);
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(19,28,31,0.25);
    min-width: 110px;
}
.seoly-about__exp-badge strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.seoly-about__exp-badge span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
    margin-top: 4px;
}

/* ── Right content ── */
.seoly-about__content h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 8px 0 20px;
}
.seoly-about__content > p {
    font-size: 16px;
    color: var(--cl-text-body);
    line-height: 1.75;
    margin: 0 0 28px;
}

.seoly-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.seoly-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--cl-text-body);
    line-height: 1.5;
}
.seoly-checklist li i {
    color: var(--cl-accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.seoly-about__ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   SEOLY WHY CHOOSE US — 3 cols + partner logos
   ═══════════════════════════════════════════════════ */
.seoly-whyus {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg);
}

.seoly-whyus__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.seoly-whyus__head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 8px 0 0;
}

.seoly-whyus__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
    .seoly-whyus__cols { grid-template-columns: 1fr; gap: 24px; }
}

.seoly-whyus__col {
    background: var(--cl-bg-subtle);
    border-radius: var(--cl-radius-lg);
    padding: 32px 28px;
    border: 1.5px solid var(--cl-border);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.seoly-whyus__col:hover {
    border-color: rgba(19,28,31,0.22);
    box-shadow: var(--cl-shadow-md);
}

.seoly-whyus__col h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin: 0 0 20px;
}
.seoly-whyus__col h4 i {
    color: var(--cl-accent);
    font-size: 15px;
}

.seoly-whyus__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.seoly-whyus__col ul li {
    font-size: 14px;
    color: var(--cl-text-body);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.seoly-whyus__col ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--cl-accent);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}

/* ── Partner logos row ── */
.seoly-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 0 8px;
    border-top: 1.5px solid var(--cl-border);
}

.seoly-partners__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cl-text-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.seoly-partners__item:hover { color: var(--cl-text-heading); }
.seoly-partners__item i {
    font-size: 26px;
    color: var(--cl-text-muted);
    transition: color 0.2s;
}
.seoly-partners__item:hover i { color: var(--cl-accent); }

/* ═══════════════════════════════════════════════════
   SEOLY TESTIMONIAL — indigo full-width stripe
   ═══════════════════════════════════════════════════ */
.seoly-testimonial {
    background: linear-gradient(135deg, #0D1518 0%, #131C1F 50%, #0D1518 100%);
    padding: 80px 0;
    overflow: hidden;
}

.seoly-testimonial__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .seoly-testimonial__inner { grid-template-columns: 1fr; gap: 36px; }
    .seoly-testimonial__rating-col { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 32px; }
}

.seoly-testimonial__icon {
    font-size: 48px;
    color: rgba(255,255,255,0.25);
    margin-bottom: 20px;
    display: block;
}

.seoly-testimonial__quote {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 32px;
    font-style: normal;
}

.seoly-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.seoly-testimonial__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.seoly-testimonial__author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.seoly-testimonial__author span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

.seoly-testimonial__dots {
    display: flex;
    gap: 8px;
    margin-top: 28px;
}
.seoly-testimonial__dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    display: block;
    transition: background 0.2s;
}
.seoly-testimonial__dots span.active {
    background: rgba(255,255,255,0.9);
    width: 24px;
    border-radius: 4px;
}

/* ── Right rating column ── */
.seoly-testimonial__rating-col {
    text-align: center;
}
.seoly-testimonial__rating-label {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}
.seoly-testimonial__stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 28px;
    color: #FBBF24;
    margin-bottom: 10px;
}
.seoly-testimonial__score {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    margin: 0 0 16px;
}
.seoly-testimonial__platform {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin: 0;
}
.seoly-testimonial__platform i { font-size: 14px; }

/* ═══════════════════════════════════════════════════
   SEOLY PRICING — 3 indigo plan cards on homepage
   ═══════════════════════════════════════════════════ */
.seoly-pricing {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}

.seoly-pricing__head {
    text-align: center;
    margin-bottom: 56px;
}
.seoly-pricing__head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
}
.seoly-pricing__head p {
    font-size: 17px;
    color: var(--cl-text-body);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.seoly-pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
@media screen and (max-width: 991px) { .seoly-pricing__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── Card shell ── */
.seoly-pricing-card {
    background: var(--cl-accent);
    border-radius: var(--cl-radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.85);
    transition: transform 0.28s, box-shadow 0.28s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(19,28,31,0.14);
}
.seoly-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(19,28,31,0.28);
}

.seoly-pricing-card--featured {
    background: #1a2528;
    box-shadow: 0 16px 52px rgba(19,28,31,0.22);
    transform: scale(1.04);
}
.seoly-pricing-card--featured:hover {
    transform: scale(1.04) translateY(-8px);
}

/* ── "Most Popular" badge ── */
.seoly-pricing-card__popular {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: var(--cl-gold);
    border: none;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Photo header ── */
.seoly-pricing-card__photo {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    flex: 0 0 auto;
    position: relative;
}
.seoly-pricing-card__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0)     30%,
        rgba(19,28,31,0.55) 70%,
        rgba(19,28,31,1)   100%
    );
    pointer-events: none;
}

/* ── Body (below photo) ── */
.seoly-pricing-card__body {
    padding: 24px 32px 36px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.seoly-pricing-card__name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.seoly-pricing-card__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin: 0 0 20px;
    line-height: 1.5;
}

.seoly-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.seoly-pricing-card__currency {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.seoly-pricing-card__amount {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.seoly-pricing-card__period {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    font-weight: 500;
    margin-left: 4px;
}

/* ── Feature list ── */
.seoly-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}
.seoly-pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.80);
    line-height: 1.45;
}
.seoly-pricing-card__features li i {
    color: var(--cl-gold);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── CTA button ── */
.seoly-pricing-card__cta {
    display: block;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.30);
    color: #fff !important;
    text-align: center;
    padding: 13px 24px;
    border-radius: var(--cl-radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s;
    margin-top: auto;
}
.seoly-pricing-card__cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.55);
    color: #fff !important;
}
.seoly-pricing-card--featured .seoly-pricing-card__cta {
    background: var(--cl-gold);
    border-color: var(--cl-gold);
    color: #0f172a !important;
}
.seoly-pricing-card--featured .seoly-pricing-card__cta:hover {
    background: #a8883c;
    border-color: #a8883c;
    color: #0f172a !important;
}

.seoly-pricing__link {
    text-align: center;
    margin-top: 40px;
}
.seoly-pricing__link a {
    font-size: 15px;
    font-weight: 600;
    color: var(--cl-accent);
    text-decoration: none;
    transition: color 0.2s;
}
.seoly-pricing__link a:hover { color: var(--cl-accent-hover); }

/* ═══════════════════════════════════════════════════
   SEOLY FAQ — two-column accordion
   ═══════════════════════════════════════════════════ */
.seoly-faq {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg);
}

.seoly-faq__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.seoly-faq__pre {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cl-accent);
    margin: 0 0 4px;
}
.seoly-faq__head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.seoly-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
}
@media screen and (max-width: 767px) {
    .seoly-faq__grid { grid-template-columns: 1fr; }
}

.seoly-faq__item {
    border-bottom: 1.5px solid var(--cl-border);
}
.seoly-faq__q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--cl-text-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
}
.seoly-faq__q:hover { color: var(--cl-accent); }
.seoly-faq__q[aria-expanded="true"] { color: var(--cl-accent); }

.seoly-faq__icon {
    flex-shrink: 0;
    font-size: 13px;
    transition: transform 0.3s ease;
}
.seoly-faq__q[aria-expanded="true"] .seoly-faq__icon { transform: rotate(180deg); }

.seoly-faq__a {
    padding: 0 0 20px;
}
.seoly-faq__a p {
    font-size: 15px;
    color: var(--cl-text-body);
    line-height: 1.75;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   SEOLY CONTACT — info cards + form
   ═══════════════════════════════════════════════════ */
.seoly-contact {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}

.seoly-contact__head {
    text-align: center;
    margin-bottom: 56px;
}
.seoly-contact__head h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--cl-text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 8px 0 16px;
}
.seoly-contact__head p {
    font-size: 17px;
    color: var(--cl-text-body);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.seoly-contact__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}
@media screen and (max-width: 991px) {
    .seoly-contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Info cards ── */
.seoly-contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.seoly-contact__info-card {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.seoly-contact__info-card:hover {
    border-color: rgba(19,28,31,0.22);
    box-shadow: var(--cl-shadow-md);
}
.seoly-contact__info-icon {
    width: 44px; height: 44px;
    border-radius: var(--cl-radius-sm);
    background: var(--cl-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-accent);
    font-size: 18px;
    flex-shrink: 0;
}
.seoly-contact__info-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin-bottom: 4px;
}
.seoly-contact__info-card span {
    font-size: 14px;
    color: var(--cl-text-body);
    line-height: 1.5;
}

/* ── Contact form ── */
.seoly-contact__form-wrap {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-lg);
    padding: 40px 36px;
    box-shadow: var(--cl-shadow-sm);
}
@media screen and (max-width: 575px) { .seoly-contact__form-wrap { padding: 28px 20px; } }

.seoly-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media screen and (max-width: 575px) { .seoly-contact__form-row { grid-template-columns: 1fr; } }

.seoly-contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.seoly-contact__form-row .seoly-contact__form-group { margin-bottom: 0; }

.seoly-contact__form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-text-heading);
    letter-spacing: 0.01em;
}
.seoly-contact__form-group input,
.seoly-contact__form-group textarea {
    width: 100%;
    background: var(--cl-bg-subtle);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-sm);
    padding: 13px 16px;
    font-size: 14px;
    color: var(--cl-text-heading);
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    resize: vertical;
}
.seoly-contact__form-group input:focus,
.seoly-contact__form-group textarea:focus {
    outline: none;
    border-color: var(--cl-accent);
    box-shadow: 0 0 0 3px rgba(19,28,31,0.08);
    background: #fff;
}
.seoly-contact__form-group input::placeholder,
.seoly-contact__form-group textarea::placeholder {
    color: var(--cl-text-muted);
}

/* ═══════════════════════════════════════════════════
   PRICING — PLATFORM STRIP
   ═══════════════════════════════════════════════════ */
.pricing__platforms {
    background: var(--cl-bg);
    border-top: 1px solid var(--cl-border);
    border-bottom: 1px solid var(--cl-border);
    padding: 40px 0;
}
.pricing__platforms__label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cl-text-muted);
    margin-bottom: 28px;
}
.pricing__platforms__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.pricing__platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.pricing__platform-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.2s;
}
.pricing__platform-item:hover img { filter: grayscale(0) opacity(1); }
.pricing__platform-item span {
    font-size: 11px;
    font-weight: 600;
    color: var(--cl-text-muted);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════
   PRICING — FEATURE COMPARISON TABLE
   ═══════════════════════════════════════════════════ */
.pricing__compare {
    background: var(--cl-bg-muted);
    padding: 80px 0 96px;
}
.pricing__compare__head {
    text-align: center;
    margin-bottom: 52px;
}
.pricing__compare__overline {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cl-gold);
    margin-bottom: 14px;
}
.pricing__compare__title {
    font-size: 34px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.pricing__compare__sub {
    font-size: 16px;
    color: var(--cl-text-body);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Horizontal scroll wrapper */
.pricing__compare__scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--cl-radius-lg);
    box-shadow: var(--cl-shadow-sm);
}

/* Table shell */
.pricing__compare__table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--cl-bg);
    border-radius: var(--cl-radius-lg);
    overflow: hidden;
}

/* ── Column headers ── */
.pricing__compare__table thead tr {
    border-bottom: none;
}
.pricing__compare__label-col {
    width: 240px;
    min-width: 160px;
    padding: 28px 28px;
    vertical-align: bottom;
    background: var(--cl-bg);
    color: var(--cl-text-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--cl-border);
}
.pricing__compare__plan-col {
    text-align: center;
    padding: 0;
    vertical-align: top;
    border-left: 1px solid var(--cl-border);
    border-bottom: 1px solid var(--cl-border);
    background: #131C1F;
    color: #fff;
    position: relative;
    min-width: 170px;
    overflow: hidden;
}
.pricing__compare__plan-col--featured {
    background: #1a2528;
    border-color: var(--cl-gold) !important;
    box-shadow: inset 0 0 0 2px var(--cl-gold);
}

/* Photo inside the plan-col header — sharp diagonal slant at bottom */
.pricing__compare__photo {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center top;
    display: block;
    position: relative;
    flex: 0 0 auto;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
}
.pricing__compare__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0)       20%,
        rgba(19,28,31,0.45) 65%,
        rgba(19,28,31,0.90) 100%
    );
    pointer-events: none;
}

/* Plan name / price below photo */
.pricing__compare__plan-col .pricing__compare__plan-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    padding: 16px 16px 4px;
}
.pricing__compare__plan-col .pricing__compare__plan-price {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    padding: 0 16px 20px;
    line-height: 1.1;
}
.pricing__compare__plan-col .pricing__compare__plan-price small {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0;
}
.pricing__compare__popular-badge {
    display: inline-block;
    background: var(--cl-gold);
    color: #0f172a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 4px 10px;
    margin: 14px 0 0;
}

/* ── Body rows ── */
.pricing__compare__row {
    border-bottom: 1px solid var(--cl-border);
    transition: background 0.15s;
}
.pricing__compare__row:hover { background: var(--cl-bg-subtle); }
.pricing__compare__row:hover .pricing__compare__cell--featured { background: #1e2e33; }
.pricing__compare__row--last { border-bottom: none; }
.pricing__compare__label-col td,
td.pricing__compare__label-col {
    padding: 16px 28px;
    background: var(--cl-bg);
    border-bottom: 1px solid var(--cl-border);
}
.pricing__compare__feature-name {
    font-size: 14px;
    color: var(--cl-text-body);
    font-weight: 500;
}
.pricing__compare__cell {
    text-align: center;
    padding: 16px 12px;
    background: #131C1F;
    border-left: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing__compare__cell--featured {
    background: #1a2528;
    border-left-color: rgba(184,154,104,0.20) !important;
}
.pricing__compare__num {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.pricing__compare__yes { color: var(--cl-gold) !important; font-size: 16px; }
.pricing__compare__no  { color: rgba(255,255,255,0.20) !important; font-size: 16px; }

/* CTA row */
.pricing__compare__cta-row { border-bottom: none; }
.pricing__compare__cta-row .pricing__compare__cell,
.pricing__compare__cta-row .pricing__compare__cell--featured {
    padding: 24px 20px 28px;
}
.pricing__compare__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.pricing__compare__cta-btn--outline {
    border: 1.5px solid rgba(255,255,255,0.25) !important;
    color: #fff !important;
    background: transparent !important;
}
.pricing__compare__cta-btn--outline:hover {
    background: rgba(255,255,255,0.10) !important;
    border-color: rgba(255,255,255,0.50) !important;
}
.pricing__compare__cta-btn--gold {
    background: var(--cl-gold) !important;
    border: 1.5px solid var(--cl-gold) !important;
    color: #0f172a !important;
}
.pricing__compare__cta-btn--gold:hover {
    background: #a8883c !important;
    border-color: #a8883c !important;
}


/* ═══════════════════════════════════════════════════
   FEATURES PAGE — Hero + Cards Section + CTA
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.features__hero {
    position: relative;
    background: #131C1F;
    overflow: hidden;
    padding: 112px 0 80px;
}
.features__hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.features__hero__glow {
    position: absolute;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(184,154,104,0.18) 0%, transparent 70%);
    top: -160px; right: -120px;
    pointer-events: none;
}
.features__hero > .container { position: relative; z-index: 1; }
.features__hero__content { max-width: 660px; }
.features__hero__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cl-gold);
    background: rgba(184,154,104,0.12);
    border: 1px solid rgba(184,154,104,0.28);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.features__hero__title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.features__hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 28px;
}
.features__hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.40);
    list-style: none;
    padding: 0; margin: 0;
    flex-wrap: wrap;
}
.features__hero__breadcrumb a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.features__hero__breadcrumb a:hover { color: var(--cl-gold); }
.features__hero__sep { color: rgba(255,255,255,0.25); font-size: 11px; }
.features__hero__divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: var(--cl-bg-muted);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media screen and (max-width: 991px) {
    .features__hero { padding: 88px 0 64px; }
    .features__hero__title { font-size: 38px; }
}
@media screen and (max-width: 575px) {
    .features__hero { padding: 72px 0 56px; }
    .features__hero__title { font-size: 30px; }
    .features__hero__sub { font-size: 15px; }
}

/* ── Cards section ── */
.features__cards__section {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
    position: relative;
    overflow: hidden;
}
.features__section__glow {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,154,104,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.features__section__glow--top  { top: -200px; right: -100px; }
.features__section__glow--bottom { bottom: -200px; left: -100px; }
.features__section__header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 52px;
}
.features__section__heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin-bottom: 14px;
}
.features__section__sub {
    font-size: 17px;
    color: var(--cl-text-body);
    line-height: 1.65;
}
@media screen and (max-width: 575px) {
    .features__section__heading { font-size: 28px; }
    .features__cards__section { padding: 64px 0; }
}

/* ── Bottom CTA block ── */
.features__cta__block {
    position: relative;
    background: linear-gradient(135deg, #131C1F 0%, #1e2e33 100%);
    border-radius: var(--cl-radius-lg);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
    margin-top: 72px;
}
.features__cta__glow {
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(184,154,104,0.20) 0%, transparent 65%);
    top: -150px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.features__cta__block > * { position: relative; z-index: 1; }
.features__cta__block .features__hero__eyebrow { margin-bottom: 16px; }
.features__cta__heading {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.features__cta__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.65;
}
.features__cta__btn {
    display: inline-flex;
    align-items: center;
    background: var(--cl-gold);
    color: #131C1F !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 36px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}
.features__cta__btn:hover {
    background: #a8883c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
@media screen and (max-width: 767px) {
    .features__cta__block { padding: 48px 28px; }
    .features__cta__heading { font-size: 26px; }
}

/* ── Sticky floating CTA ── */
.features__sticky-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #131C1F;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(19,28,31,0.40);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(184,154,104,0.35);
}
.features__sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.features__sticky-cta svg { flex: 0 0 auto; }
@media screen and (max-width: 575px) { .features__sticky-cta { display: none; } }

/* ── Feature card icon (img variant) sizing ── */
.features__card__icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: var(--cl-radius) var(--cl-radius) 0 0;
    flex: 0 0 auto;
    position: relative;
}
.features__card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.features__card__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--cl-radius) var(--cl-radius) 0 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0)    40%,
        rgba(0,0,0,0.18) 70%,
        rgba(0,0,0,0.38) 100%
    );
    pointer-events: none;
}

/* ── Features hero: center content at phone widths ── */
@media screen and (max-width: 575px) {
    .features__hero__content {
        text-align: center;
        margin: 0 auto;
    }
    .features__hero__sub { max-width: 100%; }
    .features__hero__breadcrumb { justify-content: center; }
}

/* ── Features section header: tighter at phone widths ── */
@media screen and (max-width: 575px) {
    .features__section__header { margin-bottom: 36px; }
    .features__section__sub { font-size: 15px; }
}

/* ── Features CTA block: full-width button + tighter padding ── */
@media screen and (max-width: 575px) {
    .features__cta__block  { padding: 40px 20px; }
    .features__cta__heading { font-size: 22px; }
    .features__cta__sub    { font-size: 15px; }
    .features__cta__btn    { width: 100%; justify-content: center; }
}
@media screen and (max-width: 400px) {
    .features__cta__block { padding: 32px 16px; }
}

/* ═══════════════════════════════════════════════════
   FEATURE DETAIL PAGE
   ═══════════════════════════════════════════════════ */

.feat__detail__hero {
    position: relative;
    background: #131C1F;
    overflow: hidden;
    padding: 112px 0 64px;
}
.feat__detail__hero > .container { position: relative; z-index: 1; }
@media screen and (max-width: 991px) { .feat__detail__hero { padding: 88px 0 52px; } }
@media screen and (max-width: 575px) { .feat__detail__hero { padding: 72px 0 44px; } }

/* Body section */
.feat__detail__body {
    position: relative;
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg);
}
.feat__detail__body__glow {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,154,104,0.06) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.feat__detail__body > .container { position: relative; z-index: 1; }
@media screen and (max-width: 575px) { .feat__detail__body { padding: 56px 0; } }

/* Image wrap */
.feat__detail__image__wrap {
    position: relative;
    border-radius: var(--cl-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--cl-shadow-lg);
}
.feat__detail__image {
    width: 100%;
    display: block;
    border-radius: var(--cl-radius-lg);
}
.feat__detail__image__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(184,154,104,0.08) 100%);
    pointer-events: none;
    border-radius: var(--cl-radius-lg);
}

/* Content */
.feat__detail__content { }
.feat__detail__heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.feat__detail__desc {
    font-size: 16px;
    color: var(--cl-text-body);
    line-height: 1.75;
    margin-bottom: 40px;
}

/* Walkthrough / steps */
.feat__detail__walkthrough {
    background: var(--cl-bg-muted);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-lg);
    padding: 36px;
    margin-bottom: 36px;
}
.feat__detail__walkthrough__header { margin-bottom: 28px; }
.feat__detail__walkthrough__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin: 8px 0 0;
}
.feat__detail__steps {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    counter-reset: none;
}
.feat__detail__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.feat__detail__step__num {
    flex: 0 0 auto;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #131C1F;
    color: var(--cl-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat__detail__step > div strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--cl-text-heading);
    margin-bottom: 4px;
}
.feat__detail__step > div p {
    font-size: 14px;
    color: var(--cl-text-body);
    line-height: 1.65;
    margin: 0;
}
@media screen and (max-width: 767px) { .feat__detail__walkthrough { padding: 24px 20px; } }

/* CTA row */
.feat__detail__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.feat__detail__cta__btn {
    display: inline-flex;
    align-items: center;
    background: #131C1F;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}
.feat__detail__cta__btn:hover {
    background: var(--cl-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19,28,31,0.25);
}
.feat__detail__back__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--cl-text-body);
    text-decoration: none;
    transition: color 0.2s;
}
.feat__detail__back__link:hover { color: var(--cl-accent); }

/* Sidebar */
.feat__detail__sidebar {
    background: var(--cl-bg-muted);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.feat__detail__sidebar__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--cl-text-muted);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--cl-border);
}
.feat__detail__sidebar__list {
    list-style: none;
    padding: 0; margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feat__detail__sidebar__item { }
.feat__detail__sidebar__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    transition: background 0.15s;
}
.feat__detail__sidebar__link:hover { background: var(--cl-bg-subtle); }
.feat__detail__sidebar__icon {
    width: 40px; height: 40px;
    border-radius: var(--cl-radius-sm);
    background: var(--cl-bg);
    border: 1px solid var(--cl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
}
.feat__detail__sidebar__icon img {
    width: 32px; height: 32px;
    object-fit: cover;
}
.feat__detail__sidebar__info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.feat__detail__sidebar__info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feat__detail__sidebar__info span {
    font-size: 12px;
    color: var(--cl-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.feat__detail__sidebar__arrow { flex: 0 0 auto; color: var(--cl-text-muted); }

/* Sidebar CTA card */
.feat__detail__sidebar__cta {
    position: relative;
    background: #131C1F;
    border-radius: var(--cl-radius);
    padding: 24px;
    text-align: center;
    overflow: hidden;
    margin-top: 8px;
}
.feat__detail__sidebar__cta__glow {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(184,154,104,0.22) 0%, transparent 65%);
    top: -80px; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.feat__detail__sidebar__cta > * { position: relative; z-index: 1; }
.feat__detail__sidebar__cta__eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cl-gold);
    margin-bottom: 8px;
}
.feat__detail__sidebar__cta__heading {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.35;
}
.feat__detail__sidebar__cta__btn {
    display: inline-block;
    background: var(--cl-gold);
    color: #131C1F !important;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 22px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    transition: background 0.2s;
}
.feat__detail__sidebar__cta__btn:hover { background: #a8883c; }

/* ── Feature detail: mobile polish (375-575px) ── */

/* Hero content centred on phones */
@media screen and (max-width: 575px) {
    .feat__detail__hero .features__hero__content {
        text-align: center;
        margin: 0 auto;
    }
    .feat__detail__hero .features__hero__breadcrumb { justify-content: center; }
}

/* Heading scale-down */
@media screen and (max-width: 575px) {
    .feat__detail__heading { font-size: 24px; }
    .feat__detail__desc    { font-size: 15px; }
}

/* Walkthrough: tighter padding at very small screens */
@media screen and (max-width: 400px) {
    .feat__detail__walkthrough { padding: 20px 14px; }
    .feat__detail__walkthrough__title { font-size: 18px; }
}

/* Step text must not overflow its flex container */
.feat__detail__step > div { min-width: 0; flex: 1 1 0; }

/* CTA row: stack vertically; button full-width on phones */
@media screen and (max-width: 575px) {
    .feat__detail__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .feat__detail__cta__btn {
        width: 100%;
        justify-content: center;
    }
    .feat__detail__back__link { text-align: center; }
}

/* Sidebar CTA button full-width on phones */
@media screen and (max-width: 575px) {
    .feat__detail__sidebar__cta__btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════
   INDUSTRIES PAGE
   ═══════════════════════════════════════════════════ */

/* ── Eyebrow label (shared across industries sections) ── */
.industries__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cl-gold);
    margin-bottom: 16px;
}

/* ── Hero ── */
.industries-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.industries-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.industries-hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.industries-hero__media--desktop { display: block; }
.industries-hero__media--mobile  { display: none; }
@media screen and (max-width: 767px) {
    .industries-hero__media--desktop { display: none; }
    .industries-hero__media--mobile  { display: block; }
}
.industries-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.55) 0%,
        rgba(10,10,10,0.35) 50%,
        rgba(10,10,10,0.70) 100%
    );
    z-index: 1;
}
.industries-hero > .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}
.industries-hero__content { max-width: 720px; }
.industries-hero__rule {
    width: 48px;
    height: 2px;
    background: var(--cl-gold);
    margin-bottom: 32px;
}
.industries-hero__content h1 {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}
.industries-hero__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.industries-hero__cta-explore { display: inline-block; }
@media screen and (max-width: 767px) {
    .industries-hero { min-height: 70vh; }
    .industries-hero__content h1 { font-size: 44px; }
    .industries-hero__cta-explore { display: none; }
}
@media screen and (max-width: 575px) {
    .industries-hero__content h1 { font-size: 34px; }
}

/* ── Scroll indicator ── */
.industries-hero__scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.industries-hero__scroll-indicator:hover { color: var(--cl-gold); }
.industries-hero__scroll-indicator__line {
    width: 1px;
    height: 40px;
    background: currentColor;
    display: block;
}
.industries-hero__scroll-indicator__chevron { display: flex; }
@media screen and (max-width: 767px) { .industries-hero__scroll-indicator { display: none; } }

/* ── Philosophy ── */
.industries-philosophy {
    background: #0a0a0a;
    padding: 80px 0;
}
.industries-philosophy__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.industries-philosophy__text {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.industries-philosophy__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.50);
    line-height: 1.7;
}
@media screen and (max-width: 767px) {
    .industries-philosophy { padding: 56px 0; }
    .industries-philosophy__text { font-size: 26px; }
}

/* ── Alternating feature panels ── */
.industries-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.industries-feature--reverse { direction: rtl; }
.industries-feature--reverse > * { direction: ltr; }
.industries-feature__photo {
    overflow: hidden;
    position: relative;
}
.industries-feature__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.industries-feature:hover .industries-feature__photo img { transform: scale(1.03); }
.industries-feature__body {
    background: var(--cl-bg);
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--cl-border);
}
.industries-feature__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
.industries-feature__bullets {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.industries-feature__bullets li {
    font-size: 15px;
    color: var(--cl-text-body);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}
.industries-feature__bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--cl-gold);
    font-weight: 700;
}
@media screen and (max-width: 991px) {
    .industries-feature { grid-template-columns: 1fr; min-height: auto; }
    .industries-feature--reverse { direction: ltr; }
    .industries-feature__photo { height: 300px; }
    .industries-feature__body { padding: 48px 32px; }
    .industries-feature__title { font-size: 30px; }
}
@media screen and (max-width: 575px) {
    .industries-feature__body { padding: 36px 20px; }
    .industries-feature__title { font-size: 26px; }
    .industries-feature__photo { height: 220px; }
}

/* ── Additional industries grid ── */
.industries-grid {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}
.industries-grid__header {
    text-align: center;
    margin-bottom: 52px;
}
.industries-grid__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin: 0;
    line-height: 1.2;
}
.industries-grid__cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.industries-grid__card {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-sm);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: default;
}
.industries-grid__card:hover {
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-2px);
}
.industries-grid__card__icon {
    width: 40px; height: 40px;
    border-radius: var(--cl-radius-sm);
    background: var(--cl-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.industries-grid__card__icon i { color: var(--cl-accent); font-size: 16px; }
.industries-grid__card__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--cl-text-heading);
    line-height: 1.3;
    display: block;
}
.industries-grid__card__arrow {
    font-size: 11px;
    color: var(--cl-text-muted);
    display: block;
}
@media screen and (max-width: 1199px) { .industries-grid__cards { grid-template-columns: repeat(4, 1fr); } }
@media screen and (max-width: 767px)  { .industries-grid__cards { grid-template-columns: repeat(3, 1fr); } }
@media screen and (max-width: 480px)  { .industries-grid__cards { grid-template-columns: repeat(2, 1fr); } }

/* ── Why section ── */
.industries-why {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg);
}
.industries-why__header {
    text-align: center;
    margin-bottom: 56px;
}
.industries-why__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1.2;
    margin: 0;
}
.industries-why__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.industries-why__col {
    border-left: 3px solid var(--cl-gold);
    padding-left: 28px;
}
.industries-why__col__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--cl-gold);
    margin-bottom: 12px;
}
.industries-why__col__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin-bottom: 12px;
}
.industries-why__col__text {
    font-size: 15px;
    color: var(--cl-text-body);
    line-height: 1.7;
    margin: 0;
}
@media screen and (max-width: 991px) {
    .industries-why__cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Stats band ── */
.industries-stats {
    background: #131C1F;
    padding: 72px 0;
}
.industries-stats__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.industries-stats__item {
    flex: 1 1 200px;
    text-align: center;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.industries-stats__divider {
    width: 1px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    flex: 0 0 auto;
}
.industries-stats__number {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.industries-stats__plus,
.industries-stats__unit {
    font-size: 24px;
    color: var(--cl-gold);
    font-weight: 700;
}
.industries-stats__label {
    font-size: 13px;
    color: rgba(255,255,255,0.50);
    font-weight: 500;
    letter-spacing: 0.04em;
    display: block;
    text-transform: uppercase;
}
@media screen and (max-width: 767px) {
    .industries-stats__divider { display: none; }
    .industries-stats__item { padding: 16px 20px; }
    .industries-stats__number { font-size: 38px; }
}

/* ── Full-bleed CTA ── */
.industries-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.industries-cta__media {
    position: absolute;
    inset: 0;
}
.industries-cta__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.industries-cta__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.82) 0%,
        rgba(19,28,31,0.70) 100%
    );
}
.industries-cta > .container {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}
.industries-cta__inner { max-width: 600px; }
.industries-cta__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 12px 0 20px;
}
.industries-cta__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.industries-cta__btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
    .industries-cta { min-height: auto; }
    .industries-cta__title { font-size: 32px; }
}

/* ── Sticky mobile CTA ── */
.industries__sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #131C1F;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(19,28,31,0.40);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(184,154,104,0.30);
    white-space: nowrap;
    display: none;
}
.industries__sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
@media screen and (max-width: 767px) { .industries__sticky-cta { display: block; } }

/* ═══════════════════════════════════════════════════
   FAQ PAGE — Editorial Layout
   ═══════════════════════════════════════════════════ */

.faq__editorial {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg);
}
.faq__editorial__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}
.faq__editorial__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 12px 0 18px;
}
.faq__editorial__sub {
    font-size: 17px;
    color: var(--cl-text-body);
    line-height: 1.65;
    margin: 0;
}
.faq__editorial__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
    max-width: 1040px;
    margin: 0 auto 72px;
}
.faq__editorial__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq__item {
    padding: 28px 0;
    border-bottom: 1px solid var(--cl-border);
}
.faq__item:first-child { border-top: 1px solid var(--cl-border); }
.faq__q {
    font-size: 16px;
    font-weight: 600;
    color: var(--cl-text-heading);
    line-height: 1.45;
    margin: 0 0 12px;
    cursor: default;
}
.faq__a {
    font-size: 15px;
    color: var(--cl-text-body);
    line-height: 1.75;
    margin: 0;
}
.faq__a a { color: var(--cl-accent); text-decoration: underline; }
.faq__a a:hover { color: var(--cl-gold); }
.faq__editorial__cta {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--cl-border);
    max-width: 1040px;
    margin: 0 auto;
}
.faq__editorial__cta p {
    font-size: 16px;
    color: var(--cl-text-body);
    margin: 0;
    font-weight: 500;
}
@media screen and (max-width: 991px) {
    .faq__editorial__cols { grid-template-columns: 1fr; gap: 0; }
    .faq__editorial__title { font-size: 36px; }
    .faq__editorial { padding: 64px 0; }
}
@media screen and (max-width: 575px) {
    .faq__editorial__title { font-size: 28px; }
    .faq__editorial__header { margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════════════
   BLOG — Card Badge Overrides
   ═══════════════════════════════════════════════════ */

/* Override the rotating colour badges on blog cards to use a single neutral style */
.blog__card .badge--warning,
.blog__card .badge--success,
.blog__card .badge--danger,
.blog__card .badge--info,
.blog__card .badge--primary {
    background: var(--cl-accent-light) !important;
    color: var(--cl-accent) !important;
    border: 1px solid var(--cl-border) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
}
/* Tighten up card body spacing */
.blog__card {
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--cl-bg);
}
.blog__card:hover {
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-3px);
}
.blog__content { padding: 20px !important; }
.blog__content h5 { font-size: 16px !important; font-weight: 600 !important; color: var(--cl-text-heading) !important; margin-bottom: 12px !important; }
.blog__content h5 a { color: var(--cl-text-heading) !important; text-decoration: none; }
.blog__content h5 a:hover { color: var(--cl-accent) !important; }
.blog__content > a { font-size: 13px !important; font-weight: 600 !important; color: var(--cl-accent) !important; }
.blog__content > a:hover { color: var(--cl-accent-hover) !important; }

/* ═══════════════════════════════════════════════════
   BLOG DETAIL — Sidebar + Content Overrides
   ═══════════════════════════════════════════════════ */

.blog__details { background: var(--cl-bg); }
.blog__details .blog__details__content > img {
    width: 100%;
    border-radius: var(--cl-radius-lg);
    margin-bottom: 24px;
    display: block;
}
.blog__details .blog__date { margin-bottom: 16px; }
.blog__details .blog__date .badge--pink {
    background: var(--cl-accent-light) !important;
    color: var(--cl-accent) !important;
    border: 1px solid var(--cl-border) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
}
.blog__details__content h1 {
    font-size: 34px;
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
/* Blog blockquote */
.blog__quote {
    background: var(--cl-bg-muted) !important;
    border-left: 4px solid var(--cl-gold) !important;
    border-radius: 0 var(--cl-radius-sm) var(--cl-radius-sm) 0 !important;
    padding: 28px 28px 28px 32px !important;
    margin: 32px 0 !important;
    position: relative;
}
.blog__quote p {
    font-size: 17px !important;
    color: var(--cl-text-heading) !important;
    font-style: italic !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}
.blog__quote span i { color: var(--cl-gold) !important; font-size: 28px !important; }
/* Share row */
.blog__share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--cl-border);
    border-bottom: 1px solid var(--cl-border);
    margin-top: 32px;
    flex-wrap: wrap;
}
.blog__share h6 { margin: 0; font-size: 14px; font-weight: 600; color: var(--cl-text-heading); }
.blog__share .social__icon { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; }
.blog__share .social__icon li a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cl-bg-muted);
    border: 1px solid var(--cl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cl-text-heading);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.blog__share .social__icon li a:hover {
    background: var(--cl-accent);
    border-color: var(--cl-accent);
    color: #fff;
}
/* Sidebar */
.blog__sidebar {
    background: var(--cl-bg-muted);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-lg);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.search__box input.form-control {
    background: var(--cl-bg) !important;
    border: 1.5px solid var(--cl-border) !important;
    color: var(--cl-text-heading) !important;
    border-radius: var(--cl-radius-sm) !important;
    padding: 10px 48px 10px 16px !important;
    font-size: 14px !important;
}
.search__box input.form-control::placeholder { color: var(--cl-text-muted) !important; }
.search__box button {
    background: transparent;
    border: none;
    color: var(--cl-text-muted);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.recent__blog { }
.recent__blog__title h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--cl-text-heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cl-border);
    margin-bottom: 16px;
}
.recent__blog__single {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--cl-border);
}
.recent__blog__single:last-child { border-bottom: none; }
.recent__blog__single a img {
    width: 68px !important; height: 60px !important;
    object-fit: cover !important;
    border-radius: var(--cl-radius-sm) !important;
    flex: 0 0 auto;
}
.recent__blog__single > div h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--cl-text-heading);
    margin-bottom: 4px;
    line-height: 1.4;
}
.recent__blog__single > div h6 a { color: var(--cl-text-heading); text-decoration: none; }
.recent__blog__single > div h6 a:hover { color: var(--cl-accent); }
.recent__blog__single > div p {
    font-size: 12px;
    color: var(--cl-text-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — Card + Form Overrides
   ═══════════════════════════════════════════════════ */

.contact__info { background: var(--cl-bg-muted); }
.contact__card__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.contact__card {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.contact__card:hover {
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-3px);
}
.contact__card span { font-size: 28px; color: var(--cl-accent); display: block; margin-bottom: 12px; }
.contact__card h4 { font-size: 16px; font-weight: 700; color: var(--cl-text-heading); margin-bottom: 6px; }
.contact__card p { font-size: 14px; color: var(--cl-text-body); margin: 0; line-height: 1.6; }
/* Form overrides */
.contact__area .section__heading > span { color: var(--cl-gold) !important; }
.contact__area .section__heading h2 { color: var(--cl-text-heading); font-weight: 700; }
.contact__wrap {
    background: var(--cl-bg-muted);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius-lg);
    padding: 36px;
}
.contact__form label.form-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--cl-text-heading) !important;
    margin-bottom: 6px !important;
    display: block;
}
.contact__form .form-control {
    background: var(--cl-bg) !important;
    border: 1.5px solid var(--cl-border) !important;
    border-radius: var(--cl-radius-sm) !important;
    color: var(--cl-text-heading) !important;
    font-size: 14px !important;
    padding: 11px 16px !important;
    transition: border-color 0.2s;
}
.contact__form .form-control:focus {
    border-color: var(--cl-accent) !important;
    box-shadow: 0 0 0 3px rgba(19,28,31,0.08) !important;
    outline: none !important;
}
.contact__form .form-control::placeholder { color: var(--cl-text-muted) !important; }
.contact__form textarea.form-control { min-height: 140px; resize: vertical; }
/* Map */
.contact__map { height: 420px; }
.contact__map iframe { width: 100%; height: 100%; border: none; display: block; }
@media screen and (max-width: 767px) {
    .contact__wrap { padding: 24px 20px; }
    .contact__map { height: 280px; }
}

/* Editorial date badge (blog cards) */
.badge--editorial {
    display: inline-block;
    background: var(--cl-accent-light) !important;
    color: var(--cl-accent) !important;
    border: 1px solid var(--cl-border) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE — Action Plan split module
   Left: edge-to-edge full-height photo
   Right: dark content panel
   ═══════════════════════════════════════════════════ */

.seoly-ap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    overflow: hidden;
}

/* ── Left photo panel ── */
.seoly-ap__photo {
    position: relative;
    overflow: hidden;
}
.seoly-ap__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.8s ease;
}
.seoly-ap:hover .seoly-ap__photo img { transform: scale(1.03); }
.seoly-ap__photo__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 55%,
        rgba(19,28,31,0.60) 100%
    );
    z-index: 1;
}

/* ── Right content panel ── */
.seoly-ap__body {
    background: #131C1F;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.seoly-ap__body::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,154,104,0.12) 0%, transparent 65%);
    top: -180px; right: -180px;
    pointer-events: none;
}
.seoly-ap__body-inner {
    position: relative;
    z-index: 1;
    padding: 72px 64px;
    max-width: 520px;
}

/* Eyebrow pill */
.seoly-ap__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cl-gold);
    background: rgba(184,154,104,0.12);
    border: 1px solid rgba(184,154,104,0.28);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}

/* Headline */
.seoly-ap__heading {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

/* Sub copy */
.seoly-ap__sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin: 0 0 32px;
}

/* 2×2 deliverable grid */
.seoly-ap__deliverables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}
.seoly-ap__deliverable {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--cl-radius-sm);
    padding: 14px;
    transition: background 0.15s, border-color 0.15s;
}
.seoly-ap__deliverable:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(184,154,104,0.25);
}
.seoly-ap__deliverable-icon {
    width: 34px; height: 34px;
    border-radius: 6px;
    background: rgba(184,154,104,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.seoly-ap__deliverable-icon i { color: var(--cl-gold); font-size: 13px; }
.seoly-ap__deliverable > div { min-width: 0; }
.seoly-ap__deliverable > div strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.3;
}
.seoly-ap__deliverable > div p {
    font-size: 11px;
    color: rgba(255,255,255,0.40);
    line-height: 1.5;
    margin: 0;
}

/* CTA row */
.seoly-ap__ctas {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.seoly-ap__note {
    font-size: 12px;
    color: rgba(255,255,255,0.32);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.seoly-ap__note i { color: var(--cl-gold); font-size: 11px; }

/* Gold CTA button */
.seoly-btn--gold {
    background: var(--cl-gold);
    color: #131C1F !important;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.seoly-btn--gold:hover {
    background: #a8883c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,154,104,0.35);
    color: #131C1F !important;
}

/* ── Responsive ── */
@media screen and (max-width: 1199px) {
    .seoly-ap__body-inner { padding: 60px 48px; }
    .seoly-ap__heading { font-size: 34px; }
}
@media screen and (max-width: 991px) {
    /* Stack: photo on top, content below */
    .seoly-ap { grid-template-columns: 1fr; min-height: auto; }
    .seoly-ap__photo { height: 340px; position: relative; }
    .seoly-ap__photo img { position: absolute; }
    .seoly-ap__photo__scrim {
        background: linear-gradient(to bottom, transparent 55%, rgba(19,28,31,0.60) 100%);
    }
    .seoly-ap__body-inner { padding: 52px 36px; max-width: 100%; }
    .seoly-ap__heading { font-size: 30px; }
}
@media screen and (max-width: 575px) {
    .seoly-ap__photo { height: 260px; }
    .seoly-ap__body-inner { padding: 40px 24px; }
    .seoly-ap__heading { font-size: 26px; }
    .seoly-ap__deliverables { grid-template-columns: 1fr; }
    .seoly-ap__note { display: none; }
}

/* ═══════════════════════════════════════════════════
   ACTION PLAN PAGE — Full redesign
   ═══════════════════════════════════════════════════ */

/* ── Shared atoms ── */
.ap__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cl-gold);
    background: rgba(184,154,104,0.12);
    border: 1px solid rgba(184,154,104,0.28);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.ap__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cl-gold);
    margin-bottom: 14px;
}
.ap__label--gold { color: var(--cl-gold); }

.ap__section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.ap__section-head--light { }
.ap__section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--cl-text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.ap__section-title--light { color: #fff; }
.ap__section-sub {
    font-size: 16px;
    color: var(--cl-text-body);
    line-height: 1.7;
    margin: 0;
}

/* Gold primary button */
.ap__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 34px;
    border-radius: var(--cl-radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: var(--cl-tracking-btn);
}
.ap__btn--gold {
    background: var(--cl-gold);
    color: #131C1F !important;
}
.ap__btn--gold:hover {
    background: #a8883c;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184,154,104,0.35);
}

/* ── Hero ── */
.ap__hero {
    position: relative;
    background: #131C1F;
    overflow: hidden;
    padding: 120px 0 88px;
}
.ap__hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}
.ap__hero__glow {
    position: absolute;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(184,154,104,0.16) 0%, transparent 68%);
    top: -200px; right: -160px;
    pointer-events: none;
}
.ap__hero > .container { position: relative; z-index: 1; }
.ap__hero__inner {
    max-width: 740px;
}
.ap__hero__title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
}
.ap__hero__sub {
    font-size: 18px;
    color: rgba(255,255,255,0.60);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 36px;
}
.ap__hero__ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ap__hero__note {
    font-size: 13px;
    color: rgba(255,255,255,0.38);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.ap__hero__note i { color: var(--cl-gold); font-size: 12px; }
.ap__hero__divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 44px;
    background: var(--cl-bg-muted);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media screen and (max-width: 991px) {
    .ap__hero { padding: 96px 0 72px; }
    .ap__hero__title { font-size: 40px; }
}
@media screen and (max-width: 575px) {
    .ap__hero { padding: 80px 0 60px; }
    .ap__hero__title { font-size: 30px; }
    .ap__hero__sub { font-size: 15px; }
    .ap__hero__note { display: none; }
}

/* ── What You'll Receive ── */
.ap__receive {
    padding: var(--cl-section-y) 0;
    background: var(--cl-bg-muted);
}
.ap__receive__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ap__receive__item {
    background: var(--cl-bg);
    border: 1.5px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 28px 24px;
    transition: all 0.2s ease;
}
.ap__receive__item:hover {
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow-md);
    transform: translateY(-3px);
}
.ap__receive__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--cl-radius-sm);
    background: #131C1F;
    margin-bottom: 16px;
}
.ap__receive__icon i {
    color: var(--cl-gold);
    font-size: 17px;
}
.ap__receive__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--cl-text-heading);
    margin: 0 0 8px;
    line-height: 1.35;
}
.ap__receive__desc {
    font-size: 13px;
    color: var(--cl-text-body);
    line-height: 1.65;
    margin: 0;
}
@media screen and (max-width: 1199px) { .ap__receive__grid { grid-template-columns: repeat(3, 1fr); } }
@media screen and (max-width: 767px)  { .ap__receive__grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 480px)  { .ap__receive__grid { grid-template-columns: 1fr; } }

/* ── How It Works ── */
.ap__how {
    position: relative;
    background: #131C1F;
    padding: var(--cl-section-y) 0 80px;
    overflow: hidden;
}
.ap__how__glow {
    position: absolute;
    width: 480px; height: 480px;
    border-radius: 50%;
    pointer-events: none;
}
.ap__how__glow--l {
    background: radial-gradient(circle, rgba(184,154,104,0.13) 0%, transparent 70%);
    top: -160px; left: -120px;
}
.ap__how__glow--r {
    background: radial-gradient(circle, rgba(184,154,104,0.10) 0%, transparent 70%);
    bottom: -160px; right: -120px;
}
.ap__how > .container { position: relative; z-index: 1; }
.ap__how__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.ap__how__step {
    flex: 1 1 200px;
    max-width: 240px;
    padding: 32px 24px;
    text-align: center;
}
.ap__how__step__num {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: var(--cl-gold);
    margin-bottom: 16px;
    display: block;
}
.ap__how__step__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 10px;
}
.ap__how__step__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.65;
    margin: 0;
}
.ap__how__arrow {
    flex: 0 0 auto;
    align-self: center;
    color: rgba(184,154,104,0.40);
    font-size: 18px;
    padding: 0 4px;
    margin-top: -40px;
}
.ap__how__cta {
    text-align: center;
}
.ap__how__cta-note {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.30);
}
@media screen and (max-width: 767px) {
    .ap__how__arrow { display: none; }
    .ap__how__step { max-width: 100%; text-align: left; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .ap__how__step:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════
   ACTION PLAN OVERLAY / QUESTIONNAIRE MODAL
   ═══════════════════════════════════════════════════ */

.ap-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ap-overlay[hidden] { display: none; }

.ap-overlay__inner {
    position: relative;
    background: #131C1F;
    border: 1px solid rgba(184,154,104,0.20);
    border-radius: var(--cl-radius-lg);
    width: 100%;
    max-width: 580px;
    padding: 48px 44px 44px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.60);
    overflow: hidden;
}
@media screen and (max-width: 575px) {
    .ap-overlay__inner { padding: 40px 24px 32px; }
}

/* Progress bar */
.ap-progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
}
.ap-progress__bar {
    height: 100%;
    background: var(--cl-gold);
    transition: width 0.35s ease;
    width: 0%;
}

/* Step label */
.ap-step-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cl-gold);
    margin-bottom: 20px;
}

/* Question text */
.ap-question {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.ap-hint {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin: 0 0 28px;
}

/* Mic button */
.ap-mic-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.ap-mic-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(184,154,104,0.14);
    border: 2px solid rgba(184,154,104,0.35);
    color: var(--cl-gold);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.ap-mic-btn:hover,
.ap-mic-btn.is-recording {
    background: rgba(184,154,104,0.25);
    border-color: var(--cl-gold);
    box-shadow: 0 0 0 6px rgba(184,154,104,0.12);
}
.ap-mic-label {
    font-size: 12px;
    color: rgba(255,255,255,0.40);
    letter-spacing: 0.04em;
}

/* OR divider */
.ap-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.25);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.ap-or::before,
.ap-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.10);
}

/* Textarea */
.ap-textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: var(--cl-radius-sm);
    color: #fff;
    font-size: 15px;
    line-height: 1.65;
    padding: 14px 16px;
    resize: vertical;
    transition: border-color 0.2s;
    font-family: inherit;
    min-height: 90px;
}
.ap-textarea::placeholder { color: rgba(255,255,255,0.25); }
.ap-textarea:focus {
    outline: none;
    border-color: rgba(184,154,104,0.55);
    background: rgba(255,255,255,0.07);
}

/* Platform checkboxes */
.ap-platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 8px;
}
.ap-platform-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.10);
    border-radius: var(--cl-radius-sm);
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    transition: all 0.15s;
    user-select: none;
}
.ap-platform-label input[type="checkbox"] { display: none; }
.ap-platform-label:hover { border-color: rgba(184,154,104,0.40); color: #fff; }
.ap-platform-label.is-checked {
    background: rgba(184,154,104,0.15);
    border-color: rgba(184,154,104,0.50);
    color: #fff;
}
.ap-platform-label i { color: var(--cl-gold); font-size: 14px; }

/* Nav buttons */
.ap-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}
.ap-btn-back {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.50);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 22px;
    border-radius: var(--cl-radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.ap-btn-back:hover {
    border-color: rgba(255,255,255,0.30);
    color: rgba(255,255,255,0.80);
}
.ap-btn-next {
    background: var(--cl-gold);
    border: none;
    color: #131C1F;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 28px;
    border-radius: var(--cl-radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    margin-left: auto;
}
.ap-btn-next:hover { background: #a8883c; }

/* Processing screen */
#ap-processing-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}
.ap-processing__spinner {
    width: 64px; height: 64px;
    margin-bottom: 24px;
}
.ap-spinner-ring {
    width: 64px; height: 64px;
    border: 3px solid rgba(184,154,104,0.20);
    border-top-color: var(--cl-gold);
    border-radius: 50%;
    animation: ap-spin 0.9s linear infinite;
}
@keyframes ap-spin { to { transform: rotate(360deg); } }
.ap-processing__msg {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.ap-processing__sub {
    font-size: 14px;
    color: rgba(255,255,255,0.40);
    margin: 0;
}

/* Email screen */
#ap-email-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ap-email__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(184,154,104,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--cl-gold);
    margin-bottom: 20px;
}
.ap-email__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.ap-email__sub {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.65;
    max-width: 380px;
    margin: 0 auto 20px;
}
.ap-email__input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: var(--cl-radius-sm);
    color: #fff;
    font-size: 15px;
    padding: 13px 16px;
    text-align: center;
    margin-bottom: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}
.ap-email__input::placeholder { color: rgba(255,255,255,0.25); }
.ap-email__input:focus { outline: none; border-color: rgba(184,154,104,0.55); }
.ap-email__submit {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
    margin-bottom: 14px;
}
.ap-email__note {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin: 0;
}
.ap-email__note i { color: var(--cl-gold); font-size: 11px; }
.ap-error-msg {
    font-size: 13px;
    color: #f87171;
    background: rgba(248,113,113,0.10);
    border: 1px solid rgba(248,113,113,0.25);
    border-radius: var(--cl-radius-sm);
    padding: 8px 14px;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

/* Thank you screen */
#ap-thankyou-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.ap-thankyou__check {
    font-size: 52px;
    color: var(--cl-gold);
    margin-bottom: 18px;
    line-height: 1;
}
.ap-thankyou__title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}
.ap-thankyou__sub {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.65;
    max-width: 380px;
    margin: 0 auto 24px;
}
.ap-thankyou__sub strong { color: rgba(255,255,255,0.80); }
.ap-thankyou__btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
    margin-bottom: 16px;
}
.ap-thankyou__back {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.ap-thankyou__back:hover { color: rgba(255,255,255,0.70); }

/* Close button */
.ap-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.50);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.ap-close:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   AUTH SPLIT LAYOUT — dark editorial (photo left / form right)
   Scope: .auth__split — never leaks outside auth pages
   ═══════════════════════════════════════════════════ */

/* ── Outer container ── */
.auth__split {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
}

/* ── Photo panel (left 60%) ── */
.auth__split__photo {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.auth__split__photo--desktop,
.auth__split__photo--mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.auth__split__photo--mobile { display: none; }

.auth__split__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, hsl(0 0% 0% / 0.52) 0%, hsl(0 0% 0% / 0.05) 40%, hsl(0 0% 0% / 0.65) 100%),
        linear-gradient(90deg,  hsl(0 0% 0% / 0.28) 0%, transparent 60%);
    z-index: 1;
}

.auth__split__logo {
    position: absolute;
    top: 44px; left: 52px;
    z-index: 2;
}
.auth__split__logo img { height: 32px; width: auto; display: block; }

.auth__split__tagline {
    position: absolute;
    bottom: 60px; left: 52px; right: 52px;
    z-index: 2;
}
.auth__split__tagline p {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    color: hsl(0 0% 96%);
    margin: 0;
    letter-spacing: -0.01em;
}
.auth__split__tagline p em { font-style: normal; color: var(--cl-gold); }

/* ── Form panel (right 40%) ── */
.auth__split__form {
    flex: 0 0 40%;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-y: auto;
    padding: 60px 52px;
}

.auth__split__form__inner { width: 100%; max-width: 360px; }
.auth__split__form--register .auth__split__form__inner { max-width: 440px; }

/* ── Header ── */
.auth__split .login__header { margin-bottom: 44px; }
.auth__split .login__header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 1.75rem; font-weight: 700;
    color: hsl(0 0% 95%) !important;
    margin-bottom: 6px; line-height: 1.2;
    text-align: left; text-transform: none; letter-spacing: 0;
}
.auth__split .login__header p {
    font-family: "Poppins", sans-serif;
    color: hsl(0 0% 50%) !important;
    font-size: 0.8125rem; margin-bottom: 0;
    text-align: left; letter-spacing: 0.06em;
    text-transform: uppercase; font-weight: 400;
}

/* ── Field labels ── */
.auth__split label {
    font-family: "Poppins", sans-serif;
    color: hsl(0 0% 52%) !important;
    font-size: 0.6875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
    display: block;
}

/* ── Underline inputs ── */
.auth__field { position: relative; margin-bottom: 0; }
.auth__field input {
    width: 100%; display: block;
    margin: 8px 0 0;
    border: none !important;
    border-bottom: 1px solid hsl(0 0% 28%) !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    background-color: transparent !important;
    color: hsl(0 0% 92%) !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 0.9375rem !important;
    transition: border-bottom-color 0.2s ease !important;
    outline: none !important; box-shadow: none !important;
    caret-color: var(--cl-gold);
}
.auth__field input::placeholder { color: hsl(0 0% 35%) !important; }
.auth__field input:focus {
    border-bottom-color: var(--cl-gold) !important;
    outline: none !important; box-shadow: none !important;
}
.auth__field .password-show-hide {
    position: absolute; right: 0; bottom: 10px;
    cursor: pointer; color: hsl(0 0% 45%); font-size: 0.9rem;
}

/* ── 2-col field row (register) ── */
.auth__field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }

/* ── Autofill ── */
.auth__split input:-webkit-autofill,
.auth__split input:-webkit-autofill:hover,
.auth__split input:-webkit-autofill:focus,
.auth__split input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #0a0a0a inset !important;
    -webkit-text-fill-color: hsl(0 0% 92%) !important;
    caret-color: var(--cl-gold) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* ── Footer row (remember + forgot) ── */
.auth__split .login__footer {
    padding: 18px 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.auth__split .remember_wrapper { display: flex; align-items: center; gap: 8px; }
.auth__split .form--check .form-check-input {
    box-shadow: none !important;
    background-color: transparent;
    border: 1px solid hsl(0 0% 40%) !important;
    border-radius: 3px !important;
    width: 14px; height: 14px; margin-top: 0;
    position: relative; flex-shrink: 0;
    accent-color: var(--cl-gold);
}
.auth__split .form--check .form-check-input:checked {
    background-color: var(--cl-gold) !important;
    border-color: var(--cl-gold) !important;
}
.auth__split .form-check-label.remember,
.auth__split label.remember {
    color: hsl(0 0% 52%) !important;
    font-size: 0.8125rem !important; font-weight: 400 !important;
    letter-spacing: 0 !important; text-transform: none !important;
    line-height: 1.4;
}
.auth__split .login__footer a {
    color: hsl(0 0% 50%);
    font-family: "Poppins", sans-serif;
    font-size: 0.8125rem; font-weight: 400;
    transition: color 0.15s ease; text-decoration: none;
}
.auth__split .login__footer a:hover { color: var(--cl-gold); text-decoration: none; }

/* ── Agree checkbox (register) ── */
.auth__agree { margin-bottom: 24px; }
.auth__agree .form-check { display: flex; align-items: flex-start; gap: 8px; }
.auth__agree .form-check-input {
    box-shadow: none !important;
    background-color: transparent;
    border: 1px solid hsl(0 0% 40%) !important;
    border-radius: 3px !important;
    width: 14px; height: 14px; margin-top: 3px;
    flex-shrink: 0; accent-color: var(--cl-gold);
}
.auth__agree .form-check-input:checked {
    background-color: var(--cl-gold) !important;
    border-color: var(--cl-gold) !important;
}
.auth__agree .form-check-label {
    color: hsl(0 0% 52%) !important;
    font-size: 0.8125rem !important; font-weight: 400 !important;
    letter-spacing: 0 !important; text-transform: none !important;
    line-height: 1.5;
}
.auth__agree .form-check-label a { color: var(--cl-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── Submit button — cream pill ── */
.btn--auth-submit {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; border: none;
    border-radius: 9999px; padding: 14px 28px;
    font-family: "Poppins", sans-serif;
    font-size: 0.8125rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    background: hsl(0 0% 94%);
    color: #0a0a0a;
    transition: background-color 0.18s ease, transform 0.12s ease;
    cursor: pointer;
}
.btn--auth-submit::after { content: "→"; font-size: 1rem; line-height: 1; font-weight: 400; letter-spacing: 0; }
.btn--auth-submit:hover { background: #ffffff; color: #0a0a0a; }
.btn--auth-submit:active { transform: translateY(1px); }

/* ── Or divider ── */
.auth__split .auth__or {
    display: flex; align-items: center; gap: 12px;
    margin: 28px 0 20px;
}
.auth__split .auth__or::before,
.auth__split .auth__or::after {
    content: ""; flex: 1; height: 1px; background: hsl(0 0% 20%);
}
.auth__split .auth__or span {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: hsl(0 0% 40%); flex-shrink: 0;
}

/* ── Social login buttons ── */
.auth__social__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: row; flex-wrap: wrap;
    gap: 8px; justify-content: center;
}
.auth__social__list li { flex: 1 1 auto; min-width: 0; }
.auth__social__btn {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; width: 100%; padding: 9px 14px;
    border: 1px solid hsl(0 0% 26%);
    border-radius: 9999px; background: transparent;
    color: hsl(0 0% 80%) !important;
    font-family: "Poppins", sans-serif;
    font-size: 0.8125rem; font-weight: 500;
    letter-spacing: 0.02em; text-decoration: none !important;
    transition: border-color 0.15s ease, color 0.15s ease;
    cursor: pointer; white-space: nowrap;
}
.auth__social__btn:hover { border-color: hsl(0 0% 50%); color: hsl(0 0% 95%) !important; text-decoration: none !important; }
.auth__social__icon { width: 16px; height: 16px; flex-shrink: 0; }
.auth__social__icon--fa { width: 16px; height: 16px; text-align: center; font-size: 0.9375rem; color: #1877F2; }
.auth__social__icon--tiktok { color: hsl(0 0% 90%); }

/* ── Switch link ── */
.auth__split__switch { margin-top: 28px; text-align: center; }
.auth__split__switch p { font-family: "Poppins", sans-serif; font-size: 0.8125rem; color: hsl(0 0% 45%) !important; margin: 0; }
.auth__split__switch a { color: var(--cl-gold) !important; text-decoration: none; font-weight: 600; transition: opacity 0.15s ease; }
.auth__split__switch a:hover { opacity: 0.8; text-decoration: none !important; }

/* ── Code input boxes (2FA/email verify) ── */
.auth__split .code-input {
    background-color: hsl(0 0% 14%) !important;
    border-color: hsl(0 0% 28%) !important;
    color: hsl(0 0% 92%) !important;
    font-family: "Poppins", monospace;
}
.auth__split .code-input::placeholder { color: hsl(0 0% 40%) !important; }
.auth__split .code-input:focus {
    border-color: var(--cl-gold) !important;
    outline: none !important; box-shadow: none !important;
}

/* ── Mobile: full-screen photo + bottom-sheet form ── */
@media (max-width: 768px) {
    .auth__split { display: block; min-height: 100vh; position: relative; overflow: hidden; }
    .auth__split__photo { position: fixed; inset: 0; flex: none; min-height: 100vh; height: 100vh; z-index: 0; }
    .auth__split__photo--desktop { display: none; }
    .auth__split__photo--mobile  { display: block; }
    .auth__split__logo  { top: 36px; left: 28px; z-index: 2; }
    .auth__split__logo img { height: 26px; }
    .auth__split__tagline { display: none; }
    .auth__split__form {
        position: fixed; bottom: 0; left: 0; right: 0;
        height: auto; min-height: 60vh; max-height: 88vh;
        flex: none; width: 100%;
        padding: 32px 28px 40px;
        padding-bottom: max(40px, env(safe-area-inset-bottom, 40px));
        border-radius: 20px 20px 0 0;
        border-top: 1px solid hsl(0 0% 100% / 0.08);
        background-color: hsl(0 0% 5% / 0.92);
        backdrop-filter: blur(24px) saturate(1.4);
        -webkit-backdrop-filter: blur(24px) saturate(1.4);
        overflow-y: auto; -webkit-overflow-scrolling: touch;
        z-index: 10; align-items: flex-start; justify-content: flex-start;
    }
    .auth__split__form__inner,
    .auth__split__form--register .auth__split__form__inner { width: 100%; max-width: none; }
    .auth__field__row { grid-template-columns: 1fr; gap: 0; }
    .auth__split .login__header { margin-bottom: 24px; }
    .auth__social__wrapper { display: block !important; }
}

@media (max-width: 480px) {
    .auth__split__form {
        padding: 28px 20px 36px;
        padding-bottom: max(36px, env(safe-area-inset-bottom, 36px));
    }
    .auth__split .login__header h2 { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════
   MOBILE POLISH — 375-575px fixes
   ═══════════════════════════════════════════════════ */

/* ── 1. Global section vertical rhythm ── */
@media screen and (max-width: 575px) {
    :root { --cl-section-y: 56px; }
}

/* ── 2. Hero section mobile polish ── */
@media screen and (max-width: 575px) {
    /* Tighten stats row so items don't spill on very narrow phones */
    .seoly-hero__stat { padding: 0 12px 0 0; margin-right: 12px; }
    .seoly-hero__stat strong { font-size: 22px; }
    .seoly-hero__stat span   { font-size: 11px; }
    /* Ensure subtitle & h1 auto-margin centres correctly */
    .seoly-hero__left p { max-width: 100%; }
    /* Circle: use center-crop for social-phone image */
    .seoly-hero__circle img { object-position: center 30%; }
    /* Hero grid gap tighter on phone */
    .seoly-hero__grid { gap: 32px; }
}

/* ── 3. Industries section icon cards — keep 3-across on mobile ── */
@media screen and (max-width: 575px) {
    .seoly-industries__icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .seoly-industries__icon-card {
        padding: 16px 8px;
        gap: 8px;
    }
    .seoly-industries__icon-card i   { font-size: 20px; }
    .seoly-industries__icon-card span { font-size: 10px; letter-spacing: 0.04em; }
    /* Slightly shorter photo card on smallest phones */
    .seoly-industries__card__photo { height: 180px; }
    /* Head margin tighter */
    .seoly-industries__head { margin-bottom: 36px; }
}

/* ── 4. About section — hide overflow badge on very narrow phones ── */
@media screen and (max-width: 400px) {
    .seoly-about__exp-badge { display: none; }
}

/* ── 5. Partners row — tighter gap on mobile ── */
@media screen and (max-width: 575px) {
    .seoly-partners { gap: 24px; padding: 24px 0 8px; }
    .seoly-partners__item { font-size: 13px; }
    .seoly-partners__item i { font-size: 22px; }
}

/* ── 6. Final CTA — smaller type on mobile ── */
@media screen and (max-width: 575px) {
    .home__finalcta { padding: 60px 0; }
    .home__finalcta h2 { font-size: 26px; margin-bottom: 12px; }
    .home__finalcta p  { font-size: 15px; margin-bottom: 28px; }
}

/* ── 7. Before/After — tighter padding on mobile ── */
@media screen and (max-width: 575px) {
    .home__beforeafter__col { padding: 24px 20px; }
    .home__beforeafter__head { margin-bottom: 36px; }
    .home__beforeafter__title { font-size: 26px; }
    .home__beforeafter__bottom-cta { margin-top: 32px; }
}

/* ── 8. Trust bar — tighter cell padding on mobile ── */
@media screen and (max-width: 575px) {
    .home__trust__list li { padding: 18px 12px; }
    .home__trust__num { font-size: 34px; }
    .home__trust__label { font-size: 12px; }
    .home__trust { padding: 40px 0; }
}

/* ── 9. Steps section — tighter heading on mobile ── */
@media screen and (max-width: 575px) {
    .home__steps__title { font-size: 26px; }
    .home__steps__sub   { font-size: 15px; }
    .home__steps__head  { margin-bottom: 36px; }
    .home__steps__item  { padding: 24px 18px; }
}

/* ── 10. Features card section — tighter head ── */
@media screen and (max-width: 575px) {
    .key__topbar { margin-bottom: 32px; flex-direction: column; align-items: flex-start; }
}

/* ── 11. Testimonial section — tighter on mobile ── */
@media screen and (max-width: 575px) {
    .seoly-testimonial { padding: 52px 0; }
    .seoly-testimonial__quote { font-size: 17px; }
}

/* ── 12. Pricing cards — ensure full-width on tiny screens ── */
@media screen and (max-width: 575px) {
    .seoly-pricing__cards { max-width: 100%; }
    .seoly-pricing__head  { margin-bottom: 36px; }
}

/* ── 13. FAQ section — tighter on mobile ── */
@media screen and (max-width: 575px) {
    .seoly-faq { padding: 60px 0; }
    .seoly-faq__head { margin-bottom: 32px; flex-direction: column; align-items: flex-start; gap: 12px; }
    .seoly-faq__q { font-size: 15px; padding: 16px 0; }
}

/* ── 14. Contact section — tighter on mobile ── */
@media screen and (max-width: 575px) {
    .seoly-contact__head { margin-bottom: 36px; }
    .seoly-contact__head h2 { font-size: clamp(22px, 6vw, 32px); }
}

/* ── 15. Global section heading — readable on small phones ── */
@media screen and (max-width: 575px) {
    .section__heading h2,
    .section__title {
        font-size: clamp(22px, 6.5vw, 30px) !important;
    }
}

/* ── 16. Overflow guard — blobs & decorations ── */
.seoly-hero,
.seoly-about,
.seoly-whyus,
.seoly-testimonial,
.seoly-pricing,
.seoly-faq,
.seoly-contact,
.home__steps,
.home__beforeafter,
.home__finalcta,
.seoly-industries {
    overflow-x: hidden;
}

/* ── 17. Auth — 320px micro-phone insurance ── */
@media (max-width: 380px) {
    .auth__split__form {
        padding: 24px 16px 32px;
        padding-bottom: max(32px, env(safe-area-inset-bottom, 32px));
    }
    .auth__split .login__header h2 { font-size: 1.2rem; }
}

/* ── 18. Footer link tap targets — 44px minimum ── */
.footer__v2__col__list li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

/* ── 19. Offcanvas nav tap targets — comfortable 44px+ touch zones ── */
.offcanvas__menu ul li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

/* ── 20. Logo marquee — tighter on small phones ── */
@media screen and (max-width: 575px) {
    .cl-logos { padding: 28px 0; }
    .cl-logos__label { margin-bottom: 14px; }
    .cl-logos__track { gap: 32px; }
    .cl-logos__track img { height: 22px; }
}

/* ── 21. Capability ticker — readable on narrow screens ── */
@media screen and (max-width: 575px) {
    .cl-ticker { padding: 12px 0; }
    .cl-ticker__item { font-size: 12px; padding: 0 14px; }
    .cl-ticker__item i { font-size: 13px; }
}

/* ── 22. Pricing featured card — reset scale on mobile to avoid overflow ── */
@media screen and (max-width: 991px) {
    .seoly-pricing-card--featured { transform: scale(1); }
    .seoly-pricing-card--featured:hover { transform: translateY(-8px); }
}

/* ── 23. Industries grid — keep 2-col on small tablet, 1-col on phone ── */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .seoly-industries__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 24. Auth form switch link — ensure reachable at bottom of panel ── */
.auth__split__switch {
    padding-bottom: 8px;
}

/* ── 25. FAQ answer text edge padding on mobile ── */
@media screen and (max-width: 575px) {
    .seoly-faq__a p { padding-right: 8px; }
    .seoly-faq__a { padding: 0 0 16px; }
}

/* ── 26. Video Clipping Coming Soon teaser ─────────────────────────── */
.seoly-vc-teaser {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1150 52%, #24243e 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.seoly-vc-teaser::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 68%);
    pointer-events: none;
}
.seoly-vc-teaser::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,191,36,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.seoly-vc-teaser__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

/* Icon ring */
.seoly-vc-teaser__visual {
    display: flex;
    justify-content: center;
}
.seoly-vc-teaser__ring {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}
.seoly-vc-teaser__ring__icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(99,102,241,0.1);
    border: 2px dashed rgba(99,102,241,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: #a5b4fc;
}
.seoly-vc-teaser__orb {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #1e1b4b;
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);
    border: 2px solid rgba(99,102,241,0.45);
}
.seoly-vc-teaser__orb--1 { top: -14px;  left: 50%; transform: translateX(-50%); color: #fff; }
.seoly-vc-teaser__orb--2 { bottom: 22px; right: -18px; color: #E1306C; }
.seoly-vc-teaser__orb--3 { bottom: 22px; left: -18px;  color: #FF0000; }

/* Badge */
.seoly-vc-teaser__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(251,191,36,0.14);
    border: 1px solid rgba(251,191,36,0.4);
    color: #fbbf24;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Copy */
.seoly-vc-teaser__heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.seoly-vc-teaser__sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Platform pills */
.seoly-vc-teaser__platforms {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.seoly-vc-teaser__platforms li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.85);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .seoly-vc-teaser__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .seoly-vc-teaser__visual { justify-content: center; }
    .seoly-vc-teaser__platforms { justify-content: center; }
    .seoly-vc-teaser__badge { margin-left: auto; margin-right: auto; }
}
@media (max-width: 575px) {
    .seoly-vc-teaser { padding: 64px 0; }
    .seoly-vc-teaser__ring { width: 180px; height: 180px; }
    .seoly-vc-teaser__ring__icon { font-size: 52px; }
    .seoly-vc-teaser__orb { width: 42px; height: 42px; font-size: 18px; }
    .seoly-vc-teaser__cta { width: 100%; justify-content: center; text-align: center; }
}

