/* ============================================
   CRAFT SIGNAL — JDWebDesigns showpiece system
   Belter cyan → blue → violet on deep navy
   ============================================ */

:root {
    --cs-cyan: #06b6d4;
    --cs-cyan-deep: #0891b2;
    --cs-blue: #3b82f6;
    --cs-violet: #8b5cf6;
    --cs-violet-hot: #a855f7;
    --cs-navy: #0a0e1a;
    --cs-navy-deep: #070a12;
    --cs-surface: #12182a;
    --cs-text: #ffffff;
    --cs-muted: #94a3b8;
    --cs-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 48%, #8b5cf6 100%);
    --cs-gradient-soft: linear-gradient(135deg, rgba(6,182,212,.9) 0%, rgba(59,130,246,.85) 50%, rgba(139,92,246,.9) 100%);
    --cs-glow-cyan: 0 0 48px rgba(6, 182, 212, 0.45);
    --cs-glow-violet: 0 0 48px rgba(168, 85, 247, 0.35);
    --cs-font-display: 'Space Grotesk', system-ui, sans-serif;
    --cs-font-body: 'Inter', system-ui, sans-serif;
    --primary-color: #06b6d4;
    --secondary-color: #0891b2;
    --dark-bg: #0a0e1a;
    --gradient-vibrant: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.45);
}

body {
    font-family: var(--cs-font-body);
}

/* ---- Nav ---- */
.navbar.cs-nav {
    background: rgba(7, 10, 18, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.cs-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cs-nav .logo a {
    font-family: var(--cs-font-display);
    font-weight: 900;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    letter-spacing: -0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease;
}

.cs-nav .logo a:hover {
    transform: scale(1.05);
}

/* Belter brand shine — same energy as footer-mark */
.cs-nav .logo .jd,
.navbar .logo a .jd {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 35%, #8b5cf6 70%, #6d28d9 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.95)) drop-shadow(0 0 32px rgba(168, 85, 247, 0.65)) drop-shadow(0 0 56px rgba(109, 40, 217, 0.4)) !important;
}

.cs-nav .logo .web,
.navbar .logo a .web,
.navbar .logo a span:not(.jd) {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 28%, #22d3ee 62%, #0891b2 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 14px rgba(6, 182, 212, 0.95)) drop-shadow(0 0 32px rgba(34, 211, 238, 0.6)) drop-shadow(0 0 48px rgba(8, 145, 178, 0.4)) !important;
}

.cs-nav .logo a:hover .jd,
.navbar .logo a:hover .jd {
    background: linear-gradient(135deg, #fecaca 0%, #f87171 30%, #ef4444 65%, #dc2626 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 8px rgba(252, 165, 165, 0.95)) drop-shadow(0 0 24px rgba(239, 68, 68, 0.55)) !important;
}

.cs-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem 1.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs-nav .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    background: none !important;
    -webkit-text-fill-color: unset !important;
}

.cs-nav .nav-link:hover,
.cs-nav .nav-link.active {
    color: #67e8f9 !important;
    -webkit-text-fill-color: #67e8f9 !important;
    background: none !important;
    text-shadow: 0 0 18px rgba(6, 182, 212, 0.55);
}

.cs-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: var(--cs-gradient);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    box-shadow: var(--cs-glow-cyan);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.cs-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 56px rgba(6, 182, 212, 0.55), 0 0 28px rgba(139, 92, 246, 0.35);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

@media (max-width: 1200px) {
    .cs-nav-cta.desktop-only {
        display: none;
    }

    .cs-nav .nav-menu {
        gap: 0.1rem 0.7rem;
    }

    .cs-nav .nav-link {
        font-size: 0.84rem;
    }
}

/* ---- Shared page hero band (same polish as homepage hero) ---- */
.cs-page-hero {
    position: relative;
    padding: 7.75rem 1.25rem 4rem;
    overflow: hidden;
    background: var(--cs-navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(52vh, 28rem);
}

/* Base layer — matches .cs-hero-bg */
.cs-page-hero-bg,
.cs-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 55% at 82% 32%, rgba(139, 92, 246, 0.42) 0%, transparent 58%),
        radial-gradient(ellipse 50% 50% at 12% 68%, rgba(6, 182, 212, 0.38) 0%, transparent 55%),
        radial-gradient(ellipse 40% 45% at 48% 12%, rgba(34, 211, 238, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 35% 40% at 70% 85%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #05080f 0%, #0a0e1a 45%, #0c1228 100%);
}

/* Soft cyan + violet atmosphere — matches .cs-hero-bg::before (centred for page heroes) */
.cs-page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 48% 42% at 50% 30%, rgba(34, 211, 238, 0.22) 0%, transparent 68%),
        radial-gradient(ellipse 42% 48% at 50% 58%, rgba(6, 182, 212, 0.16) 0%, transparent 70%),
        radial-gradient(ellipse 44% 40% at 50% 18%, rgba(139, 92, 246, 0.2) 0%, transparent 65%),
        radial-gradient(ellipse 36% 44% at 50% 72%, rgba(168, 85, 247, 0.14) 0%, transparent 68%);
    filter: blur(28px);
    opacity: 0.75;
}

/* Cross-hatch grid — matches .cs-hero-bg::after */
.cs-page-hero-bg::after,
.cs-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M0 56L56 0' stroke='%2306b6d4' stroke-opacity='0.22' stroke-width='1' fill='none'/%3E%3Cpath d='M0 0L56 56' stroke='%23a855f7' stroke-opacity='0.16' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

/* Soft read veil — vertical for centred page heroes */
.cs-page-hero-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg, rgba(5, 8, 15, 0.45) 0%, rgba(5, 8, 15, 0.2) 42%, rgba(5, 8, 15, 0.55) 100%);
}

/* When markup includes dedicated bg layers, hide pseudo doubles */
.cs-page-hero:has(.cs-page-hero-bg)::before,
.cs-page-hero:has(.cs-page-hero-bg)::after {
    display: none;
}

.cs-page-hero .cs-container {
    position: relative;
    z-index: 1;
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.cs-page-hero .cs-kicker {
    opacity: 0;
    animation: csRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.cs-page-hero h1,
.cs-page-hero-h1 {
    font-family: var(--cs-font-display);
    font-weight: 700;
    font-size: clamp(2.35rem, 5vw, 3.65rem);
    letter-spacing: -0.045em;
    line-height: 1.08;
    margin: 0 0 1.15rem;
    color: #fff;
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.cs-page-hero h1 span,
.cs-page-hero-h1 span,
.cs-sec-head h2 span {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 30%, #22d3ee 65%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 18px rgba(6, 182, 212, 0.55));
}

.cs-step-num,
.cs-pkg-price,
.cs-pkg .price {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 40%, #8b5cf6 75%, #6d28d9 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.55));
}

.cs-page-hero .cs-lead,
.cs-page-hero-sub {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 34rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.cs-page-hero .cs-lead.shine-cyan,
.cs-page-hero-sub.shine-cyan {
    display: block;
    white-space: normal;
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.35));
}

/* Legal pages: keep calmer band, no home-level intensity */
.cs-page-hero--legal {
    min-height: 0;
    padding: 7.5rem 1.25rem 3.25rem;
}

.cs-page-hero--legal::before {
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(6, 182, 212, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 15% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    filter: none;
    opacity: 1;
}

.cs-page-hero--legal::after,
.cs-page-hero--legal .cs-page-hero-fade,
.cs-page-hero--legal .cs-page-hero-bg {
    display: none;
}

.cs-page-hero--legal .cs-kicker,
.cs-page-hero--legal h1,
.cs-page-hero--legal .cs-lead {
    animation: none;
    opacity: 1;
}

.cs-page-hero--legal h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.2rem);
}

.cs-page-hero--legal .cs-lead {
    color: rgba(255, 255, 255, 0.7);
    filter: none;
    -webkit-text-fill-color: unset;
    background: none;
}

.cs-kicker {
    display: inline-block;
    font-family: var(--cs-font-display);
    font-size: 0.78rem;
    font-weight: 700; /* Inter 800 not hosted — fake bold was warping "A" */
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    /* Solid fill + glow — background-clip + drop-shadow ate thin A crossbars */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #67e8f9;
    -webkit-text-fill-color: #67e8f9;
    filter: none;
    text-shadow: 0 0 18px rgba(6, 182, 212, 0.55);
}

.shine-violet {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 35%, #8b5cf6 70%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.65));
}

.shine-cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 28%, #22d3ee 62%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.65));
}

