/* ==========================================================================
   G SPACE WEBSITE SERVICES — Global Stylesheet
   Farbpalette: Dunkelblau / Gold / Hellblau Akzent
   Look: hochwertig, 3D/Glossy, elegant
   ========================================================================== */

:root {
    /* Primärfarben */
    --color-bg-deep:       #050B1A;   /* Tiefes Nachtblau */
    --color-bg:            #0A1628;   /* Logo-Dunkelblau */
    --color-bg-elevated:   #0F1E36;   /* leicht angehoben für Cards */
    --color-bg-panel:      #13243F;   /* Panels / Sections */

    /* Gold-Gradient */
    --color-gold-dark:     #8B6B1F;
    --color-gold:          #D4AF37;
    --color-gold-light:    #F4E19C;
    --color-gold-bright:   #FFD86B;

    /* Hellblau Akzent (Raketenstrahl) */
    --color-cyan:          #4FC3F7;
    --color-cyan-bright:   #7DD8FF;
    --color-cyan-glow:     rgba(79, 195, 247, 0.35);

    /* Text */
    --color-text:          #EAEFF8;
    --color-text-muted:    #A9B4C8;
    --color-text-dim:      #6D7A93;

    /* Gradients */
    --grad-gold:           linear-gradient(135deg, #8B6B1F 0%, #D4AF37 35%, #F4E19C 55%, #D4AF37 75%, #8B6B1F 100%);
    --grad-gold-soft:      linear-gradient(135deg, #D4AF37 0%, #F4E19C 100%);
    --grad-bg:             radial-gradient(ellipse at top, #13243F 0%, #0A1628 45%, #050B1A 100%);
    --grad-cyan:           linear-gradient(90deg, transparent 0%, #4FC3F7 50%, transparent 100%);

    /* Shadows */
    --shadow-gold-glow:    0 0 24px rgba(212, 175, 55, 0.25), 0 0 48px rgba(212, 175, 55, 0.12);
    --shadow-cyan-glow:    0 0 20px rgba(79, 195, 247, 0.4);
    --shadow-card:         0 18px 40px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-inset-glossy: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.35);

    /* Layout */
    --container-max:       1200px;
    --radius-sm:           6px;
    --radius-md:           12px;
    --radius-lg:           20px;

    /* Typografie */
    --font-heading:        'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:           'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    background-image: var(--grad-bg);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animierter Sternen-Canvas */
#starfield {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

main,
section,
header,
footer {
    position: relative;
    z-index: 1;
}

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

a {
    color: var(--color-gold-light);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--color-gold-bright);
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: 0.03em;
}

h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.text-gold {
    background: var(--grad-gold);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.6));
}

/* ---------- Container & Utility ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-heading .eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2.5rem;
}

.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.section-heading .eyebrow::before {
    left: 0;
}

.section-heading .eyebrow::after {
    right: 0;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.section-heading p {
    max-width: 640px;
    margin: 1rem auto 0;
}

/* Dekorative Trenn-Linie wie im Logo */
.gold-divider {
    height: 2px;
    width: 140px;
    margin: 1.4rem auto 0;
    background: var(--grad-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    position: relative;
}

.gold-divider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-gold-bright);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.brand-tag {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-top: 4px;
}

.brand-schrift {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-left: 0;
    filter: drop-shadow(0 1px 6px rgba(212, 175, 55, 0.4));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-menu a {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 0.5rem 0;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-gold-light);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Burger */
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--color-gold);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.3rem;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   BUTTONS — 3D / Glossy Gold
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-gold);
    background-size: 200% auto;
    color: #1A1405;
    box-shadow:
        0 8px 20px rgba(139, 107, 31, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(80, 60, 10, 0.4);
    text-shadow: 0 1px 0 rgba(255, 230, 180, 0.5);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(212, 175, 55, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(80, 60, 10, 0.4);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-light);
    border: 1.5px solid var(--color-gold);
    box-shadow: inset 0 0 0 0 rgba(212, 175, 55, 0.15);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    box-shadow:
        0 0 22px rgba(212, 175, 55, 0.25),
        inset 0 0 0 1px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 85%;
    height: 160%;
    background: radial-gradient(ellipse at 35% 45%, rgba(212, 175, 55, 0.14), transparent 65%);
    mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 80%;
    height: 140%;
    background: radial-gradient(ellipse at 65% 55%, rgba(79, 195, 247, 0.1), transparent 68%);
    mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(79, 195, 247, 0.35);
    border-radius: 50px;
    background: rgba(79, 195, 247, 0.06);
}

.hero h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* Qualitative Trust-Signale (ersetzt numerische Stats) */
.stat-signal {
    font-size: 1.5rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-top: 0.5rem;
}

