/* ========================================
   IAVS - Image Audio/Video Styling
   Professional design system
   ======================================== */

:root {
    /* Primary palette - deep aubergine/purple, premium audio aesthetic */
    --plum-950: #1a0f24;
    --plum-900: #251539;
    --plum-800: #322051;
    --plum-700: #3f2a66;
    --plum-600: #4f377d;
    --plum-500: #6347a0;
    --plum-400: #8569bd;
    --plum-300: #a892d3;
    --plum-200: #ccbde6;
    --plum-100: #ebe4f3;
    --plum-50:  #f7f3fb;

    /* Accent - warm amber/copper for vintage audio warmth */
    --amber-600: #c8862a;
    --amber-500: #e09e3d;
    --amber-400: #ecb766;
    --amber-300: #f3cf94;
    --amber-100: #fdf3df;

    /* Neutrals */
    --ink: #14091f;
    --slate-900: #1f1828;
    --slate-800: #2d2538;
    --slate-700: #4a3f55;
    --slate-600: #685a76;
    --slate-500: #8a7d97;
    --slate-400: #a89dba;
    --slate-300: #c8c0d4;
    --slate-200: #e3deea;
    --slate-100: #f3f0f7;
    --paper: #faf8fc;
    --white: #ffffff;

    /* Status */
    --success: #2f8a5f;
    --warn: #c08825;
    --error: #b8342c;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(26, 15, 36, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 15, 36, 0.08);
    --shadow-lg: 0 12px 32px rgba(26, 15, 36, 0.12);
    --shadow-xl: 0 24px 60px rgba(26, 15, 36, 0.18);
    --shadow-glow: 0 0 40px rgba(99, 71, 160, 0.25);

    /* Layout */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::selection {
    background: var(--plum-300);
    color: var(--plum-950);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 17px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--plum-600);
    transition: color 0.2s;
}

a:hover {
    color: var(--plum-700);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--plum-950);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--plum-600);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--amber-500);
}

/* ========================================
   TOP BAR
   ======================================== */
.topbar {
    background: var(--plum-950);
    color: var(--slate-300);
    padding: 10px 0;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--slate-300);
}

.topbar-item svg {
    width: 14px;
    height: 14px;
    color: var(--amber-400);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar a {
    color: var(--slate-200);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar a:hover {
    color: var(--amber-400);
}

.topbar a svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   HEADER
   ======================================== */
header.site-header {
    background: var(--plum-900);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: filter 0.3s;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text-title {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-text-sub {
    font-size: 12px;
    color: var(--plum-300);
    margin-top: 2px;
    letter-spacing: 0.02em;
}

nav.main-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

nav.main-nav a {
    color: var(--slate-200);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    font-size: 14.5px;
    position: relative;
    display: inline-block;
}

nav.main-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

nav.main-nav a.active {
    color: white;
}

nav.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--amber-500);
    border-radius: 1px;
}

nav.main-nav .nav-cta {
    background: var(--amber-500);
    color: var(--plum-950);
    font-weight: 600;
    margin-left: 12px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
}

nav.main-nav .nav-cta:hover {
    background: var(--amber-400);
    color: var(--plum-950);
    transform: translateY(-1px);
}

/* Submenu (dropdown) */
nav.main-nav .has-submenu {
    position: relative;
}

nav.main-nav .has-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

nav.main-nav .has-submenu .caret {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

nav.main-nav .has-submenu:hover .caret {
    transform: rotate(180deg);
}

nav.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--plum-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 240px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s;
    z-index: 50;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
}

nav.main-nav .has-submenu:hover .submenu,
nav.main-nav .has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav.main-nav .submenu li {
    list-style: none;
}

nav.main-nav .submenu a {
    display: block;
    padding: 10px 14px;
    color: var(--slate-200);
    font-size: 14.5px;
    border-radius: var(--radius-sm);
    width: 100%;
    white-space: nowrap;
}

nav.main-nav .submenu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

nav.main-nav .submenu a.active {
    color: var(--amber-400);
}

nav.main-nav .submenu a.active::after {
    display: none;
}

.mobile-toggle {
    display: none;
    color: white;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle svg {
    width: 26px;
    height: 26px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 15.5px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-family: 'DM Sans', sans-serif;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-700);
    color: white;
}

.btn-primary:hover {
    background: var(--plum-800);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--amber-500);
    color: var(--plum-950);
}

.btn-accent:hover {
    background: var(--amber-400);
    color: var(--plum-950);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(224, 158, 61, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--plum-700);
    border-color: var(--plum-300);
}

.btn-outline:hover {
    border-color: var(--plum-700);
    background: var(--plum-50);
    color: var(--plum-800);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   HERO (homepage)
   ======================================== */
.hero {
    position: relative;
    background: var(--plum-950);
    color: white;
    padding: 80px 0 100px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(99, 71, 160, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(224, 158, 61, 0.15) 0%, transparent 50%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: -1px -1px;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--plum-200);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--amber-500);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: white;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 .accent {
    color: var(--amber-400);
    font-style: italic;
    font-weight: 500;
}

.hero h1 .underline {
    position: relative;
    display: inline-block;
}

.hero h1 .underline::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--amber-500);
    opacity: 0.4;
    z-index: -1;
}