.cs-hero-h1 {
    font-family: var(--cs-font-display);
    font-size: clamp(2.45rem, 4.6vw, 3.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin: 0 0 1.25rem;
    max-width: 14em;
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
}

.cs-hero-line {
    display: block;
}

.cs-hero-line--duo {
    display: block;
}

.cs-hero-line--duo .shine-violet {
    margin-right: 0.35em;
}

.cs-hero-h1 .shine-violet,
.cs-hero-h1 .shine-cyan {
    display: inline;
    white-space: normal;
}

.cs-hero-h1 br + .shine-violet {
    margin-right: 0.35em;
}

.cs-hero-sub {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 34rem;
    margin: 0 0 2rem;
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

.cs-hero-sub.shine-cyan {
    display: block;
    white-space: normal;
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.35));
}

/* ---- Homepage hero ---- */
.cs-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cs-navy-deep);
    padding: 6.5rem 0 4rem;
}

.cs-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 82% 32%, rgba(139, 92, 246, 0.42) 0%, transparent 58%),
        radial-gradient(ellipse 50% 50% at 12% 68%, rgba(6, 182, 212, 0.38) 0%, transparent 55%),
        radial-gradient(ellipse 40% 45% at 48% 12%, rgba(34, 211, 238, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 35% 40% at 70% 85%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #05080f 0%, #0a0e1a 45%, #0c1228 100%);
}

/* Soft cyan-blue + violet atmosphere on the copy side */
.cs-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 48% 42% at 10% 30%, rgba(34, 211, 238, 0.22) 0%, transparent 68%),
        radial-gradient(ellipse 42% 48% at 22% 58%, rgba(6, 182, 212, 0.16) 0%, transparent 70%),
        radial-gradient(ellipse 44% 40% at 16% 18%, rgba(139, 92, 246, 0.2) 0%, transparent 65%),
        radial-gradient(ellipse 36% 44% at 6% 72%, rgba(168, 85, 247, 0.14) 0%, transparent 68%);
    filter: blur(28px);
    opacity: 0.75;
}

.cs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M0 56L56 0' stroke='%2306b6d4' stroke-opacity='0.22' stroke-width='1' fill='none'/%3E%3Cpath d='M0 0L56 56' stroke='%23a855f7' stroke-opacity='0.16' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.cs-hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 8, 15, 0.82) 0%, rgba(5, 8, 15, 0.5) 46%, rgba(5, 8, 15, 0.12) 100%);
    pointer-events: none;
}

.cs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.cs-hero-copy .cs-kicker {
    opacity: 0;
    animation: csRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.cs-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cs-btn-primary {
    background: var(--cs-gradient);
    color: #fff;
    box-shadow: var(--cs-glow-cyan);
}

.cs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.55), 0 12px 28px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.cs-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: #fff;
}

.cs-btn-ghost:hover {
    border-color: rgba(168, 85, 247, 0.55);
    background: rgba(139, 92, 246, 0.12);
    transform: translateY(-2px);
    color: #fff;
}

.cs-hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

.cs-hero-trust a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.cs-hero-trust a:hover {
    color: #fff;
}

.cs-hero-trust .tp-stars {
    color: #00b67a;
    letter-spacing: 0.05em;
}

.cs-hero-trust strong {
    color: #fff;
}

.cs-hero-fb-icon {
    display: inline-grid;
    place-items: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: #1877f2;
    color: #fff;
    font-family: var(--cs-font-display);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
}

/* Floating Trustpilot + Facebook under Hendry card */
.cs-float-badges {
    position: absolute;
    z-index: 6;
    left: auto;
    right: 4%;
    top: 48%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    flex-wrap: nowrap;
    pointer-events: none;
    animation: csFloatBadge 7s ease-in-out infinite;
}

.cs-float-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: rgba(12, 16, 28, 0.88);
    border: 1px solid rgba(6, 182, 212, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cs-float-badge:hover {
    transform: translateY(-3px) scale(1.03);
    color: #fff;
}

.cs-float-badge-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.cs-float-badge-copy strong {
    font-family: var(--cs-font-display);
    font-size: 0.95rem;
    font-weight: 800;
}

.cs-float-badge-copy em {
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(148, 163, 184, 0.95);
    letter-spacing: 0.02em;
}

.cs-float-badge--tp {
    border-color: rgba(0, 182, 122, 0.4);
}

.cs-float-badge--tp:hover {
    border-color: rgba(0, 182, 122, 0.7);
    box-shadow: 0 0 28px rgba(0, 182, 122, 0.25), 0 14px 36px rgba(0, 0, 0, 0.4);
}

.cs-float-badge-stars {
    color: #00b67a;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    filter: drop-shadow(0 0 8px rgba(0, 182, 122, 0.45));
}

.cs-float-badge--fb {
    border-color: rgba(24, 119, 242, 0.45);
}

.cs-float-badge--fb:hover {
    border-color: rgba(24, 119, 242, 0.75);
    box-shadow: 0 0 28px rgba(24, 119, 242, 0.28), 0 14px 36px rgba(0, 0, 0, 0.4);
}

.cs-float-badge-fb {
    display: inline-grid;
    place-items: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: #1877f2;
    color: #fff;
    font-family: var(--cs-font-display);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 0 16px rgba(24, 119, 242, 0.45);
}

@keyframes csFloatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .cs-float-badges {
        animation: none;
    }
}