/* Hero-Visual: Logo mit Glow */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-logo-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 216, 107, 0.22), transparent 55%),
        radial-gradient(circle at 65% 70%, rgba(79, 195, 247, 0.18), transparent 55%);
    filter: blur(20px);
    z-index: 0;
    animation: pulse-glow 5s ease-in-out infinite;
}

.hero-logo-wrap img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55))
            drop-shadow(0 0 24px rgba(212, 175, 55, 0.28));
}

/* Dekorative umlaufende Ringe */
.hero-logo-wrap .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1;
}

.hero-logo-wrap .ring.ring-2 {
    inset: 1%;
    border: 1.5px dashed rgba(212, 175, 55, 0.20);
    animation: spin-slow 65s linear infinite;
}

.hero-logo-wrap .ring.ring-3 {
    inset: -8%;
    border: 1px solid rgba(79, 195, 247, 0.22);
    animation: spin-slow-rev 80s linear infinite;
}

.hero-logo-wrap .ring.ring-4 {
    inset: -16%;
    border: 1.5px dashed rgba(212, 175, 55, 0.15);
    animation: spin-slow-rev 100s linear infinite;
}

.planet-orbit {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    z-index: 2;
    animation: spin-slow 45s linear infinite;
}

.planet {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(147, 220, 255, 0.95), rgba(30, 140, 220, 0.9) 55%, rgba(10, 70, 140, 0.85));
    box-shadow:
        0 0 12px rgba(79, 195, 247, 0.85),
        0 0 24px rgba(79, 195, 247, 0.45),
        0 0 4px rgba(180, 230, 255, 0.9);
    transform: translate(-50%, -50%);
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

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

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

/* ==========================================================================
   CARDS — Services, Portfolio, About
   ========================================================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

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

.card {
    position: relative;
    background: linear-gradient(160deg, rgba(19, 36, 63, 0.85) 0%, rgba(15, 30, 54, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.9rem;
    box-shadow: var(--shadow-card), var(--shadow-inset-glossy);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 225, 156, 0.45), transparent);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 30% 0%, rgba(212, 175, 55, 0.08), transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(212, 175, 55, 0.15),
        var(--shadow-inset-glossy);
}

.card:hover::after {
    opacity: 1;
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(244, 225, 156, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-gold-light);
    fill: none;
    stroke-width: 1.8;
}

.card h3 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: 0.7rem;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover {
    color: var(--color-gold-bright);
    gap: 0.8rem;
}

/* Preis-Karte Variante */
.card-pricing {
    padding: 2.6rem 2rem;
}

.card-pricing.featured {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 0 32px rgba(212, 175, 55, 0.2),
        var(--shadow-inset-glossy);
}

.pricing-tier {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: 0.8rem;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin-bottom: 1.6rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.55rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
}

.pricing-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* ==========================================================================
   MODELLE — Neue Preissektion (STARTER / BUSINESS / SYSTEM)
   ========================================================================== */

/* Alleinstehendes 7. Service-Card zentrieren */
.grid-3 > .card-content-solo:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.card-model {
    display: flex;
    flex-direction: column;
    padding: 2.4rem 2rem 2rem;
    position: relative;
    overflow: visible; /* für Badge */
}

.card-model--featured {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.2),
        var(--shadow-inset-glossy);
    transform: translateY(-6px);
    z-index: 2;
}

.card-model--featured::before {
    background: linear-gradient(90deg, transparent, rgba(244, 225, 156, 0.7), transparent);
}

/* "Meistgewählt"-Badge oben mittig */
.model-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-gold);
    color: #1A1405;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 0.28rem 1.1rem;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(139, 107, 31, 0.4);
}

/* Große Nummer als Wasserzeichen */
.model-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.12;
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    user-select: none;
    pointer-events: none;
}

.model-name {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}

.model-tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.6rem;
    padding-left: 0.85rem;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
}

/* Abschnitte innerhalb der Karte */
.model-section {
    margin-bottom: 1.4rem;
}

.model-features-wrap {
    flex: 1; /* schiebt Pricing immer nach unten */
}

.model-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.55rem;
    font-weight: 600;
}

/* Ideal-für Tags */
.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.model-tags span {
    font-size: 0.76rem;
    padding: 0.22rem 0.65rem;
    border-radius: 50px;
    background: rgba(79, 195, 247, 0.07);
    border: 1px solid rgba(79, 195, 247, 0.22);
    color: var(--color-cyan);
    white-space: nowrap;
}

/* "Wenn"-Liste */
.model-when-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-when-list li {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    padding: 0.28rem 0 0.28rem 1.4rem;
    position: relative;
    line-height: 1.5;
}