.hero-lead {
    font-size: 19px;
    color: var(--plum-100);
    margin-bottom: 32px;
    line-height: 1.55;
    max-width: 520px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--plum-100);
    font-size: 16px;
}

.hero-bullets li svg {
    width: 20px;
    height: 20px;
    color: var(--amber-400);
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 600px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: -30px -20px -20px -30px;
    background: linear-gradient(135deg, var(--plum-700), transparent);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.4;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-floating {
    position: absolute;
    background: white;
    color: var(--plum-950);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border: 1px solid var(--slate-200);
}

.hero-floating-1 {
    top: 20px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-2 {
    bottom: 30px;
    right: -20px;
    animation: float 6s ease-in-out infinite -3s;
}

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

.hero-floating-icon {
    width: 36px;
    height: 36px;
    background: var(--plum-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    flex-shrink: 0;
}

.hero-floating-icon svg {
    width: 20px;
    height: 20px;
}

.hero-floating strong {
    display: block;
    font-weight: 700;
    color: var(--plum-950);
}

.hero-floating span {
    color: var(--slate-600);
    font-size: 12.5px;
}

/* ========================================
   PAGE HERO (sub-pages)
   ======================================== */
.page-hero {
    background: var(--plum-900);
    color: white;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(99, 71, 160, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(224, 158, 61, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero h1 {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-hero h1 .accent {
    color: var(--amber-400);
    font-style: italic;
    font-weight: 500;
}

.page-hero p {
    font-size: 18px;
    color: var(--plum-200);
    line-height: 1.55;
    max-width: 660px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--plum-300);
    font-size: 13px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.breadcrumb a {
    color: var(--plum-200);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--amber-400);
}

.breadcrumb-separator {
    color: var(--plum-400);
    opacity: 0.6;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-header h2 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--plum-950);
    margin-bottom: 14px;
}

.section-header h2 .accent {
    color: var(--plum-600);
    font-style: italic;
    font-weight: 500;
}

.section-lead {
    font-size: 18px;
    color: var(--slate-700);
    line-height: 1.6;
}

/* ========================================
   USPS / CORE VALUES
   ======================================== */
.usps {
    background: var(--paper);
    position: relative;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.usp-card {
    padding: 36px 32px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-600), var(--amber-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.usp-card:hover::before {
    transform: scaleX(1);
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-200);
}

.usp-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--plum-700);
    border: 1px solid var(--plum-200);
}

.usp-icon svg {
    width: 26px;
    height: 26px;
}

.usp-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.usp-card p {
    color: var(--slate-700);
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
    background: linear-gradient(180deg, var(--paper) 0%, var(--plum-50) 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--plum-200);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--plum-900);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 15, 36, 0.6) 100%);
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-num {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 15, 36, 0.7);
    backdrop-filter: blur(8px);
    color: var(--amber-400);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 2;
}

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--slate-700);
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    color: var(--plum-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ========================================
   ABOUT (intro) — homepage
   ======================================== */
.intro-section {
    background: white;
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.intro-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
}

.intro-content h2 .accent {
    color: var(--plum-600);
    font-style: italic;
    font-weight: 500;
}

.intro-content p {
    color: var(--slate-700);
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.7;
}

.intro-content .lead {
    font-size: 19px;
    color: var(--plum-900);
    font-weight: 500;
    line-height: 1.55;
}

.collapsible-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
}

.collapsible-content.open {
    max-height: 800px;
}

.read-more-btn {
    margin-top: 24px;
    color: var(--plum-700);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
}

.read-more-btn:hover {
    color: var(--plum-800);
    gap: 12px;
}