/* Collage / brand theatre */
.cs-hero-visual {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-hero-visual::before {
    content: '';
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.38) 0%, rgba(6, 182, 212, 0.2) 42%, transparent 70%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

.cs-wordmark {
    position: relative;
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: csRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.cs-wordmark .wm-jd {
    display: block;
    font-family: var(--cs-font-display);
    font-weight: 900;
    font-size: clamp(5.5rem, 12vw, 9rem);
    line-height: 0.88;
    letter-spacing: -0.07em;
    background: linear-gradient(145deg, #f5e1ff 0%, #e9d5ff 12%, #c084fc 38%, #8b5cf6 68%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter:
        drop-shadow(0 0 18px rgba(192, 132, 252, 1))
        drop-shadow(0 0 42px rgba(139, 92, 246, 0.85))
        drop-shadow(0 0 90px rgba(109, 40, 217, 0.55));
}

.cs-wordmark .wm-web {
    display: block;
    font-family: var(--cs-font-display);
    font-weight: 700;
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.45rem;
    background: linear-gradient(135deg, #ecfeff 0%, #a5f3fc 18%, #67e8f9 40%, #22d3ee 68%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter:
        drop-shadow(0 0 16px rgba(34, 211, 238, 0.95))
        drop-shadow(0 0 40px rgba(6, 182, 212, 0.7))
        drop-shadow(0 0 70px rgba(8, 145, 178, 0.4));
}

.cs-frames {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cs-frame {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    background: #12182a;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(6, 182, 212, 0.38),
        0 0 55px rgba(6, 182, 212, 0.25),
        0 0 90px rgba(139, 92, 246, 0.15);
    opacity: 0;
    animation: csFrameIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards, csFloat 7s ease-in-out infinite;
}

.cs-frame::before {
    content: '';
    display: block;
    height: 18px;
    background: linear-gradient(90deg, #1a2238, #151c2e);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
}

.cs-frame-1 {
    width: min(280px, 58%);
    top: 4%;
    right: 0;
    transform: rotate(3deg);
    animation-delay: 0.5s, 0.5s;
}

.cs-frame-2 {
    width: min(210px, 46%);
    top: 38%;
    left: 0;
    transform: rotate(-4deg);
    animation-delay: 0.7s, 0.9s;
    animation-duration: 1s, 8.5s;
}

.cs-frame-3 {
    width: min(240px, 52%);
    bottom: 2%;
    right: 8%;
    transform: rotate(1.5deg);
    animation-delay: 0.9s, 1.2s;
    animation-duration: 1s, 6.5s;
}

@keyframes csRise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

@keyframes csFrameIn {
    from { opacity: 0; transform: translateX(56px) translateY(16px) scale(0.94); }
    to { opacity: 1; transform: none; }
}

@keyframes csFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.cs-frame-1 { animation-name: csFrameIn, csFloat; }
.cs-frame-1.settled,
.cs-frame-2,
.cs-frame-3 {
    /* keep rotate via separate wrapper if needed — applied on wrap */
}

.cs-frame-wrap {
    position: absolute;
    opacity: 0;
    animation: csFrameIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cs-frame-wrap .cs-frame {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    opacity: 1;
    animation: csFloat 7s ease-in-out infinite;
}

.cs-frame-wrap-1 {
    /* Hendry — top anchor */
    width: min(236px, 50%);
    top: 0;
    right: 2%;
    left: auto;
    z-index: 4;
    animation-delay: 0.45s;
}

.cs-frame-wrap-1 .cs-frame { transform: rotate(2.5deg); animation-delay: 0.2s; }

.cs-frame-wrap-2 {
    /* Ness — mid left */
    width: min(198px, 42%);
    top: 18%;
    left: 0;
    z-index: 3;
    animation-delay: 0.6s;
}

.cs-frame-wrap-2 .cs-frame { transform: rotate(-3.5deg); animation-duration: 8.5s; animation-delay: 0.4s; }

.cs-frame-wrap-3 {
    /* BHC — mid right / lower */
    width: min(208px, 44%);
    top: auto;
    bottom: 2%;
    right: 0;
    z-index: 2;
    animation-delay: 0.75s;
}

.cs-frame-wrap-3 .cs-frame { transform: rotate(2deg); animation-duration: 6.5s; animation-delay: 0.7s; }

.cs-frame-wrap-4 {
    /* SH — lower left */
    width: min(200px, 43%);
    top: auto;
    bottom: 10%;
    left: 8%;
    z-index: 5;
    animation-delay: 0.9s;
}

.cs-frame-wrap-4 .cs-frame { transform: rotate(-2deg); animation-duration: 7.4s; animation-delay: 0.95s; }

@media (prefers-reduced-motion: reduce) {
    .cs-hero-copy .cs-kicker,
    .cs-hero-h1,
    .cs-hero-sub,
    .cs-hero-btns,
    .cs-hero-trust,
    .cs-wordmark,
    .cs-frame-wrap,
    .cs-frame-wrap .cs-frame {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---- Sections ---- */
.cs-section {
    position: relative;
    padding: 5.5rem 1.25rem;
    background: var(--cs-navy);
}

.cs-section--alt {
    background: linear-gradient(180deg, #0a0e1a 0%, #0d1324 50%, #0a0e1a 100%);
}

.cs-section--glow {
    overflow: hidden;
}

.cs-section--glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 50% 0%, rgba(6, 182, 212, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.cs-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cs-sec-head {
    text-align: center;
    margin-bottom: 3rem;
}

.cs-sec-head h2 {
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    letter-spacing: -0.03em;
    margin: 0.5rem 0 0.75rem;
    color: #fff;
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.cs-sec-head h2 span {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #06b6d4;
    -webkit-text-fill-color: #06b6d4;
    text-shadow: 0 0 24px rgba(6, 182, 212, 0.45);
}

.cs-sec-head p {
    color: var(--cs-muted);
    font-size: 1.05rem;
    max-width: 34rem;
    margin: 0 auto;
    line-height: 1.65;
}

/* Work theatre */
.cs-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cs-work-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--cs-surface);
    border: 1px solid rgba(6, 182, 212, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cs-work-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), var(--cs-glow-violet);
}

.cs-work-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.cs-work-meta {
    padding: 1rem 1.15rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.cs-work-meta strong {
    font-family: var(--cs-font-display);
    font-size: 1.05rem;
    color: #fff;
}

.cs-pill-live {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cs-cyan);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.32rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
}

.cs-work-wide {
    grid-column: 1 / -1;
}

/* Portfolio gallery — calmer cyan/violet theme */
.cs-pf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.cs-pf-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(15, 20, 36, 0.85);
    border: 1px solid rgba(6, 182, 212, 0.16);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    min-width: 0;
    container-type: inline-size;
    container-name: pf-card;
}

.cs-pf-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(139, 92, 246, 0.12);
}

.cs-pf-shot {
    position: relative;
    overflow: hidden;
    background: #12182a;
}

.cs-pf-shot img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.45s ease;
}

.cs-pf-card:hover .cs-pf-shot img {
    transform: scale(1.03);
}

.cs-pf-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 1rem 1.1rem 1.15rem;
    min-width: 0;
}

.cs-pf-body > div:first-child {
    min-width: 0;
    flex: 1 1 auto;
}

.cs-pf-body strong {
    display: block;
    font-family: var(--cs-font-display);
    font-size: clamp(0.92rem, 1.6vw, 1.02rem);
    line-height: 1.3;
    color: #e2e8f0;
    margin-bottom: 0.25rem;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.cs-pf-tag {
    display: block;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(103, 232, 249, 0.75);
    overflow-wrap: break-word;
}

.cs-pf-card:nth-child(even) .cs-pf-tag {
    color: rgba(196, 181, 253, 0.8);
}

/* When a card is narrow (any breakpoint), stack title + date cleanly */
@container pf-card (max-width: 360px) {
    .cs-pf-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .cs-pill-live {
        align-self: flex-start;
    }
}

.cs-page-hero h1 .shine-violet,
.cs-page-hero h1 .shine-cyan,
.cs-sec-head h2 .shine-violet,
.cs-sec-head h2 .shine-cyan,
.cs-svc-band h2 .shine-violet,
.cs-svc-band h2 .shine-cyan,
.cs-close h2 .shine-violet,
.cs-close h2 .shine-cyan {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    filter: none;
}

.cs-page-hero h1 .shine-violet,
.cs-sec-head h2 .shine-violet,
.cs-svc-band h2 .shine-violet,
.cs-close h2 .shine-violet {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 35%, #8b5cf6 70%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.55));
}

.cs-page-hero h1 .shine-cyan,
.cs-sec-head h2 .shine-cyan,
.cs-svc-band h2 .shine-cyan,
.cs-close h2 .shine-cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 28%, #22d3ee 62%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.55));
}

.cs-reviews--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Services page */
.cs-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.cs-svc-card {
    position: relative;
    padding: 1.75rem 1.4rem 1.55rem;
    border-radius: 16px;
    background: rgba(15, 20, 36, 0.88);
    border: 1px solid rgba(6, 182, 212, 0.16);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cs-svc-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.85), rgba(139, 92, 246, 0.75));
    opacity: 0.85;
}

.cs-svc-card:nth-child(even)::before {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.85), rgba(6, 182, 212, 0.75));
}

.cs-svc-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.38);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35), 0 0 30px rgba(6, 182, 212, 0.1);
}

