/* ============================================
   Practice Hub — Marketing Site Styles v3
   Premium SaaS — Glassmorphism + Gradient Shimmer
   Palette: #FDFCFA #FAF7F2 #DB2777 #1A2E4A #1A2E4A #FFFFFF
   ============================================ */

:root {
    --cream: #FDFCFA;
    --cream-warm: #FAF7F2;
    --pink: #DB2777;
    --pink-light: #F472B6;
    --pink-glow: rgba(219,39,119,0.35);
    --gold: #1A2E4A;
    --gold-light: #E2C97E;
    --navy: #1A2E4A;
    --navy-light: #2D4A6F;
    --white: #FFFFFF;
    --text: #2D3748;
    --text-light: #64748B;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --shadow: 0 2px 12px rgba(26,46,74,0.08);
    --shadow-lg: 0 8px 32px rgba(26,46,74,0.12);
    --shimmer: linear-gradient(135deg, rgba(219,39,119,0.4), rgba(26,46,74,0.4), rgba(219,39,119,0.2));
    --shimmer-subtle: linear-gradient(135deg, rgba(219,39,119,0.15), rgba(26,46,74,0.15), rgba(219,39,119,0.08));
}

/* Colour chase animation for card borders */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 135deg;
    inherits: false;
}
@keyframes border-chase {
    0% { --border-angle: 0deg; }
    100% { --border-angle: 360deg; }
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Container */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 780px; }
.text-center { text-align: center; }

/* ---- FLOATING NAVIGATION ---- */
.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1180px;
    z-index: 1000;
    background: rgba(20,35,58,0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
}
.nav-inner {
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s;
    letter-spacing: 0.01em;
}
.nav-links a:hover { color: #fff; }
.nav-links .btn-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
    border-radius: 10px;
}
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; padding: 8px; }
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a {
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 8px; text-align: center; }
.nav-mobile.open { display: flex; }