.model-when-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.78rem;
    top: 0.32rem;
}

/* Preisbereich */
.model-pricing {
    margin-top: auto;
    padding: 1.3rem 0 1.2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    margin-bottom: 1.3rem;
}

.model-price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.model-price-block {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-price-sep {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
    flex-shrink: 0;
}

.model-price-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 0.15rem;
}

.model-price-value {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 700;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.model-price-sm {
    font-size: 1.25rem;
}

.model-price-hint {
    font-size: 0.73rem;
    color: var(--color-text-dim);
    margin-top: 0.18rem;
}

/* Vertrauenszeile unter dem Grid */
.pricing-trust {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: var(--color-text-dim);
}

/* ==========================================================================
   ABOUT / PORTFOLIO SPECIFIC
   ========================================================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-visual {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.25), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(79, 195, 247, 0.2), transparent 50%),
        linear-gradient(160deg, #13243F, #0A1628);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 20px rgba(212, 175, 55, 0.25));
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: linear-gradient(135deg, #0F1E36 0%, #13243F 100%);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.2);
}

.portfolio-mock {
    position: absolute;
    inset: 15%;
    border-radius: 8px;
    background: linear-gradient(160deg, rgba(79, 195, 247, 0.15), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}

.portfolio-mock::before {
    content: '';
    width: 30%;
    height: 8px;
    background: var(--grad-gold);
    border-radius: 2px;
    opacity: 0.8;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 11, 26, 0.95) 30%, transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Reales Portfolio-Item */
.portfolio-item--real {
    display: block;
    text-decoration: none;
    border-color: rgba(212, 175, 55, 0.35);
}

.portfolio-item--real:hover {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 28px rgba(212, 175, 55, 0.22);
}

.portfolio-mock--urban {
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, rgba(79,195,247,0.12), rgba(212,175,55,0.1));
}

.portfolio-domain {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: auto;
    height: auto;
    background-color: transparent;
}

/* "In Kürze"-Platzhalter */
.portfolio-item--soon,
.portfolio-item--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dashed;
    border-color: rgba(212, 175, 55, 0.2);
    background: transparent;
    cursor: default;
}

.portfolio-item--cta {
    text-decoration: none;
    cursor: pointer;
    border-color: rgba(212, 175, 55, 0.25);
}

.portfolio-item--cta:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.04);
    transform: translateY(-4px);
}

.portfolio-soon-inner {
    text-align: center;
    padding: 1rem;
}

.portfolio-soon-icon {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 0.8rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

.portfolio-soon-inner p {
    font-size: 0.88rem;
    color: var(--color-text-dim);
    line-height: 1.5;
    margin: 0;
}

.portfolio-cta-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
}

.portfolio-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold-light);
    margin-bottom: 0.3rem;
}

.portfolio-overlay span {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cyan);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info .info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding: 1.2rem;
    background: rgba(15, 30, 54, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-info .info-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(4px);
}

.info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold-light);
    fill: none;
    stroke-width: 1.8;
}

.info-content h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.info-content p,
.info-content a {
    color: var(--color-text);
    font-size: 1rem;
    margin: 0;
}

/* Form */
.contact-form {
    background: linear-gradient(160deg, rgba(19, 36, 63, 0.85), rgba(15, 30, 54, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card), var(--shadow-inset-glossy);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--color-text);
    background: rgba(5, 11, 26, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(5, 11, 26, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--font-body);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 1rem 0 1.5rem;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    margin-top: 3px;
    cursor: pointer;
}

.form-consent label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: normal;
    text-transform: none;
    margin: 0;
    line-height: 1.5;
    cursor: pointer;
}

.form-status {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    color: var(--color-cyan-bright);
}