.cs-svc-num {
    display: block;
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 40%, #8b5cf6 75%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.45));
}

.cs-svc-card:nth-child(even) .cs-svc-num {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 28%, #22d3ee 62%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 14px rgba(6, 182, 212, 0.45));
}

.cs-svc-card h3 {
    font-family: var(--cs-font-display);
    font-size: 1.2rem;
    margin: 0 0 0.55rem;
    color: #e2e8f0;
}

.cs-svc-card:nth-child(odd) h3 {
    color: #a5f3fc;
}

.cs-svc-card:nth-child(even) h3 {
    color: #ddd6fe;
}

.cs-svc-card p {
    margin: 0;
    color: var(--cs-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.cs-svc-band {
    position: relative;
    padding: 4.25rem 1.25rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 70% at 12% 50%, rgba(139, 92, 246, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 65% at 88% 40%, rgba(6, 182, 212, 0.14) 0%, transparent 58%),
        var(--cs-navy-deep);
}

.cs-svc-band-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cs-svc-band h2 {
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    letter-spacing: -0.03em;
    margin: 0.4rem 0 0.85rem;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.cs-svc-band p:not(.cs-kicker) {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    max-width: 34rem;
}

.cs-svc-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-end;
}

.cs-work-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    text-align: center;
    margin-top: 2.25rem;
}

@media (max-width: 640px) {
    .cs-svc-grid {
        grid-template-columns: 1fr;
    }

    .cs-svc-band-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cs-svc-band p:not(.cs-kicker) {
        margin-left: auto;
        margin-right: auto;
    }

    .cs-svc-band-actions {
        justify-content: center;
    }

    .cs-pf-grid,
    .cs-reviews--compact {
        grid-template-columns: 1fr;
    }
}

/* Process */
.cs-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cs-step {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: rgba(18, 24, 42, 0.7);
    border: 1px solid rgba(6, 182, 212, 0.14);
}

.cs-step-num {
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: 2rem;
    background: var(--cs-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.cs-step h3 {
    font-family: var(--cs-font-display);
    font-size: 1.2rem;
    margin: 0 0 0.55rem;
    color: #fff;
}

.cs-step p {
    margin: 0;
    color: var(--cs-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Packages teaser */
.cs-pkg-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.cs-pkg {
    padding: 1.75rem 1.4rem;
    border-radius: 16px;
    background: rgba(18, 24, 42, 0.85);
    border: 1px solid rgba(6, 182, 212, 0.16);
    text-align: center;
}

.cs-pkg.is-featured {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.12) 0%, rgba(18, 24, 42, 0.9) 100%);
}

.cs-pkg h3 {
    font-family: var(--cs-font-display);
    margin: 0 0 0.4rem;
    color: #fff;
}

.cs-pkg .price {
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: 2rem;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #8b5cf6;
    -webkit-text-fill-color: #8b5cf6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.45);
    margin-bottom: 0.5rem;
}

.cs-pkg p {
    color: var(--cs-muted);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.55;
}

/* Package theatre (Packages page) */
.cs-pkg-theatre {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    align-items: stretch;
}

.cs-pkg-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.85rem 1.5rem;
    border-radius: 18px;
    background: rgba(18, 24, 42, 0.9);
    border: 1px solid rgba(6, 182, 212, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.cs-pkg-card.is-featured {
    border-color: rgba(139, 92, 246, 0.55);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.16) 0%, rgba(18, 24, 42, 0.95) 55%);
    box-shadow: 0 0 48px rgba(139, 92, 246, 0.22), 0 18px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-6px);
}

.cs-pkg-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--cs-gradient);
    white-space: nowrap;
}

.cs-pkg-card h3 {
    font-family: var(--cs-font-display);
    font-size: 1.35rem;
    margin: 0.4rem 0 0.35rem;
    color: #fff;
}

.cs-pkg-tag {
    color: var(--cs-cyan);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.45;
    min-height: auto;
}

.cs-pkg-price {
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1;
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 40%, #8b5cf6 75%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(139, 92, 246, 0.55));
    margin-bottom: 0.35rem;
}

.cs-pkg-sub {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0 0 1.25rem;
    line-height: 1.45;
}

.cs-pkg-sub span {
    color: var(--cs-cyan);
}

.cs-pkg-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.cs-pkg-card li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-pkg-card li::before {
    content: '✓ ';
    color: var(--cs-cyan);
    font-weight: 700;
}

.cs-pkg-card .cs-btn {
    width: 100%;
    margin-top: auto;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
    box-sizing: border-box;
}

.cs-pkg-note {
    text-align: center;
    color: var(--cs-muted);
    max-width: 40rem;
    margin: 2rem auto 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

.cs-extras-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.cs-extras-list li {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.32);
}

.cs-extras-list li:nth-child(even) {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(168, 85, 247, 0.32);
}

@media (max-width: 900px) {
    .cs-pkg-theatre {
        grid-template-columns: 1fr;
    }
    .cs-pkg-card.is-featured {
        transform: none;
    }
}

@media (max-width: 900px) {
    .cs-reviews {
        grid-template-columns: 1fr;
    }
}

/* Reviews */
.cs-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.cs-review {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(18, 24, 42, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.12);
}

.cs-review .stars {
    color: #00b67a;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
}

.cs-review blockquote {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.65;
}

.cs-review cite {
    font-style: normal;
    font-weight: 700;
    color: var(--cs-cyan);
    font-size: 0.9rem;
}

/* Close */
.cs-close {
    text-align: center;
    padding: 5rem 1.25rem;
    background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(6, 182, 212, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 80% 30%, rgba(139, 92, 246, 0.16) 0%, transparent 55%),
        var(--cs-navy-deep);
}

.cs-close h2 {
    font-family: var(--cs-font-display);
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin: 0 0 0.85rem;
    color: #fff;
}