@media (max-width: 768px) {
    .nav { top: 10px; width: calc(100% - 24px); border-radius: 14px; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}
.btn-cta {
    background: linear-gradient(135deg, #DB2777 0%, #BE185D 100%);
    color: #fff;
    box-shadow: 0 4px 24px var(--pink-glow), 0 0 0 0 rgba(219,39,119,0);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(219,39,119,0.45), 0 0 60px rgba(219,39,119,0.15);
}
.btn-lg { padding: 17px 44px; font-size: 1.05rem; border-radius: 12px; }
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid rgba(26,46,74,0.15);
}
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-outline--light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline--light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ---- HERO ---- */
.hero {
    position: relative;
    background: linear-gradient(165deg, #0C1524 0%, #142238 25%, #1A2E4A 50%, #243B5C 75%, #2D4A6F 100%);
    padding: 160px 0 60px;
    text-align: center;
    overflow: hidden;
}
.hero-split {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.hero-content { flex: 1; text-align: left; }

/* Browser mockup sliding in from right */
.hero-browser {
    flex: 0 0 560px;
    max-width: 560px;
    margin-right: -60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        0 0 40px rgba(219,39,119,0.2),
        0 0 80px rgba(219,39,119,0.1);
    flex-shrink: 0;
}
.hero-browser-bar {
    background: #1e1e1e;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
}
.hero-browser-dot:nth-child(2) { background: #ffbd2e; }
.hero-browser-dot:nth-child(3) { background: #27c93f; }
.hero-browser-url {
    margin-left: 12px;
    background: rgba(255,255,255,0.08);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    flex: 1;
}
.hero-browser-content {
    max-height: 400px;
    overflow: hidden;
}
.hero-browser-content img {
    width: 100%;
    display: block;
}

.hero-actions { align-items: flex-start; }

@media (max-width: 768px) {
    .hero-split { flex-direction: column; }
    .hero-content { text-align: center; }
    .hero-actions { align-items: center; }
    .hero-browser { margin-right: 0; margin-top: 32px; flex: 1 1 auto; max-width: 100%; }
}
.hero h1 {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}
.hero-sub {
    color: #ffffff;
    font-size: 1.18rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.hero-desc {
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 44px;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* Hero device image */
.hero-image {
    position: relative;
    flex: 1.2;
    z-index: 2;
}
.hero-image img {
    width: 100%;
    display: block;
    -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 60%, transparent 100%);
}
.hero-actions { align-items: center; }
.hero-note { color: #ffffff; font-size: 0.85rem; }
.hero-glow {
    display: none;
    filter: blur(50px);
}

/* Hero product variant — with laptop */
.hero--product { padding: 160px 0 60px; }
.hero--product .hero-content { margin-bottom: 60px; }

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 24px;
}

/* Laptop mockup */
.hero-laptop {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}
.hero-laptop-bezel {
    background: #111;
    border-radius: 12px 12px 0 0;
    padding: 8px 8px 0;
    border: 2px solid #333;
    border-bottom: none;
    overflow: hidden;
}
.hero-laptop-bezel img {
    border-radius: 6px 6px 0 0;
    width: 100%;
    display: block;
}
.hero-laptop-base {
    height: 18px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 0 0 4px 4px;
    border: 2px solid #333;
    border-top: 1px solid #444;
    position: relative;
}
.hero-laptop-base::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 6px;
    background: #444;
    border-radius: 3px;
}

/* ---- DEVICE GROUP (laptop + monitor + phone) ---- */
/* ---- DEVICE BRIDGE ---- */
.device-bridge {
    background: linear-gradient(180deg, #2D4A6F 0%, var(--cream) 70%);
    padding: 30px 28px 80px;
    position: relative;
    z-index: 1;
}
.device-bridge .container {
    max-width: 900px;
}

/* ---- DEVICE GROUP (laptop + monitor + phone) ---- */
.device-group {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.device-screen {
    overflow: hidden;
    background: #111;
}
.device-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}
/* Clip screens to realistic aspect ratios */
.device--monitor .device-screen { aspect-ratio: 16/9; }
.device--laptop .device-screen { aspect-ratio: 16/10; }
.device--phone .device-screen { aspect-ratio: 9/18; }

/* Desktop monitor — centre */
.device--monitor {
    position: relative;
    z-index: 2;
    width: 50%;
    flex-shrink: 0;
}
.device--monitor .device-screen {
    border: 3px solid #333;
    border-radius: 8px 8px 0 0;
    padding: 5px 5px 0;
    background: #1a1a1a;
}
.device--monitor .device-screen img {
    border-radius: 4px 4px 0 0;
}
.device-stand {
    width: 28%;
    height: 30px;
    margin: 0 auto;
    background: linear-gradient(180deg, #333 0%, #222 100%);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}
.device-foot {
    width: 44%;
    height: 5px;
    margin: 0 auto;
    background: #333;
    border-radius: 0 0 4px 4px;
}

/* Laptop — left */
.device--laptop {
    position: relative;
    z-index: 3;
    width: 38%;
    margin-right: -6%;
    flex-shrink: 0;
}
.device--laptop .device-screen {
    border: 3px solid #444;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 4px 4px 0;
    background: #1a1a1a;
}
.device--laptop .device-screen img {
    border-radius: 3px 3px 0 0;
}
.device-base {
    height: 12px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 0 0 6px 6px;
    border: 2px solid #444;
    border-top: 1px solid #555;
    position: relative;
}
.device-notch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 3px;
    background: #555;
    border-radius: 2px;
}

/* Phone — right */
.device--phone {
    position: relative;
    z-index: 3;
    width: 12%;
    margin-left: -4%;
    flex-shrink: 0;
}
.device--phone .device-screen {
    border: 3px solid #444;
    border-radius: 12px;
    padding: 4px 2px;
    background: #1a1a1a;
}
.device--phone .device-screen img {
    border-radius: 8px;
}

/* Glow behind devices */
.device-group::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(ellipse, rgba(219,39,119,0.25) 0%, rgba(26,46,74,0.1) 35%, transparent 60%);
    pointer-events: none;
    filter: blur(50px);
    z-index: -1;
}

@media (max-width: 768px) {
    .device-group { max-width: 100%; }
    .device--monitor { width: 52%; }
    .device--laptop { width: 36%; margin-right: -5%; }
    .device--phone { width: 14%; margin-left: -4%; }
    .device-stand { height: 20px; }
    .device-base { height: 8px; }
}

/* ---- MOCK DEVICE GROUP ---- */
.mock-device-group {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.mock-device-screen {
    background: #fff;
    font-size: 0.65rem;
    line-height: 1.4;
    overflow: hidden;
    color: var(--text);
    display: flex;
}
/* Sidebar inside mock apps */
.mock-app-sidebar {
    background: var(--navy);
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 70px;
}
.mock-app-logo {
    color: #fff;
    font-weight: 700;
    font-size: 0.55rem;
    margin-bottom: 6px;
    padding: 2px 4px;
}
.mock-nav-item {
    color: rgba(255,255,255,0.6);
    font-size: 0.5rem;
    padding: 3px 6px;
    border-radius: 4px;
}
.mock-nav-active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.mock-app-main {
    flex: 1;
    padding: 8px 10px;
}
.mock-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.7rem;
    color: var(--navy);
}
.mock-header-btns { display: flex; gap: 4px; }
.mock-stat-row {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}
.mock-stat {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}
.mock-stat strong { display: block; font-size: 0.8rem; color: var(--navy); }
.mock-stat span { font-size: 0.45rem; color: var(--text-light); }
.mock-app-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 0.55rem;
    color: var(--text);
}
/* Monitor */
.mock-device--monitor {
    position: relative;
    z-index: 2;
    width: 50%;
    flex-shrink: 0;
}
.mock-device--monitor .mock-device-screen {
    border: 3px solid #333;
    border-radius: 8px 8px 0 0;
    padding: 0;
    background: #1a1a1a;
    min-height: 220px;
}
.mock-device-stand {
    width: 28%;
    height: 28px;
    margin: 0 auto;
    background: linear-gradient(180deg, #333 0%, #222 100%);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}
.mock-device-foot {
    width: 44%;
    height: 5px;
    margin: 0 auto;
    background: #333;
    border-radius: 0 0 4px 4px;
}
/* Laptop */
.mock-device--laptop {
    position: relative;
    z-index: 3;
    width: 36%;
    margin-right: -5%;
    flex-shrink: 0;
}
.mock-device--laptop .mock-device-screen {
    border: 3px solid #444;
    border-radius: 8px 8px 0 0;
    min-height: 150px;
}
.mock-device-base {
    height: 10px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 0 0 6px 6px;
    border: 2px solid #444;
    border-top: 1px solid #555;
    position: relative;
}
.mock-device-notch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 3px;
    background: #555;
    border-radius: 2px;
}
/* Phone */
.mock-device--phone {
    position: relative;
    z-index: 3;
    width: 10%;
    margin-left: -3%;
    flex-shrink: 0;
}
.mock-device--phone .mock-device-screen {
    border: 3px solid #444;
    border-radius: 12px;
    padding: 8px 5px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 160px;
}
.mock-phone-header {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    padding-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
}
.mock-phone-stat {
    text-align: center;
    padding: 3px 0;
}
.mock-phone-stat strong { display: block; font-size: 0.6rem; color: var(--navy); }
.mock-phone-stat span { font-size: 0.4rem; color: var(--text-light); }
.mock-phone-case {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.4rem;
    padding: 2px 0;
    border-top: 1px solid #f1f3f5;
    color: var(--text);
}

/* Glow behind mock devices */
.mock-device-group::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(219,39,119,0.2) 0%, rgba(26,46,74,0.08) 40%, transparent 65%);
    pointer-events: none;
    filter: blur(50px);
    z-index: -1;
}

@media (max-width: 768px) {
    .mock-device-group { max-width: 100%; }
    .mock-device--monitor { width: 52%; }
    .mock-device--laptop { width: 34%; }
    .mock-device--phone { width: 12%; }
}

/* ---- SHOWCASE ROWS ---- */
.showcase-rows .container { max-width: 1100px; }
.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.showcase-row.visible {
    opacity: 1;
    transform: translateY(0);
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row--reverse { direction: rtl; }
.showcase-row--reverse > * { direction: ltr; }

.showcase-row-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), #BE185D);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(219,39,119,0.3);
}
.showcase-row-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-align: left;
}
.showcase-row-text h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.showcase-row-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.showcase-frame--shadow {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(26,46,74,0.12), 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
}
.showcase-frame--shadow img {
    width: 100%;
    display: block;
}

.showcase-annotation {
    display: block;
    text-align: right;
    margin-top: 12px;
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--pink-light);
    transform: rotate(-2deg);
}

/* ---- MOCK UI ELEMENTS ---- */
.mock-ui {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.5;
}
.mock-ui--card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(219,39,119,0.25);
    box-shadow:
        0 4px 24px rgba(0,0,0,0.1),
        0 0 30px rgba(219,39,119,0.35),
        0 0 60px rgba(219,39,119,0.25),
        0 0 100px rgba(26,46,74,0.2),
        0 0 160px rgba(219,39,119,0.15),
        0 0 220px rgba(26,46,74,0.1);
    overflow: hidden;
}
/* Force dark text inside mock cards (overrides section--dark white) */
.mock-ui--card,
.mock-ui--card h4,
.mock-ui--card p,
.mock-ui--card span,
.mock-ui--card strong,
.mock-ui--card td,
.mock-ui--card .mock-label,
.mock-ui--card .mock-value {
    color: var(--text);
}
.mock-ui--card h4 { color: var(--navy) !important; }
.mock-ui--card td strong { color: var(--navy) !important; }
.mock-ui--card .mock-sub { color: var(--text-light) !important; }
.mock-ui--card .mock-remaining { color: #10B981 !important; }
.mock-ui--card .mock-label { color: var(--navy) !important; }
.mock-ui--card .mock-value { color: var(--text) !important; }
.mock-retainer-period strong { color: var(--navy) !important; }
.mock-retainer-period span { color: var(--text-light) !important; }
.mock-progress-labels span { color: var(--text) !important; }

/* Mock tables */
.mock-table {
    width: 100%;
    border-collapse: collapse;
}
.mock-table thead {
    background: var(--navy);
}
.mock-table th {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 16px;
    text-align: left;
    border-left: 3px solid var(--pink);
}
.mock-table th:first-child { border-left: 3px solid var(--pink); }
.mock-table th:not(:first-child) { border-left: none; }
.mock-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f3f5;
    vertical-align: middle;
}
.mock-table tr:last-child td { border-bottom: none; }
.mock-table td strong {
    display: block;
    font-size: 0.82rem;
    color: var(--navy);
}
.mock-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Mock badges */
.mock-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.mock-badge--progress { background: #DB2777; color: #fff; }
.mock-badge--active { background: #10B981; color: #fff; }
.mock-badge--owner { background: #DB2777; color: #fff; }
.mock-badge--team { background: var(--navy); color: #fff; }

/* Mock action buttons */
.mock-actions { display: flex; gap: 6px; }
.mock-action-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}
.mock-action-btn--danger { background: #EF4444; }

/* Client details + retainer layout */
.mock-client-group {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    position: relative;
}
.mock-client-details {
    border-radius: 12px;
    padding: 24px;
    z-index: 1;
}
.mock-client-details h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.mock-client-details h4 i { margin-right: 8px; }
.mock-detail-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.mock-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy);
}
.mock-value {
    font-size: 0.8rem;
    color: var(--text);
}
.mock-retainer-card {
    border-radius: 12px;
    padding: 20px;
    margin-left: -16px;
    margin-top: 20px;
    z-index: 2;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.1),
        0 0 30px rgba(26,46,74,0.4),
        0 0 60px rgba(26,46,74,0.3),
        0 0 100px rgba(219,39,119,0.2),
        0 0 160px rgba(26,46,74,0.15),
        0 0 220px rgba(219,39,119,0.1);
    border: 1px solid rgba(26,46,74,0.25);
}
.mock-retainer-card h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}
.mock-retainer-card h4 i { margin-right: 6px; }
.mock-retainer-badge {
    background: #10B981;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
}
.mock-retainer-period {
    margin-bottom: 10px;
}
.mock-retainer-period strong {
    display: block;
    font-size: 0.78rem;
    color: var(--navy);
}
.mock-retainer-period span {
    font-size: 0.72rem;
    color: var(--text-light);
}
.mock-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}
.mock-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: 4px;
}
.mock-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text);
    font-weight: 500;
}
.mock-remaining {
    display: block;
    font-size: 0.72rem;
    color: #10B981;
    font-weight: 600;
    margin-top: 2px;
}
.mock-btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 8px 16px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: inherit;
    cursor: default;
    text-align: center;
}
.mock-btn i { margin-right: 6px; }