.read-more-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.read-more-btn.open svg {
    transform: rotate(180deg);
}

.intro-visual {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-visual::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--amber-500);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(40px);
    z-index: -1;
}

.intro-stat {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 15, 36, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 24px;
    border-radius: var(--radius-md);
}

.intro-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--amber-400);
    line-height: 1;
}

.intro-stat-label {
    font-size: 13px;
    color: var(--plum-200);
    margin-top: 4px;
}

/* ========================================
   STATS BAND
   ======================================== */
.stats-band {
    background: var(--plum-900);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99, 71, 160, 0.3) 0%, transparent 70%);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-block {
    padding: 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-block:first-child {
    border-left: none;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--amber-400);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--plum-200);
    font-size: 14.5px;
}

/* ========================================
   BRANDS BAND
   ======================================== */
.brands {
    background: white;
    padding: 50px 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.brands-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brands-label {
    color: var(--slate-600);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-right: 2px solid var(--slate-200);
    padding-right: 50px;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--slate-500);
    transition: all 0.3s;
    letter-spacing: -0.02em;
}

.brand-name:hover {
    color: var(--plum-700);
    transform: scale(1.05);
}

/* ========================================
   GALLERY (workshop)
   ======================================== */
.workshop-section {
    background: var(--paper);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    grid-auto-rows: 200px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    background: var(--slate-200);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 15, 36, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Asymmetric layout */
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 4; }
.gallery-item:nth-child(8) { grid-column: span 4; }
.gallery-item:nth-child(9) { grid-column: span 4; }

@media (max-width: 900px) {
    .gallery {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
    .gallery-item:nth-child(2) { grid-column: span 2; }
    .gallery-item:nth-child(3) { grid-column: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 3; }
    .gallery-item:nth-child(5) { grid-column: span 3; }
    .gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 1; }
    .gallery-item:nth-child(7) { grid-column: span 3; }
    .gallery-item:nth-child(8) { grid-column: span 3; }
    .gallery-item:nth-child(9) { grid-column: span 3; }
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }
    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; }
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */
.content-block {
    background: white;
}

.content-section {
    margin-bottom: 60px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--plum-950);
    display: flex;
    align-items: center;
    gap: 16px;
}

.content-section h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--amber-500);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    margin-top: 30px;
    color: var(--plum-800);
}

.content-section p {
    color: var(--slate-700);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.content-section ul {
    margin: 16px 0;
    padding: 0;
    list-style: none;
}

.content-section ul li {
    padding: 10px 0 10px 32px;
    color: var(--slate-700);
    position: relative;
    border-bottom: 1px solid var(--slate-100);
    font-size: 16.5px;
}

.content-section ul li:last-child {
    border-bottom: none;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 18px;
    height: 18px;
    background: var(--plum-100);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234f377d'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.callout {
    background: linear-gradient(135deg, var(--plum-50), var(--paper));
    border: 1px solid var(--plum-100);
    border-left: 4px solid var(--plum-600);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.callout strong {
    color: var(--plum-900);
}

.callout-amber {
    background: linear-gradient(135deg, var(--amber-100), #fef9ec);
    border-color: var(--amber-300);
    border-left-color: var(--amber-600);
}

.callout-amber strong {
    color: var(--amber-600);
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--plum-700);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    margin: 0 4px;
}

/* Two-column content */
.two-col {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.two-col-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 90px;
}

.two-col-image img {
    width: 100%;
    height: auto;
    display: block;
}

.two-col-image-caption {
    background: var(--plum-900);
    color: var(--plum-100);
    padding: 14px 18px;
    font-size: 14px;
    font-style: italic;
}

/* Pricing card */
.pricing-card {
    background: linear-gradient(135deg, var(--plum-900), var(--plum-800));
    color: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(224, 158, 61, 0.3), transparent 70%);
    border-radius: 50%;
}

.pricing-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.pricing-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--plum-100);
    font-size: 15.5px;
}

.pricing-card .price-row:last-child {
    border-bottom: none;
}

.pricing-card .price-amount {
    color: var(--amber-400);
    font-weight: 700;
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
}

/* ========================================
   PROJECT CARD
   ======================================== */
.project-section {
    background: var(--paper);
}

.project-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.project-content {
    padding: 36px;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--plum-100);
    color: var(--plum-800);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.project-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}

.project-content p {
    color: var(--slate-700);
    margin-bottom: 16px;
    font-size: 16.5px;
    line-height: 1.7;
}