.cs-close p {
    color: var(--cs-muted);
    max-width: 28rem;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
}

/* Areas covered */
.cs-areas {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.75rem;
    margin-top: 0.5rem;
}

.cs-area-group:nth-child(odd) h3 {
    color: #06b6d4;
}

.cs-area-group:nth-child(even) h3 {
    color: #c4b5fd;
}

.cs-area-group h3 {
    margin: 0 0 0.85rem;
    font-family: var(--cs-font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#areas .cs-sec-head h2 {
    color: transparent;
    -webkit-text-fill-color: transparent;
}

#areas .cs-sec-head h2 .shine-violet {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 35%, #8b5cf6 70%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.65));
    text-shadow: none;
}

#areas .cs-sec-head h2 .shine-cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 28%, #22d3ee 62%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.65));
    text-shadow: none;
}

#process .cs-sec-head h2 {
    color: transparent;
    -webkit-text-fill-color: transparent;
}

#process .cs-sec-head h2 .shine-violet {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 35%, #8b5cf6 70%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.65));
    text-shadow: none;
}

#process .cs-sec-head h2 .shine-cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 28%, #22d3ee 62%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.65));
    text-shadow: none;
}

.cs-area-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cs-area-list li {
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: var(--cs-font-body);
}

.cs-area-group:nth-child(odd) .cs-area-list li {
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.35);
}

.cs-area-group:nth-child(even) .cs-area-list li {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.35);
}

.cs-areas-note {
    margin: 2.25rem 0 0;
    text-align: center;
    color: var(--cs-muted);
    font-size: 0.95rem;
}

@media (max-width: 1099px) {
    .cs-areas {
        grid-template-columns: 1fr;
        gap: 1.15rem;
        align-items: start;
    }

    .cs-area-group h3 {
        margin-bottom: 0.5rem;
        font-size: 0.72rem;
    }

    .cs-area-list {
        gap: 0.4rem;
    }

    .cs-area-list li {
        padding: 0.32rem 0.65rem;
        font-size: 0.84rem;
    }

    .cs-areas-note {
        margin-top: 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 560px) {
    .cs-areas {
        gap: 1rem;
    }

    .cs-area-list li {
        padding: 0.28rem 0.55rem;
        font-size: 0.8rem;
    }
}

/* Sticky quote bar — phones only, keep it out of tablet layouts */
@media (min-width: 641px) {
    .sticky-cta-mobile {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .sticky-cta-mobile {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        bottom: max(14px, env(safe-area-inset-bottom));
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        max-width: calc(100% - 2rem);
        padding: 0.7rem 1.35rem;
        font-family: var(--cs-font-display);
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: -0.01em;
        border-radius: 999px;
        background: var(--cs-gradient);
        box-shadow: 0 8px 28px rgba(6, 182, 212, 0.35);
        z-index: 980;
    }

    /* Clear the phone sticky quote bar without stretching the whole footer */
    .footer .footer-bottom {
        padding-bottom: max(4.5rem, calc(4.5rem + env(safe-area-inset-bottom))) !important;
    }
}

/* Legal document */
.cs-legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 4rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

.cs-legal .legal-page {
    padding: 0;
    min-height: 0;
}

.cs-legal .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.cs-legal .legal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.cs-legal .legal-header h1 {
    display: none;
}

.cs-legal .last-updated {
    margin: 0;
    color: var(--cs-muted);
    font-size: 0.9rem;
}

.cs-legal .legal-content {
    font-size: 0.98rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.cs-legal .legal-content h2 {
    font-family: var(--cs-font-display);
    color: #fff;
    font-size: clamp(1.15rem, 4vw, 1.45rem);
    margin: 2rem 0 0.85rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cs-legal .legal-content h3,
.cs-legal .legal-content h4 {
    color: #e2e8f0;
    margin: 1.35rem 0 0.55rem;
    font-size: 1.05rem;
}

.cs-legal .legal-content p {
    margin: 0 0 0.9rem;
    color: rgba(226, 232, 240, 0.88);
}

.cs-legal .legal-content ul,
.cs-legal .legal-content ol {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.cs-legal .legal-content li {
    margin-bottom: 0.45rem;
    color: rgba(226, 232, 240, 0.88);
}

.cs-legal .legal-content strong {
    color: #fff;
}

.cs-legal .section-divider {
    border: 0;
    height: 1px;
    margin: 1.75rem 0;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.35), rgba(139, 92, 246, 0.35), transparent);
}

.cs-legal a {
    color: var(--cs-cyan);
}

.cs-legal table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
    .cs-legal {
        padding: 1rem max(1rem, env(safe-area-inset-left)) 3.5rem max(1rem, env(safe-area-inset-right));
    }

    .cs-legal .legal-content {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .cs-legal .legal-content ul,
    .cs-legal .legal-content ol {
        padding-left: 1.05rem;
    }
}

/* About — compact portrait + story */
.cs-about-intro {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    max-width: 52rem;
    margin: 0 auto;
}

.cs-about-portrait {
    flex: 0 0 auto;
    width: 148px;
    height: 148px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.45);
    box-shadow:
        0 0 0 6px rgba(6, 182, 212, 0.08),
        0 0 40px rgba(139, 92, 246, 0.35);
    position: relative;
}

.cs-about-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 24px rgba(7, 10, 18, 0.35);
    pointer-events: none;
}

.cs-about-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.cs-about-copy {
    flex: 1;
    min-width: 0;
}

.cs-about-copy h2 {
    font-family: var(--cs-font-display);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    margin: 0.35rem 0 1rem;
    line-height: 1.2;
}

.cs-about-copy p {
    color: var(--cs-muted);
    line-height: 1.7;
    margin: 0 0 0.85rem;
}

.cs-about-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Legacy grid kept harmless if referenced elsewhere */
.cs-about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.cs-about-photo {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.25);
    box-shadow: var(--cs-glow-cyan);
}

.cs-about-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Contact — same hero polish as page / home heroes */
.cs-contact-door {
    position: relative;
    overflow: hidden;
    padding: 10.5rem 1.25rem 3.75rem !important;
    min-height: 0 !important;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--cs-navy-deep);
}

.cs-contact-door .cs-page-hero-bg,
.cs-contact-door .cs-page-hero-fade {
    z-index: 0;
}

.cs-contact-door-glow {
    display: none;
}