/* ---- STEP CARD SNIPPETS ---- */
.step-snippet {
    margin-top: 20px;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-align: left;
}
.step-snippet-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 6px;
}
.step-snippet-input {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text);
    background: #fff;
    margin-bottom: 10px;
}
.step-snippet-btn {
    display: inline-block;
    padding: 6px 16px;
    background: #10B981;
    color: #fff;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.step-snippet-btn i { margin-right: 4px; }
.step-snippet-small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 6px;
}
.step-snippet-assignee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
}
.step-snippet-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-snippet-case {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}
.step-snippet-case strong {
    font-size: 0.78rem;
    color: var(--navy);
}
.step-snippet-retainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
}
.step-snippet-import-options {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.step-snippet-import-btn {
    padding: 6px 10px;
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}
.step-snippet-import-btn i { margin-right: 3px; }
.step-snippet-divider {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 10px 0;
    position: relative;
}
.step-snippet-divider::before,
.step-snippet-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #d1d5db;
}
.step-snippet-divider::before { left: 0; }
.step-snippet-divider::after { right: 0; }
.step-snippet-ai {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 8px 10px;
    background: rgba(219,39,119,0.06);
    border: 1px solid rgba(219,39,119,0.12);
    border-radius: 6px;
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--text);
    line-height: 1.5;
}
.step-snippet-ai i { margin-top: 2px; flex-shrink: 0; }
.step-snippet-todo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    padding: 4px 0;
    color: var(--text);
}