.form-status.error {
    display: block;
    background: rgba(220, 80, 80, 0.1);
    border: 1px solid rgba(220, 80, 80, 0.3);
    color: #FF9999;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    background:
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.18), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(79, 195, 247, 0.12), transparent 60%),
        linear-gradient(135deg, #0F1E36 0%, #13243F 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold);
    opacity: 0.7;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.cta-banner p {
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* ==========================================================================
   PAGE HEADER (Subseiten)
   ========================================================================== */
.page-header {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.page-header h1 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.page-header .lead {
    max-width: 640px;
    margin: 0 auto;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--color-gold);
}

.breadcrumb span {
    color: rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    margin-top: 4rem;
    padding: 4rem 0 1.5rem;
    background:
        linear-gradient(to bottom, transparent, rgba(5, 11, 26, 0.7));
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: var(--grad-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1.2rem;
    font-size: 0.93rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.3rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: var(--color-text-muted);
    font-size: 0.93rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-col a:hover {
    color: var(--color-gold-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 1.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--color-gold-light);
    transition: all 0.25s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ==========================================================================
   LEGAL — Impressum / Datenschutz
   ========================================================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 2.8rem;
    padding-bottom: 2.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.4rem;
    margin-top: 0;
}

.legal-block h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 0.6rem;
    margin-top: 1.4rem;
    letter-spacing: 0.04em;
}

.legal-block h3:first-child {
    margin-top: 0;
}

.legal-block p,
.legal-block li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.legal-block ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.legal-block li {
    margin-bottom: 0.3rem;
}

.legal-block a {
    color: var(--color-gold);
    word-break: break-all;
}

.legal-block a:hover {
    color: var(--color-gold-bright);
}

.legal-note {
    display: block;
    margin-top: 1.2rem;
    padding: 0.9rem 1.1rem;
    background: rgba(79, 195, 247, 0.07);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-cyan);
    line-height: 1.6;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
    .hero-grid,
    .about-intro,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-wrap {
        max-width: 368px;
    }

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

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

@media (max-width: 960px) {
    .models-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-model--featured {
        transform: translateY(0);
    }

    /* 7. Service-Card: auf Tablet kein festes grid-column */
    .grid-3 > .card-content-solo:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }
}

@media (max-width: 680px) {
    .section {
        padding: 4rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
    }

    .grid-3,
    .grid-2,
    .portfolio-grid,
    .values {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

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

/* ==========================================================================
   RAKETEN-CURSOR — JS-DOM-Element (cursor: none, Bild: images/curser.png)
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
    html, * {
        cursor: none !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        cursor: text !important;
    }
}

/* Das DOM-Element #rocket-cursor */
#rocket-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 64px;
    height: 64px;
    pointer-events: none;
    z-index: 999999;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

#rocket-cursor img {
    width: 64px;
    height: 64px;
    display: block;
    pointer-events: none;
}

/* Schub-Flamme (Düse der Rakete zeigt nach unten-rechts) */
.cursor-exhaust {
    position: absolute;
    bottom: 11px;
    right: 17px;
    width: 10px;
    height: 14px;
    transform-origin: 50% 0%;
    transform: rotate(135deg);
}

.flame-inner {
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 70% 70%;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #93e0ff 25%,
        #4fc3f7 55%,
        #0288d1 100%
    );
    opacity: 0.15;
    filter: blur(2px);
}

.flame-glow {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(79, 195, 247, 0.5) 0%,
        transparent 70%
    );
    opacity: 0.12;
    filter: blur(5px);
}

/* Bewegungszustand — Flamme wird sichtbar und flackert */
#rocket-cursor.cursor-moving .flame-inner {
    opacity: 1;
    animation: exhaust-flicker 0.28s ease-in-out infinite alternate;
}

#rocket-cursor.cursor-moving .flame-glow {
    opacity: 1;
    animation: exhaust-glow 0.45s ease-in-out infinite alternate;
}

@keyframes exhaust-flicker {
    0%   { opacity: 0.7;  transform: scaleX(0.82) scaleY(0.88); }
    100% { opacity: 1;    transform: scaleX(1.18) scaleY(1.12); }
}

@keyframes exhaust-glow {
    0%   { opacity: 0.55; transform: scale(0.88); }
    100% { opacity: 1;    transform: scale(1.25); }
}

/* ==========================================================================
   KLICK-ANIMATION — Ringe am Klickpunkt
   ========================================================================== */
.cursor-click-fx {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(79, 195, 247, 0.95);
    box-shadow: 0 0 8px rgba(79, 195, 247, 0.8);
    transform: translate(-50%, -50%);
    animation: click-burst 0.55s ease-out forwards;
}

.cursor-click-fx::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(79, 195, 247, 0.7);
    transform: translate(-50%, -50%);
    animation: click-ring 0.55s ease-out forwards;
}

.cursor-click-fx::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transform: translate(-50%, -50%);
    animation: click-ring 0.55s ease-out 0.07s forwards;
}

@keyframes click-burst {
    0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2.8); }
}

@keyframes click-ring {
    0%   { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0;   transform: translate(-50%, -50%) scale(3.2); }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(13, 25, 47, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.5);
    padding: 1rem 1.5rem;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.cookie-banner.hidden {
    transform: translateY(110%);
    pointer-events: none;
}

.cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 240px;
    font-size: 0.86rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.cookie-banner__text a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.3rem;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    line-height: 1;
}

.cookie-btn:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.cookie-btn--primary {
    background: var(--grad-gold);
    color: #0A1628;
    border: none;
}

.cookie-btn--outline {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--color-text-muted);
}

@media (max-width: 540px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        justify-content: flex-end;
    }
}