.project-quote {
    font-style: italic;
    color: var(--plum-700);
    border-left: 3px solid var(--amber-500);
    padding-left: 18px;
    margin-top: 24px;
    font-size: 17px;
}

/* ========================================
   TOOLS PAGE
   ======================================== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.tool-category {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}

.tool-category:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-200);
    transform: translateY(-3px);
}

.tool-cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--slate-100);
}

.tool-cat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    flex-shrink: 0;
}

.tool-cat-icon svg {
    width: 22px;
    height: 22px;
}

.tool-category h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--plum-950);
    margin: 0;
}

.tool-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-category li {
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: padding 0.2s;
}

.tool-category li:last-child {
    border-bottom: none;
}

.tool-category li:hover {
    padding-left: 6px;
}

.tool-category li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.tool-category a {
    color: var(--slate-800);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    flex: 1;
    font-size: 15.5px;
}

.tool-category a:hover {
    color: var(--plum-700);
}

.tool-category .tool-meta {
    color: var(--slate-500);
    font-size: 13px;
    margin-left: 4px;
}

.tool-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-100);
}

.tool-screenshot {
    background: var(--paper);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
}

.tool-screenshot img {
    border-radius: var(--radius-sm);
    margin: 0 auto;
    max-height: 120px;
    object-fit: contain;
}

.tool-screenshot .caption {
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--slate-600);
    font-weight: 500;
}

/* ========================================
   PRIVACY PAGE
   ======================================== */
.privacy-content {
    max-width: 820px;
    margin: 0 auto;
}

.privacy-summary {
    background: linear-gradient(135deg, var(--plum-50), white);
    border: 1px solid var(--plum-100);
    border-left: 4px solid var(--plum-600);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
}

.privacy-summary-icon {
    width: 44px;
    height: 44px;
    background: var(--plum-700);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-summary-icon svg {
    width: 22px;
    height: 22px;
}

.privacy-summary p {
    margin: 0;
    color: var(--plum-950);
    font-size: 16px;
    line-height: 1.65;
}

.privacy-summary strong {
    color: var(--plum-700);
    font-weight: 700;
}

.privacy-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--plum-950);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--plum-100);
    display: flex;
    align-items: center;
    gap: 14px;
}

.privacy-content h2::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--amber-500);
    border-radius: 2px;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: var(--slate-700);
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 16.5px;
}

.privacy-content ul {
    margin: 16px 0;
    padding: 0 0 0 20px;
}

.privacy-content ul li {
    color: var(--slate-700);
    padding: 6px 0;
    line-height: 1.6;
}

.privacy-content a {
    color: var(--plum-700);
    text-decoration: underline;
    text-decoration-color: var(--plum-200);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

.privacy-content a:hover {
    text-decoration-color: var(--plum-700);
}

/* ========================================
   FACILITEITEN PAGE — work in progress
   ======================================== */
.coming-soon-hero {
    text-align: center;
    margin-bottom: 60px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber-100);
    color: var(--amber-600);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid var(--amber-300);
    letter-spacing: 0.02em;
}

.coming-soon-badge svg {
    width: 16px;
    height: 16px;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coming-soon-hero h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.coming-soon-hero p {
    font-size: 18px;
    color: var(--slate-700);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.6;
}

.facility-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.facility-item {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.facility-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-200);
}

.facility-item .facility-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(99, 71, 160, 0.25);
}

.facility-item .facility-icon svg {
    width: 26px;
    height: 26px;
}

.facility-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--plum-950);
    margin-bottom: 10px;
}

.facility-item p {
    color: var(--slate-700);
    font-size: 15.5px;
    line-height: 1.6;
}

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
    background: var(--plum-950);
    color: white;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99, 71, 160, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(224, 158, 61, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.cta-band-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-band h2 {
    color: white;
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.cta-band h2 .accent {
    color: var(--amber-400);
    font-style: italic;
    font-weight: 500;
}

.cta-band p {
    color: var(--plum-200);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
    background: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--plum-950);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--slate-100);
}