@media (max-width: 768px) {
    .mock-client-group {
        grid-template-columns: 1fr;
    }
    .mock-retainer-card {
        margin-left: 0;
        margin-top: -8px;
    }
    .mock-table th,
    .mock-table td { padding: 8px 10px; font-size: 0.72rem; }
    .mock-actions { gap: 4px; }
    .mock-action-btn { width: 24px; height: 24px; font-size: 0.6rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .step-card { padding: 24px 16px; }
}

/* ---- STEPS / HOW IT WORKS ---- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.step-card {
    text-align: center;
    padding: 36px 24px;
    background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(253,252,250,0.8));
    border-radius: var(--radius-xl);
    box-shadow:
        0 8px 32px rgba(26,46,74,0.12),
        0 0 30px rgba(219,39,119,0.2),
        0 0 60px rgba(26,46,74,0.15),
        0 0 100px rgba(219,39,119,0.1);
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: conic-gradient(from var(--border-angle), #1A2E4A, #DB2777, #1A2E4A);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    pointer-events: none;
}
.step-card:hover::before {
    animation: border-chase 3s linear infinite;
}
.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.step-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), #BE185D);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.step-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero--product { padding: 130px 0 40px; }
    .hero--product .hero-content { margin-bottom: 40px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-laptop-bezel { padding: 4px 4px 0; border-radius: 8px 8px 0 0; }
    .hero-laptop-base { height: 12px; }

    .showcase-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 64px;
    }
    .showcase-row--reverse { direction: ltr; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-card { padding: 24px 16px; }

    .hero-laptop {
        max-width: 100%;
        overflow: hidden;
    }
}

/* ---- TRUST BADGES ---- */
.trust {
    background: linear-gradient(180deg, #0C1524 0%, var(--navy) 100%);
    padding: 44px 0 52px;
}
.trust-heading {
    text-align: center;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}
.trust-badge:hover {
    transform: translateY(-2px);
}
.trust-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
}
/* Each badge gets its own distinct pastel gradient fill */
.trust-badge:nth-child(1) {
    background: linear-gradient(135deg, rgba(219,39,119,0.15) 0%, rgba(219,39,119,0.06) 100%);
    border: 1px solid rgba(219,39,119,0.2);
    color: #F9A8D4;
}
.trust-badge:nth-child(1) .trust-icon { background: linear-gradient(135deg, #DB2777, #BE185D); color: #fff; box-shadow: 0 4px 16px rgba(219,39,119,0.35); }

.trust-badge:nth-child(2) {
    background: linear-gradient(135deg, rgba(26,46,74,0.15) 0%, rgba(26,46,74,0.06) 100%);
    border: 1px solid rgba(26,46,74,0.2);
    color: #F5DEB3;
}
.trust-badge:nth-child(2) .trust-icon { background: linear-gradient(135deg, #1A2E4A, #A78B3E); color: #fff; box-shadow: 0 4px 16px rgba(26,46,74,0.35); }

.trust-badge:nth-child(3) {
    background: linear-gradient(135deg, rgba(99,153,219,0.15) 0%, rgba(99,153,219,0.06) 100%);
    border: 1px solid rgba(99,153,219,0.2);
    color: #93C5FD;
}
.trust-badge:nth-child(3) .trust-icon { background: linear-gradient(135deg, #3B82F6, #2563EB); color: #fff; box-shadow: 0 4px 16px rgba(59,130,246,0.35); }

.trust-badge:nth-child(4) {
    background: linear-gradient(135deg, rgba(26,46,74,0.2) 0%, rgba(26,46,74,0.08) 100%);
    border: 1px solid rgba(26,46,74,0.15);
    color: #ffffff;
}
.trust-badge:nth-child(4) .trust-icon { background: linear-gradient(135deg, #1A2E4A, #2D4A6F); color: #fff; box-shadow: 0 4px 16px rgba(26,46,74,0.4); }

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark {
    background:
        radial-gradient(ellipse 55% 50% at 78% 25%, rgba(219,39,119,0.25) 0%, rgba(219,39,119,0.08) 40%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 22% 75%, rgba(26,46,74,0.18) 0%, rgba(26,46,74,0.05) 40%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 50% 50%, rgba(100,40,120,0.1) 0%, transparent 50%),
        linear-gradient(160deg, #0F1729 0%, #152238 40%, #1A2E4A 70%, #162035 100%);
    position: relative;
    overflow: hidden;
}
.section--dark > .container {
    position: relative;
    z-index: 1;
}
.section--dark,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p,
.section--dark li,
.section--dark span {
    color: #ffffff;
}
.section--navy {
    background: linear-gradient(135deg, #1A2E4A, #243B5C, #2A2040);
    padding: 72px 0;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-title--light { color: #fff; }
.section-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.75;
}
.section-sub--light { color: #ffffff; }
.section-note { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-top: 36px; }
.section-note--light { color: #ffffff; }

@media (max-width: 768px) {
    .section { padding: 68px 0; }
    .section-title { font-size: 1.8rem; }
    .section-sub { font-size: 0.95rem; margin-bottom: 36px; }
}

/* ---- PROSE ---- */
.prose p { margin-bottom: 20px; font-size: 1.08rem; color: var(--text); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); }
.prose-highlight {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--pink) !important;
    text-align: center;
    margin-top: 32px !important;
}

/* ---- FEATURE CARDS — GLASSMORPHISM WITH SHIMMER BORDER ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.feature-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(253,252,250,0.8));
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow:
        0 8px 32px rgba(26,46,74,0.12),
        0 0 30px rgba(219,39,119,0.2),
        0 0 60px rgba(26,46,74,0.15),
        0 0 100px rgba(219,39,119,0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    overflow: hidden;
    border: none;
    z-index: 1;
}
/* Thick gradient border — navy + pink */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: conic-gradient(from var(--border-angle), #1A2E4A, #DB2777, #1A2E4A);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26,46,74,0.2), 0 8px 28px rgba(219,39,119,0.2);
}
.feature-card:hover::before {
    animation: border-chase 3s linear infinite;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.feature-card-header h3 { margin-bottom: 0; }
.feature-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    position: relative;
}
.feature-icon-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    object-fit: contain;
}
.feature-icon--pink,
.feature-icon--gold,
.feature-icon--blue,
.feature-icon--purple { background: transparent; color: var(--gold); box-shadow: none; }
.feature-card h3 { font-size: 1.12rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

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

/* ---- AI CARDS — GLASS ON DARK ---- */
.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}
.ai-card {
    position: relative;
    background: #1A2E4A;
    border: none;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 8px 32px rgba(219,39,119,0.12), 0 0 50px rgba(219,39,119,0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    overflow: hidden;
    z-index: 1;
}
/* Gradient border on dark bg — colour chase on hover */
.ai-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: conic-gradient(from var(--border-angle), #DB2777, #1A2E4A, #DB2777);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    pointer-events: none;
}
.ai-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}
.ai-card:hover::before {
    animation: border-chase 3s linear infinite;
}
.ai-card--featured {
    background: #1E3352;
    box-shadow: 0 0 50px rgba(219,39,119,0.15), 0 0 100px rgba(219,39,119,0.05), inset 0 1px 0 rgba(255,255,255,0.08);
}
.ai-card--featured::before {
    background: conic-gradient(from var(--border-angle), #DB2777, #1A2E4A, #DB2777);
    padding: 3px;
}
.ai-card--featured:hover {
    box-shadow: 0 0 60px rgba(219,39,119,0.25), 0 0 120px rgba(219,39,119,0.08), 0 16px 50px rgba(0,0,0,0.25);
}
.ai-card--featured:hover::before {
    animation: border-chase 3s linear infinite;
}
.ai-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.ai-card-header h3 { margin-bottom: 0; }
.ai-card-icon {
    width: 48px; height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    background: transparent;
    color: var(--gold);
    border: none;
}
.ai-card--featured .ai-card-icon {
    background: transparent;
    color: var(--gold);
    box-shadow: none;
    border: none;
}
.ai-card-icon-img {
    width: 48px;
    height: 48px;
    min-width: 48px;
    object-fit: contain;
}
.ai-card h3 { color: #fff; font-size: 1.08rem; font-weight: 600; margin-bottom: 12px; }
.ai-card p { color: #ffffff; font-size: 0.92rem; line-height: 1.7; }

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

/* ---- AUDIENCE CARDS ---- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 880px;
    margin: 48px auto 0;
}
.audience-card {
    position: relative;
    background: linear-gradient(160deg, #fff, var(--cream));
    border: none;
    border-radius: var(--radius-xl);
    padding: 44px;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(26,46,74,0.12),
        0 0 30px rgba(219,39,119,0.2),
        0 0 60px rgba(26,46,74,0.15),
        0 0 100px rgba(219,39,119,0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    overflow: hidden;
}
.audience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: conic-gradient(from var(--border-angle), #1A2E4A, #DB2777, #1A2E4A);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    pointer-events: none;
}
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26,46,74,0.2), 0 8px 28px rgba(219,39,119,0.2);
}
.audience-card:hover::before {
    animation: border-chase 3s linear infinite;
}
.audience-icon {
    width: 68px; height: 68px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #DBEAFE, #E0E7FF);
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(26,46,74,0.12);
}
.audience-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}
.audience-card h3 { font-size: 1.18rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.audience-card p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }

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

/* ---- CTA SECTION ---- */
.cta-section { padding: 100px 0; }

/* ---- PRICING CARDS — GLASSMORPHISM ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}
.pricing-card {
    position: relative;
    background: linear-gradient(160deg, #fff, var(--cream));
    border: 1px solid rgba(26,46,74,0.04);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 4px 24px rgba(26,46,74,0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    overflow: hidden;
}
/* Thick gradient border — colour chase on hover */
.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: conic-gradient(from var(--border-angle), #DB2777, #1A2E4A, #DB2777);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    pointer-events: none;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(219,39,119,0.3), 0 8px 28px rgba(26,46,74,0.25);
}
.pricing-card:hover::after {
    animation: border-chase 3s linear infinite;
}

.pricing-card--featured {
    background: linear-gradient(160deg, #fff, #FFF5F9);
    border: none;
    box-shadow: 0 8px 48px rgba(219,39,119,0.18), 0 4px 20px rgba(26,46,74,0.08);
    transform: scale(1.04);
}
.pricing-card--featured::after {
    background: conic-gradient(from var(--border-angle), #DB2777, #1A2E4A, #DB2777);
    opacity: 1;
    padding: 4px;
}
.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 20px 64px rgba(219,39,119,0.25), 0 8px 28px rgba(26,46,74,0.12);
}
.pricing-card--featured::before {
    content: none;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #DB2777, #BE185D);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px var(--pink-glow);
    z-index: 2;
    text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.12rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.pricing-card .price { font-size: 3.2rem; font-weight: 800; color: var(--navy); margin: 12px 0 4px; letter-spacing: -0.03em; }
.pricing-card .price span { font-size: 1rem; font-weight: 500; color: var(--text-light); }
.pricing-card .price-note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.65; }
.pricing-card .plan-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 22px; line-height: 1.65; padding-bottom: 22px; border-bottom: 1px solid rgba(26,46,74,0.06); }
.pricing-card ul { list-style: none; margin-bottom: 28px; }
.pricing-card ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--pink);
    margin-top: 5px;
    flex-shrink: 0;
}
.pricing-card .btn { width: 100%; text-align: center; }

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-6px); }
}

/* ---- FEATURES LIST (pricing page) ---- */
.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 52px;
}
.feature-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.feature-detail-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FBCFE8, #F9A8D4);
    color: var(--pink);
    box-shadow: 0 4px 16px rgba(219,39,119,0.18);
}
.feature-detail-icon-img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    object-fit: contain;
    flex-shrink: 0;
}
.feature-detail h3 { font-size: 1.02rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.feature-detail p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

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

/* ---- AI FEATURE LIST (pricing page) ---- */
.ai-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 44px;
    position: relative;
    z-index: 2;
}
.ai-feature {
    position: relative;
    background: #1A2E4A;
    border: none;
    border-radius: var(--radius);
    padding: 26px;
    transition: transform 0.35s, box-shadow 0.35s;
    overflow: hidden;
    z-index: 1;
}
.ai-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: conic-gradient(from var(--border-angle), #DB2777, #1A2E4A, #DB2777);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 1;
    pointer-events: none;
}
.ai-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.ai-feature:hover::before {
    animation: border-chase 3s linear infinite;
}
.ai-feature h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.ai-feature p { color: #ffffff; font-size: 0.88rem; line-height: 1.65; }

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

/* ---- COMPARISON TABLE ---- */
.comparison-toggle { margin-top: 48px; }
.comparison-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    background: linear-gradient(160deg, #fff, var(--cream));
    border: 1px solid rgba(26,46,74,0.08);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    list-style: none;
}
.comparison-toggle-btn::-webkit-details-marker { display: none; }
.comparison-toggle-btn:hover { background: #fff; box-shadow: 0 4px 20px rgba(26,46,74,0.08); }
.comparison-toggle-btn i { transition: transform 0.3s; font-size: 0.8rem; }
.comparison-toggle[open] .comparison-toggle-btn i { transform: rotate(180deg); }

.practice-pricing-table-wrapper { overflow-x: auto; }
.practice-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 0.88rem;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,46,74,0.06);
}
.practice-pricing-table thead th {
    background: var(--navy);
    color: #fff;
    padding: 14px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}
.practice-pricing-table thead th:first-child { text-align: left; }
.practice-pricing-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(26,46,74,0.05);
    text-align: center;
    color: var(--text);
}
.practice-pricing-table tbody td:first-child { text-align: left; color: var(--text); font-size: 0.88rem; }
.practice-pricing-table .table-section-header td {
    background: var(--cream-warm);
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    padding: 10px 20px;
}
.practice-pricing-table .fa-check { color: var(--pink); font-size: 0.8rem; }
.practice-pricing-table .fa-minus { color: rgba(26,46,74,0.15); font-size: 0.8rem; }

@media (max-width: 768px) {
    .practice-pricing-table { font-size: 0.75rem; }
    .practice-pricing-table thead th,
    .practice-pricing-table tbody td { padding: 8px 8px; }
    .practice-pricing-table thead th { font-size: 0.75rem; }
}

/* ---- ABOUT PAGE ---- */
.about-prose { max-width: 780px; margin: 0 auto; }
.about-prose p { font-size: 1.08rem; color: var(--text); margin-bottom: 22px; line-height: 1.85; }
.about-prose p:last-child { margin-bottom: 0; }
.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
}
.about-company {
    position: relative;
    background: linear-gradient(160deg, #fff, var(--cream));
    border: none;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(219,39,119,0.15), 0 4px 20px rgba(26,46,74,0.1);
    max-width: 780px;
    margin: 0 auto;
    overflow: hidden;
}
.about-company::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 3px;
    background: conic-gradient(from var(--border-angle), #DB2777, #1A2E4A, #DB2777);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.about-company p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }
.about-company p:last-child { margin-bottom: 0; }

/* ---- FOOTER ---- */
.footer {
    background: linear-gradient(180deg, #0F1B2E, #1A2E4A, #1E2038);
    padding: 60px 0 0;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0; flex-shrink: 0; }
.footer-logo { height: 36px; width: auto; }
.footer-links { display: flex; gap: 56px; }
.footer-col h4 { color: #ffffff; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; color: #ffffff; font-size: 0.9rem; padding: 5px 0; transition: color 0.25s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 22px 0; text-align: center; }
.footer-bottom p { color: #ffffff; font-size: 0.8rem; }
.footer-company { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.footer-mascot { width: 240px; height: auto; }

@media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-links { flex-direction: column; gap: 28px; }
}

/* ---- SCROLL ANIMATIONS ---- */
.feature-card,
.ai-card,
.audience-card,
.pricing-card,
.trust-badge,
.feature-detail,
.ai-feature {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card.visible,
.ai-card.visible,
.audience-card.visible,
.pricing-card.visible,
.trust-badge.visible,
.feature-detail.visible,
.ai-feature.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Ensure featured pricing card keeps scale */
.pricing-card--featured.visible { transform: scale(1.04); }

/* Stagger delays */
.feature-card:nth-child(2), .ai-card:nth-child(2), .pricing-card:nth-child(2), .trust-badge:nth-child(2), .feature-detail:nth-child(2), .ai-feature:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3), .ai-card:nth-child(3), .pricing-card:nth-child(3), .trust-badge:nth-child(3), .feature-detail:nth-child(3), .ai-feature:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4), .ai-card:nth-child(4), .pricing-card:nth-child(4), .trust-badge:nth-child(4), .feature-detail:nth-child(4), .ai-feature:nth-child(4) { transition-delay: 0.3s; }
.feature-detail:nth-child(5), .ai-feature:nth-child(5) { transition-delay: 0.15s; }
.feature-detail:nth-child(6), .ai-feature:nth-child(6) { transition-delay: 0.25s; }
.feature-detail:nth-child(7), .ai-feature:nth-child(7) { transition-delay: 0.1s; }
.feature-detail:nth-child(8) { transition-delay: 0.2s; }

/* ---- DECORATIVE GRADIENT LINE ---- */
.section--cream + .section--white,
.section--white + .section--cream {
    border-top: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
}
.section--cream + .section--white::before,
.section--white + .section--cream::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(219,39,119,0.15), rgba(26,46,74,0.15), transparent);
}

/* ---- CONTACT FORM ---- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: var(--radius-lg);
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    color: var(--navy);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(219,39,119,0.1);
}
.form-group textarea {
    resize: vertical;
}
.btn-cta--full {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem;
}
.contact-success {
    margin-top: 24px;
    padding: 16px 24px;
    background: #ECFDF5;
    border: 1px solid #6EE7B7;
    border-radius: var(--radius-lg);
    color: #065F46;
    font-size: 0.92rem;
}
.contact-error {
    margin-top: 24px;
    padding: 16px 24px;
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-radius: var(--radius-lg);
    color: #991B1B;
    font-size: 0.92rem;
}

/* ---- HERO DEVICE GROUP ---- */
.hero-devices {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: -20px auto 0;
    padding: 0 28px 60px;
}
.hero-devices-inner {
    position: relative;
    height: 420px;
}

/* Shared device bezel */
.device .device-bezel {
    background: #1A202C;
    border-radius: 10px;
    padding: 6px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        0 8px 24px rgba(219,39,119,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
.device .device-bezel img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

/* Desktop monitor — centre, largest */
.device--monitor {
    position: absolute;
    width: 62%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 2;
}
.device--monitor .device-bezel {
    border-radius: 12px;
    padding: 8px 8px 24px;
}
.device--monitor .device-bezel img {
    border-radius: 6px;
}
.device-stand {
    width: 80px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, #2D3748, #1A202C);
    clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
    border-radius: 0 0 4px 4px;
}

/* Laptop — left, overlapping */
.device--laptop {
    position: absolute;
    width: 42%;
    left: -2%;
    bottom: 0;
    z-index: 3;
    transform: perspective(800px) rotateY(6deg);
}
.device--laptop .device-bezel {
    border-radius: 10px 10px 0 0;
    padding: 5px 5px 4px;
}
.device-keyboard {
    height: 12px;
    background: linear-gradient(180deg, #4A5568, #2D3748);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Phone — right side, subtle */
.device--phone {
    position: absolute;
    width: 10%;
    right: 4%;
    bottom: 10px;
    z-index: 4;
    transform: perspective(600px) rotateY(-4deg);
}
.device--phone .device-bezel {
    border-radius: 14px;
    padding: 8px 4px 12px;
    box-shadow:
        0 16px 48px rgba(0,0,0,0.35),
        0 4px 16px rgba(219,39,119,0.1);
}
.device--phone .device-bezel img {
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-devices-inner {
        height: 240px;
    }
    .device--monitor { width: 70%; }
    .device--laptop { width: 48%; left: -4%; }
    .device--laptop .device-bezel { padding: 3px 3px 2px; }
    .device-keyboard { height: 8px; }
    .device-stand { width: 50px; height: 24px; }
    .device--phone { width: 14%; right: 2%; }
    .device--phone .device-bezel { border-radius: 8px; padding: 4px 2px 6px; }
    .device--phone .device-bezel img { border-radius: 6px; }
}
@media (max-width: 480px) {
    .hero-devices-inner { height: 180px; }
    .device--monitor .device-bezel { padding: 4px 4px 14px; }
    .device--phone { display: none; }
}

/* ---- PRODUCT SHOWCASE GRID ---- */
.showcase-section { padding-bottom: 80px; }
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 48px;
}
.showcase-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.showcase-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(26,46,74,0.12),
        0 4px 16px rgba(219,39,119,0.08),
        0 0 0 1px rgba(26,46,74,0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    background: #fff;
}
.showcase-frame:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 24px 60px rgba(26,46,74,0.18),
        0 8px 24px rgba(219,39,119,0.12),
        0 0 0 1px rgba(219,39,119,0.15);
}
.showcase-frame img {
    width: 100%;
    display: block;
}
.showcase-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 18px 0 6px;
}
.showcase-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

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

/* ---- MOBILE SHOWCASE — PHONE FRAMES ---- */
.mobile-showcase {
    margin-top: 80px;
    text-align: center;
}
.mobile-showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.mobile-showcase-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 32px;
    margin-top: 8px;
}
.mobile-frame {
    position: relative;
    width: 220px;
    background: #1A202C;
    border-radius: 32px;
    padding: 12px 8px 16px;
    box-shadow:
        0 20px 60px rgba(26,46,74,0.2),
        0 8px 24px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.mobile-frame.visible {
    opacity: 1;
    transform: translateY(0);
}
.mobile-frame:nth-child(2) {
    width: 240px;
    transform: translateY(30px) scale(1.04);
}
.mobile-frame:nth-child(2).visible {
    transform: translateY(-10px) scale(1.04);
}
.mobile-notch {
    width: 80px;
    height: 6px;
    background: #2D3748;
    border-radius: 10px;
    margin: 0 auto 8px;
}
.mobile-frame img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .mobile-showcase-row { gap: 12px; }
    .mobile-frame { width: 140px !important; border-radius: 22px; padding: 8px 5px 10px; }
    .mobile-frame:nth-child(2) { transform: translateY(30px) scale(1) !important; }
    .mobile-frame:nth-child(2).visible { transform: translateY(-6px) scale(1) !important; }
    .mobile-notch { width: 50px; height: 4px; margin-bottom: 5px; }
    .mobile-frame img { border-radius: 14px; }
    .mobile-showcase-title { font-size: 1.5rem; }
}

/* ---- FEATURE SHOWCASE — ALTERNATING IMAGE + TEXT ---- */
.feature-showcase {
    margin-top: 48px;
}
.feature-showcase-row {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 64px;
}
.feature-showcase-row:last-child {
    margin-bottom: 0;
}
.feature-showcase-row--reverse {
    flex-direction: row-reverse;
}
.feature-showcase-text {
    flex: 1;
    min-width: 0;
}
.feature-showcase-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.feature-showcase-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
}
.feature-showcase-img {
    flex: 1.4;
    min-width: 0;
}
.feature-showcase-img .showcase-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(26,46,74,0.12),
        0 4px 16px rgba(219,39,119,0.08),
        0 0 0 1px rgba(26,46,74,0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    background: #fff;
}
.feature-showcase-img .showcase-frame:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 20px 50px rgba(26,46,74,0.16),
        0 8px 24px rgba(219,39,119,0.1),
        0 0 0 1px rgba(219,39,119,0.12);
}
.feature-showcase-img .showcase-frame img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .feature-showcase-row,
    .feature-showcase-row--reverse {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
    }
    .feature-showcase-text h3 { font-size: 1.2rem; }
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 24px 28px;
    z-index: 9999;
    border-radius: var(--radius-xl);
    display: none;
    overflow: hidden;
}
.cookie-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: conic-gradient(from var(--border-angle), #DB2777, #C9A962, #DB2777);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: border-chase 4s linear infinite;
}
.cookie-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow:
        0 0 30px rgba(219,39,119,0.3),
        0 0 60px rgba(219,39,119,0.15),
        inset 0 0 30px rgba(219,39,119,0.05);
    pointer-events: none;
}
.cookie-banner.show {
    display: block;
    animation: cookieSlideUp 0.4s ease-out;
}
@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 280px;
}
.cookie-banner a {
    color: #DB2777;
    text-decoration: underline;
    font-weight: 500;
}
.cookie-banner a:hover {
    color: #C9A962;
}
.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner-buttons button {
    padding: 10px 22px;
    border-radius: var(--radius-lg);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    position: relative;
}
.cookie-btn-accept {
    background: #DB2777;
    color: #fff;
    box-shadow: 0 0 20px rgba(219,39,119,0.4), 0 0 40px rgba(219,39,119,0.15);
}
.cookie-btn-accept:hover {
    box-shadow: 0 0 25px rgba(219,39,119,0.6), 0 0 50px rgba(219,39,119,0.25);
    transform: translateY(-1px);
}
.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25) !important;
}
.cookie-btn-reject:hover {
    border-color: rgba(201,169,98,0.5) !important;
    color: var(--gold);
}
.cookie-mascot {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 14px rgba(219,39,119,0.5));
}
@media (max-width: 768px) {
    .cookie-mascot { display: none; }
    .cookie-banner { bottom: 10px; width: calc(100% - 20px); padding: 16px 18px; }
    .cookie-banner-buttons { width: 100%; }
    .cookie-banner-buttons button { flex: 1; padding: 10px 12px; font-size: 0.8rem; }

    /* About page flex sections stack on mobile */
    .about-flex { flex-direction: column !important; gap: 24px !important; align-items: center !important; }
    .about-flex-img { width: 100% !important; max-width: 250px !important; margin: 0 auto !important; }
    .about-flex--ai { flex-direction: column-reverse !important; }
    .about-flex-img--ai { max-width: 200px !important; }
    .about-flex--founder-story { padding-bottom: 0 !important; }
}