.cs-contact-door .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.cs-contact-door-inner {
    position: relative;
    z-index: 1;
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.cs-contact-door .cs-kicker {
    opacity: 0;
    animation: csRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.cs-contact-door h1 {
    font-family: var(--cs-font-display);
    font-size: clamp(2.35rem, 5vw, 3.65rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.08;
    margin: 0 0 1.15rem;
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.cs-contact-door h1 .shine-violet,
.cs-contact-door h1 .shine-cyan {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cs-contact-door h1 .shine-violet {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 35%, #8b5cf6 70%, #6d28d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 22px rgba(139, 92, 246, 0.55));
}

.cs-contact-door h1 .shine-cyan {
    background: linear-gradient(135deg, #ecfeff 0%, #67e8f9 28%, #22d3ee 62%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 22px rgba(6, 182, 212, 0.55));
}

.cs-contact-door .cs-lead {
    max-width: 34rem;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.7;
    opacity: 0;
    animation: csRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.cs-contact-wa {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.1rem;
    width: 100%;
    max-width: 44rem;
    margin: 0 auto;
    padding: 1.35rem 1.5rem !important;
    border-radius: 22px;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 48%, #8b5cf6 100%) !important;
    box-shadow:
        0 0 50px rgba(6, 182, 212, 0.5),
        0 0 100px rgba(139, 92, 246, 0.28),
        0 18px 48px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: csContactPulse 3.6s ease-in-out infinite;
    box-sizing: border-box;
}

@keyframes csContactPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(6, 182, 212, 0.5), 0 0 100px rgba(139, 92, 246, 0.28), 0 18px 48px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 0 70px rgba(6, 182, 212, 0.65), 0 0 120px rgba(139, 92, 246, 0.38), 0 18px 48px rgba(0, 0, 0, 0.4); }
}

.cs-contact-wa:hover {
    transform: translateY(-4px) scale(1.015);
    animation: none;
    box-shadow:
        0 0 80px rgba(6, 182, 212, 0.7),
        0 0 140px rgba(139, 92, 246, 0.4),
        0 22px 56px rgba(0, 0, 0, 0.45);
    color: #fff;
}

.cs-contact-wa-icon {
    flex: 0 0 auto;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.cs-contact-wa-copy {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.cs-contact-wa-copy strong {
    display: block;
    font-family: var(--cs-font-display);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    filter: none !important;
    text-decoration: none !important;
}

.cs-contact-wa-copy em {
    display: block;
    margin-top: 0.3rem;
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.92;
    color: rgba(255, 255, 255, 0.92) !important;
}

.cs-contact-wa-go {
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(7, 10, 18, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cs-contact-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1.25rem;
    margin: 1.5rem 0 1.75rem;
}

.cs-contact-meta > p {
    margin: 0;
    color: var(--cs-muted);
    font-size: 0.92rem;
}

.cs-contact-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.25);
    font-size: 0.88rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cs-contact-trust:hover {
    border-color: rgba(168, 85, 247, 0.45);
    background: rgba(139, 92, 246, 0.12);
    color: #fff;
}

.cs-contact-stars {
    color: #fbbf24;
    letter-spacing: 0.04em;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.45));
}

.cs-contact-alts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

/* Contact enquiry form (Web3Forms) */
.cs-contact-form-section {
    padding-top: 2.75rem;
    padding-bottom: 3.5rem;
}

.cs-contact-form-section .cs-sec-head {
    overflow: visible;
    padding-top: 0.35rem;
}

.cs-contact-form-section .cs-sec-head h2 {
    overflow: visible;
    filter: none;
    line-height: 1.15;
}

.cs-contact-form {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    padding: 1.85rem 1.6rem 1.95rem;
    border-radius: 22px;
    background: rgba(12, 18, 34, 0.86);
    border: 1px solid rgba(6, 182, 212, 0.22);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    box-sizing: border-box;
    overflow: hidden;
}

.cs-contact-form *,
.cs-contact-form *::before,
.cs-contact-form *::after {
    box-sizing: border-box;
}

.cs-contact-form-honey {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cs-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
    width: 100%;
    min-width: 0;
}

.cs-contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

.cs-contact-field--full {
    grid-column: 1 / -1;
}

.cs-contact-field label {
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
}

.cs-contact-optional {
    font-weight: 500;
    color: rgba(148, 163, 184, 0.9);
}

.cs-contact-form .cs-contact-field input,
.cs-contact-form .cs-contact-field select,
.cs-contact-form .cs-contact-field textarea {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0.9rem 1rem !important;
    border-radius: 14px !important;
    border: 1px solid rgba(6, 182, 212, 0.28) !important;
    background: rgba(7, 10, 18, 0.85) !important;
    color: #fff !important;
    font: inherit;
    font-size: 1rem !important;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none !important;
    appearance: none !important;
    transform: none !important;
}

.cs-contact-form .cs-contact-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2367e8f9' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-color: rgba(7, 10, 18, 0.85) !important;
    padding-right: 2.5rem !important;
    cursor: pointer;
}

.cs-contact-form .cs-contact-field select option {
    background: #0c1222;
    color: #fff;
}

.cs-contact-form .cs-contact-field textarea {
    resize: vertical;
    min-height: 9rem !important;
}

.cs-contact-form .cs-contact-field input::placeholder,
.cs-contact-form .cs-contact-field textarea::placeholder {
    color: rgba(148, 163, 184, 0.75) !important;
    opacity: 1;
}

.cs-contact-form .cs-contact-field input:focus,
.cs-contact-form .cs-contact-field select:focus,
.cs-contact-form .cs-contact-field textarea:focus {
    outline: none !important;
    border-color: rgba(34, 211, 238, 0.7) !important;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.22) !important;
    transform: none !important;
}

.cs-contact-form-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
}

.cs-contact-form-actions .cs-btn {
    min-width: 11rem;
    width: auto;
    align-self: flex-start;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.cs-contact-form-note {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.95);
    max-width: 36rem;
}

.cs-contact-form-note a {
    color: #67e8f9;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cs-contact-form-note a:hover {
    color: #a78bfa;
}

/* Stack early so pairs never collide on tablets / narrow desktops */
@media (max-width: 900px) {
    .cs-contact-form {
        padding: 1.45rem 1.15rem 1.55rem;
        max-width: 100%;
    }

    .cs-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cs-contact-form-actions .cs-btn {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .cs-contact-form-section {
        padding-left: max(0.75rem, env(safe-area-inset-left));
        padding-right: max(0.75rem, env(safe-area-inset-right));
    }

    .cs-contact-form {
        padding: 1.25rem 0.95rem 1.35rem;
        border-radius: 18px;
    }
}

.cs-contact-alt {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1.1rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    text-align: left;
    color: #fff;
    background: rgba(18, 24, 42, 0.72);
    border: 1px solid rgba(6, 182, 212, 0.18);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cs-contact-alt:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 0 28px rgba(6, 182, 212, 0.2);
    color: #fff;
}

.cs-contact-alt:nth-child(2):hover {
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.22);
}

.cs-contact-alt-label {
    font-family: var(--cs-font-display);
    font-weight: 700;
    font-size: 1.05rem;
}

.cs-contact-alt-hint {
    font-size: 0.82rem;
    color: var(--cs-muted);
    word-break: break-word;
}

/* Pull the “what happens next” block up under the contact door */
.cs-contact-door + .cs-section {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
}

.cs-contact-door + .cs-section .cs-sec-head {
    margin-bottom: 1.75rem;
}

.cs-contact-door + .cs-section .cs-work-actions {
    margin-top: 1.5rem !important;
}

@media (max-width: 720px) {
    .cs-contact-door {
        min-height: 0 !important;
        padding: 8rem 1rem 2.5rem !important;
    }

    .cs-contact-door + .cs-section {
        padding: 1.75rem 1rem 2.75rem !important;
    }

    .cs-contact-door + .cs-section .cs-sec-head {
        margin-bottom: 1.35rem;
    }

    .cs-contact-wa {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 1.2rem 1.15rem;
        animation: none;
    }

    .cs-contact-wa-copy {
        text-align: center;
        flex: 1 1 100%;
    }

    .cs-contact-wa-go {
        margin-top: 0.15rem;
    }

    .cs-contact-alts {
        grid-template-columns: 1fr;
    }

    .cs-contact-alt {
        text-align: center;
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-contact-door-glow,
    .cs-contact-wa,
    .cs-contact-door .cs-kicker,
    .cs-contact-door h1,
    .cs-contact-door .cs-lead,
    .cs-page-hero .cs-kicker,
    .cs-page-hero h1,
    .cs-page-hero .cs-lead {
        animation: none;
        opacity: 1;
    }
}

/* Legacy contact bits (harmless if unused) */
.cs-contact-stack,
.cs-contact-grid {
    display: grid;
    gap: 1rem;
}

.cs-channel {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.2rem 1.25rem;
    border-radius: 14px;
    background: rgba(18, 24, 42, 0.85);
    border: 1px solid rgba(6, 182, 212, 0.16);
    text-decoration: none;
    color: #fff;
}

/* FAQ */
.cs-faq-wrap {
    max-width: 46rem;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

.cs-faq {
    min-width: 0;
}

.cs-faq details {
    background: rgba(18, 24, 42, 0.88);
    border: 1px solid rgba(6, 182, 212, 0.16);
    border-radius: 14px;
    margin-bottom: 0.7rem;
    padding: 0;
    overflow: hidden;
    min-width: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cs-faq details:hover {
    border-color: rgba(6, 182, 212, 0.35);
}

.cs-faq details[open] {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.12);
}

.cs-faq summary {
    font-family: var(--cs-font-display);
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.35;
    cursor: pointer;
    color: #fff;
    list-style: none;
    padding: 1.05rem 3.25rem 1.05rem 1.25rem;
    position: relative;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
    word-break: normal;
}

.cs-faq summary::-webkit-details-marker { display: none; }

.cs-faq summary::after {
    content: '+';
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    line-height: 1;
    flex-shrink: 0;
    pointer-events: none;
}

.cs-faq details[open] summary::after {
    content: '–';
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.14);
    border-color: rgba(168, 85, 247, 0.35);
}

.cs-faq details[open] summary {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #67e8f9;
    -webkit-text-fill-color: #67e8f9;
    margin-bottom: 0;
    padding-bottom: 0.55rem;
}

.cs-faq details p {
    color: var(--cs-muted);
    line-height: 1.7;
    margin: 0;
    padding: 0 1.25rem 1.15rem;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.cs-faq details a {
    color: var(--cs-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cs-faq details strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

/* Why a website / SEO & AEO / Resources guides */
.cs-vs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.cs-vs-card {
    padding: 1.75rem 1.5rem 1.6rem;
    border-radius: 16px;
    background: rgba(15, 20, 36, 0.9);
    border: 1px solid rgba(6, 182, 212, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.cs-vs-card--site {
    border-color: rgba(6, 182, 212, 0.32);
}

.cs-vs-card--fb {
    border-color: rgba(139, 92, 246, 0.32);
}

.cs-vs-label {
    font-family: var(--cs-font-display);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.cs-vs-card--site .cs-vs-label {
    color: #67e8f9;
}

.cs-vs-card--fb .cs-vs-label {
    color: #c4b5fd;
}

.cs-vs-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.cs-vs-card li {
    position: relative;
    padding-left: 1.15rem;
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.95rem;
    line-height: 1.55;
}

.cs-vs-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: #06b6d4;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.55);
}

.cs-vs-card--fb li::before {
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.55);
}

.cs-advice-note {
    margin: 1.75rem auto 0;
    max-width: 52rem;
    text-align: center;
    padding: 1.15rem 1.35rem;
    border-radius: 14px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.22);
    color: rgba(226, 232, 240, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.cs-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--cs-font-display);
    font-weight: 700;
    font-size: 0.92rem;
    color: #67e8f9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cs-card-link:hover {
    color: #fff;
}

.cs-svc-card .cs-card-link::after {
    content: ' \2192';
}

/* ============================================
   DEVICE POLISH — tablet + phone + small phone
   ============================================ */

/* Tablet / small laptop — no collage clutter */
@media (max-width: 1280px) {
    .cs-hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 max(1.25rem, env(safe-area-inset-left)) 0 max(1.25rem, env(safe-area-inset-right));
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .cs-hero-visual,
    .cs-float-badges {
        display: none !important;
    }

    .cs-hero-copy {
        text-align: center;
        width: 100%;
        max-width: 36rem;
        margin: 0 auto;
        padding: 0 0.35rem;
        box-sizing: border-box;
    }

    .cs-hero-h1 {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(2.15rem, 4.8vw, 3.15rem);
        line-height: 1.14;
        letter-spacing: -0.038em;
        hyphens: none;
        -webkit-hyphens: none;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: balance;
    }

    .cs-hero-h1 .shine-violet,
    .cs-hero-h1 .shine-cyan {
        white-space: normal;
    }

    .cs-hero-btns,
    .cs-hero-trust {
        justify-content: center;
    }

    .cs-hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 32rem;
        padding: 0 0.25rem;
    }

    .cs-hero-copy .cs-kicker,
    .cs-hero-h1,
    .cs-hero-sub,
    .cs-hero-btns,
    .cs-hero-trust {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .cs-hero {
        min-height: auto;
        align-items: flex-start;
        padding: 7rem 0 3.5rem;
        overflow-x: clip;
    }

    .cs-hero-fade {
        background: linear-gradient(180deg, rgba(7, 10, 18, 0.25) 0%, rgba(7, 10, 18, 0.75) 100%);
    }

    .cs-areas {
        grid-template-columns: 1fr;
        gap: 1.15rem;
        align-items: start;
    }

    .cs-area-group h3 {
        margin-bottom: 0.5rem;
    }

    .cs-area-list {
        gap: 0.4rem;
    }

    .cs-area-list li {
        padding: 0.32rem 0.65rem;
        font-size: 0.84rem;
    }

    .cs-areas-note {
        margin-top: 1.25rem;
    }
}

/* Tablet mid: keep readable 2-col grids */
@media (min-width: 641px) and (max-width: 1099px) {
    .cs-svc-grid,
    .cs-pf-grid,
    .cs-reviews--compact,
    .cs-vs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Narrow 2-col cards: stack name + date so nothing clips */
    .cs-pf-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
        padding: 0.95rem 1rem 1.05rem;
    }

    .cs-pf-body strong {
        font-size: 0.98rem;
    }

    .cs-pill-live {
        font-size: 0.64rem;
        padding: 0.3rem 0.5rem;
    }

    .cs-process,
    .cs-pkg-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cs-process .cs-step:last-child:nth-child(3),
    .cs-pkg-row .cs-pkg:last-child:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .cs-section {
        padding: 4.5rem 1.5rem;
    }

    .cs-page-hero {
        padding: 7rem 1.5rem 3rem;
    }
}

/* Phones and small tablets */
@media (max-width: 900px) {
    .cs-svc-band-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cs-svc-band p:not(.cs-kicker) {
        margin-left: auto;
        margin-right: auto;
    }

    .cs-svc-band-actions {
        justify-content: center;
    }

    .cs-pkg-theatre {
        grid-template-columns: 1fr;
    }

    .cs-pkg-card.is-featured {
        transform: none;
    }

    .cs-about-intro {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cs-about-portrait {
        width: 120px;
        height: 120px;
    }

    .cs-about-actions {
        justify-content: center;
    }

    .cs-hero {
        min-height: auto;
        padding: 5.75rem 0 2.75rem;
    }

    .cs-hero-inner {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .cs-hero-copy {
        max-width: 28rem;
        padding: 0;
    }

    .cs-hero-h1 {
        font-size: clamp(1.9rem, 7.2vw, 2.45rem);
        line-height: 1.16;
        letter-spacing: -0.032em;
        margin-bottom: 1rem;
    }

    .cs-hero-sub {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
        max-width: 26rem;
    }

    .cs-hero-fade {
        background: linear-gradient(180deg, rgba(7, 10, 18, 0.28) 0%, rgba(7, 10, 18, 0.88) 100%);
    }

    .cs-vs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cs-svc-grid,
    .cs-pf-grid,
    .cs-process,
    .cs-pkg-row,
    .cs-reviews,
    .cs-reviews--compact,
    .cs-about-grid,
    .cs-work-grid,
    .cs-vs-grid {
        grid-template-columns: 1fr;
    }

    .cs-process .cs-step:last-child:nth-child(3),
    .cs-pkg-row .cs-pkg:last-child:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .cs-container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        width: 100%;
        max-width: 100%;
    }

    .cs-section {
        padding: 3.75rem max(1rem, env(safe-area-inset-left)) 3.75rem max(1rem, env(safe-area-inset-right));
    }

    .cs-page-hero {
        padding: 6.25rem max(1rem, env(safe-area-inset-left)) 2.5rem max(1rem, env(safe-area-inset-right));
    }

    .cs-page-hero h1 {
        font-size: clamp(1.85rem, 8.2vw, 2.55rem);
        line-height: 1.12;
    }

    .cs-page-hero .cs-lead,
    .cs-sec-head p {
        font-size: 0.98rem;
        max-width: 34rem;
    }

    .cs-sec-head {
        margin-bottom: 2rem;
    }

    .cs-sec-head h2 {
        font-size: clamp(1.55rem, 6.5vw, 2.15rem);
    }

    .cs-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        margin-bottom: 0.75rem;
    }

    .cs-hero-h1 {
        font-size: clamp(1.8rem, 7.6vw, 2.35rem);
        line-height: 1.18;
        letter-spacing: -0.03em;
    }

    .cs-hero-sub {
        font-size: 0.96rem;
        margin-bottom: 1.4rem;
    }

    .cs-hero-line--duo {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 0.35em;
    }

    .cs-hero-line--duo .shine-violet {
        margin-right: 0;
    }

    .cs-hero-visual,
    .cs-float-badges,
    .cs-float-badge {
        display: none !important;
    }

    .cs-pf-card {
        border-radius: 14px;
    }

    .cs-pf-shot {
        aspect-ratio: 16 / 10;
    }

    .cs-pf-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.95rem 1rem 1.05rem;
        gap: 0.55rem;
    }

    .cs-pf-body strong {
        font-size: 1rem;
    }

    .cs-pf-tag {
        font-size: 0.78rem;
    }

    .cs-pill-live {
        font-size: 0.64rem;
        letter-spacing: 0.03em;
        padding: 0.3rem 0.5rem;
        align-self: flex-start;
    }

    .cs-hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cs-hero-trust {
        justify-content: center;
        gap: 0.65rem 1rem;
    }

    .cs-btn,
    .cs-work-actions .cs-btn,
    .cs-about-actions .cs-btn,
    .cs-close .cs-btn {
        width: 100%;
        min-height: 48px;
        padding: 0.95rem 1.25rem;
        font-size: 1rem;
        touch-action: manipulation;
    }

    .cs-work-actions,
    .cs-about-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .cs-hero-trust {
        justify-content: center;
        gap: 0.65rem 1rem;
        font-size: 0.88rem;
    }

    .cs-svc-card,
    .cs-step,
    .cs-pkg,
    .cs-vs-card,
    .cs-review {
        padding: 1.35rem 1.15rem 1.25rem;
    }

    .cs-advice-note {
        margin-top: 1.35rem;
        padding: 1rem 1.1rem;
        font-size: 0.95rem;
        text-align: left;
    }

    .cs-close {
        padding: 3.75rem max(1rem, env(safe-area-inset-left)) 4.25rem max(1rem, env(safe-area-inset-right));
    }

    .cs-close h2 {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
    }

    .cs-faq details summary {
        min-height: 52px;
        padding: 1rem 3.1rem 1rem 1.1rem;
        font-size: 0.98rem;
        touch-action: manipulation;
    }

    .cs-faq details[open] summary {
        padding-bottom: 0.5rem;
    }

    .cs-faq details p {
        padding: 0 1.1rem 1.15rem;
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .cs-faq summary::after {
        right: 0.95rem;
        width: 1.45rem;
        height: 1.45rem;
        font-size: 1.05rem;
    }

    .cs-contact-door {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .cs-contact-wa {
        min-height: 56px;
        width: 100%;
    }

    .cs-card-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .cs-page-hero {
        padding-top: 5.75rem;
        padding-bottom: 2rem;
    }

    .cs-hero {
        padding: 5.75rem 0 2.35rem;
    }

    .cs-hero-h1 {
        font-size: clamp(1.7rem, 8vw, 2.15rem);
        line-height: 1.2;
    }

    .cs-hero-copy {
        max-width: 100%;
    }

    .cs-section {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .cs-areas-note,
    .cs-advice-note {
        font-size: 0.9rem;
    }

    .cs-pkg .price {
        font-size: 1.75rem;
    }

    .cs-step-num,
    .cs-svc-num {
        font-size: 1.55rem;
    }

    .cs-faq details {
        border-radius: 12px;
        margin-bottom: 0.6rem;
    }

    .cs-faq details summary {
        font-size: 0.94rem;
        padding: 0.95rem 2.9rem 0.95rem 1rem;
        line-height: 1.35;
    }

    .cs-faq details[open] summary {
        padding-bottom: 0.45rem;
    }

    .cs-faq summary::after {
        right: 0.8rem;
        width: 1.35rem;
        height: 1.35rem;
        font-size: 1rem;
    }

    .cs-faq details p {
        font-size: 0.9rem;
        line-height: 1.65;
        padding: 0 1rem 1.05rem;
    }

    .cs-sec-head h2 {
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    }
}

/* Short landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
    .cs-hero {
        min-height: auto;
        padding: 4.5rem 0 2rem;
    }

    .cs-page-hero {
        padding-top: 4.75rem;
        padding-bottom: 1.75rem;
    }
}

/* Touch devices: keep glow, drop hover lift jank */
@media (hover: none) and (pointer: coarse) {
    .cs-btn:hover,
    .cs-svc-card:hover,
    .cs-pf-card:hover,
    .cs-float-badge:hover {
        transform: none;
    }

    .cs-btn:active,
    .cs-contact-wa:active {
        transform: scale(0.98);
        opacity: 0.92;
    }

    .cs-btn,
    .cs-nav-cta,
    .cs-card-link,
    .cs-contact-alt,
    .footer-channels a {
        -webkit-tap-highlight-color: rgba(6, 182, 212, 0.22);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-float-badges {
        animation: none;
    }
}