.contact-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-list li:first-child {
    padding-top: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--plum-50);
    border: 1px solid var(--plum-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details strong {
    display: block;
    color: var(--plum-950);
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.contact-details a,
.contact-details span {
    color: var(--slate-700);
    text-decoration: none;
    font-size: 15.5px;
    word-break: break-word;
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--plum-700);
}

.contact-details .small {
    display: block;
    font-size: 13px;
    color: var(--slate-500);
    margin-top: 2px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact-actions .btn {
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
footer.site-footer {
    background: var(--plum-950);
    color: var(--slate-300);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

footer.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amber-500), transparent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand .footer-logo img {
    height: 56px;
    background: white;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.footer-brand .footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: white;
}

.footer-brand .footer-logo-text small {
    display: block;
    font-size: 12px;
    color: var(--plum-300);
    font-weight: 400;
    margin-top: 2px;
}

.footer-brand p {
    color: var(--slate-400);
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-300);
    transition: all 0.2s;
    text-decoration: none;
}

.footer-social:hover {
    background: var(--plum-700);
    color: white;
    border-color: var(--plum-600);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
    color: var(--slate-400);
    font-size: 14.5px;
    line-height: 1.6;
}

.footer-section a {
    color: var(--slate-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--amber-400);
}

.footer-meta {
    color: var(--slate-500);
    font-size: 13px;
    line-height: 1.6;
}

.footer-meta strong {
    color: var(--slate-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--slate-500);
    font-size: 13.5px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--slate-400);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--amber-400);
}

/* ========================================
   EXAMPLES GRID & REFERENCES
   ======================================== */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 24px;
}

.example-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.example-item .gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
}

.example-item p {
    font-size: 14.5px;
    color: var(--slate-700);
    font-style: italic;
    line-height: 1.55;
    margin: 0;
}

.example-item p a {
    color: var(--plum-700);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--plum-200);
    text-underline-offset: 2px;
}

.example-item p a:hover {
    color: var(--plum-800);
    text-decoration-color: var(--plum-700);
}

.references-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.references-list .reference-item {
    padding: 16px 0 16px 32px;
    border-bottom: 1px solid var(--slate-200);
    position: relative;
    line-height: 1.7;
    color: var(--slate-700);
    font-size: 16px;
}

.references-list .reference-item:last-child {
    border-bottom: none;
}

.references-list .reference-item::before {
    content: '▸';
    position: absolute;
    left: 6px;
    top: 16px;
    color: var(--amber-500);
    font-weight: 700;
    font-size: 14px;
}

.references-list .reference-item strong {
    color: var(--plum-950);
    font-weight: 700;
}

.references-list .reference-item a {
    color: var(--plum-700);
    text-decoration: underline;
    text-decoration-color: var(--plum-200);
    text-underline-offset: 2px;
    font-weight: 500;
}

.references-list .reference-item a:hover {
    color: var(--plum-800);
    text-decoration-color: var(--plum-700);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 9, 31, 0.95);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
    cursor: zoom-out;
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95%;
    max-height: 95vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close svg {
    width: 22px;
    height: 22px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .header-inner {
        padding: 14px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    nav.main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--plum-900);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.main-nav ul.open {
        display: flex;
    }

    nav.main-nav a {
        padding: 14px 18px;
        display: block;
        width: 100%;
    }

    nav.main-nav .nav-cta {
        margin: 8px 0 0 0;
        text-align: center;
    }

    /* Mobile submenu */
    nav.main-nav .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0;
        margin-left: 16px;
        box-shadow: none;
        border: none;
        padding: 4px;
    }

    nav.main-nav .has-submenu .caret {
        margin-left: auto;
    }

    nav.main-nav .has-submenu > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-floating-1 {
        left: -10px;
    }

    .hero-floating-2 {
        right: -10px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col-image {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .topbar-content {
        justify-content: center;
        font-size: 12.5px;
    }

    .topbar-left {
        gap: 14px;
    }

    .topbar-right {
        gap: 14px;
    }
}

@media (max-width: 700px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0 80px;
    }

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

    .stat-block {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
    }

    .stat-block:first-child {
        border-top: none;
        padding-top: 0;
    }

    .stats-grid {
        gap: 20px;
    }

    .brands-content {
        gap: 24px;
        flex-direction: column;
    }

    .brands-label {
        border-right: none;
        border-bottom: 2px solid var(--slate-200);
        padding-right: 0;
        padding-bottom: 16px;
    }
}

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

    .logo-text-title {
        font-size: 16px;
    }

    .logo-text-sub {
        font-size: 11px;
    }

    .logo-img {
        height: 44px;
    }

    .topbar-left span:not(.topbar-item) {
        display: none;
    }

    .privacy-summary {
        flex-direction: column;
    }

    .hero-floating {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-block {
        border: none;
    }
}
