/* ============================================================
   derwebmacher.at — Dark Editorial Premium
   Apple-level polish · Fraunces 900 display · Warm Copper
   ============================================================ */

/* =================== DESIGN TOKENS =================== */
:root {
    /* Fusion Copper palette */
    --bg-deep:        #0a0908;
    --bg-void:        #050403;
    --bg-card:        #14110e;
    --bg-elevated:    #1d1814;
    --bg-hot:         #261f18;

    --copper:         #c99260;
    --copper-bright:  #e0a772;
    --copper-deep:    #8c6338;
    --copper-glow:    rgba(201, 146, 96, 0.55);

    --cream:          #f8efd9;
    --cream-muted:    #d4c3a4;
    --cream-dim:      #8a7b66;
    --cream-dimmer:   #5e5348;

    --border:         #26201a;
    --border-hot:     #3a2f24;
    --charcoal:       #1a1614;

    /* Legacy aliases for backwards compat */
    --bg-primary:     #0a0908;
    --bg-secondary:   #14110e;
    --text-primary:   #f8efd9;
    --text-secondary: #d4c3a4;
    --text-muted:     #8a7b66;
    --accent:         #c99260;
    --accent-hover:   #e0a772;
    --gold:           #c99260;
    --border-strong:  #3a2f24;

    /* Typography */
    --font-display:   'Fraunces', 'Archivo Black', Georgia, serif;
    --font-sans:      'Inter', -apple-system, 'Helvetica Neue', sans-serif;
    --font-serif:     'Fraunces', Georgia, serif;
    --font-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

    /* Spacing scale — generous Apple-level */
    --space-2xs:      0.375rem;
    --space-xs:       0.625rem;
    --space-sm:       1rem;
    --space-md:       1.75rem;
    --space-lg:       3.25rem;
    --space-xl:       5.5rem;
    --space-2xl:      9rem;
    --space-3xl:      13rem;

    /* Container widths */
    --container:      1280px;
    --container-wide: 1440px;
    --container-narrow: 880px;

    --radius:         3px;
    --radius-lg:      8px;
    --radius-xl:      16px;

    /* Motion */
    --ease:           cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-slow:      cubic-bezier(0.25, 1, 0.3, 1);
    --transition:     0.4s var(--ease);
    --transition-slow: 0.8s var(--ease-slow);
    --transition-fast: 0.2s var(--ease);

    /* Shadows */
    --shadow-xs:      0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-sm:      0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-md:      0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-lg:      0 32px 80px rgba(0, 0, 0, 0.6);
    --shadow-xl:      0 48px 120px rgba(0, 0, 0, 0.7);
    --copper-glow-shadow: 0 12px 48px rgba(201, 146, 96, 0.35);
}

/* =================== RESET =================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 5rem;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--cream-muted);
    background-color: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: default;
}

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

a {
    color: var(--copper);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.02;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.8rem, 7.2vw, 7rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.028em;
}

h2 {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.022em;
}

h3 {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.012em;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.008em;
}

p { margin-bottom: var(--space-sm); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section { padding: var(--space-2xl) 0; }

@media (max-width: 900px) {
    section { padding: var(--space-xl) 0; }
}

::selection {
    background: var(--copper);
    color: var(--bg-deep);
}

/* =================== TYPOGRAPHY UTILITIES =================== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: var(--space-md);
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--copper);
}

.eyebrow.center::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--copper);
}

.text-copper, .text-gold { color: var(--copper); }
.text-cream { color: var(--cream); }

.display-huge {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 8.4vw, 8rem);
    line-height: 0.96;
    letter-spacing: -0.028em;
    color: var(--cream);
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.15rem 2.6rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform var(--transition) var(--ease-spring),
                background var(--transition),
                border-color var(--transition),
                color var(--transition),
                box-shadow var(--transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    will-change: transform;
}

.btn-primary,
.btn-copper {
    background: var(--copper);
    color: var(--bg-deep);
    border-color: var(--copper);
    box-shadow: var(--copper-glow-shadow);
}

.btn-primary:hover,
.btn-copper:hover {
    background: var(--copper-bright);
    border-color: var(--copper-bright);
    color: var(--bg-deep);
    box-shadow: 0 18px 64px rgba(201, 146, 96, 0.55);
}

.btn-ghost,
.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(248, 239, 217, 0.25);
}

.btn-ghost:hover,
.btn-outline:hover {
    border-color: var(--copper);
    color: var(--copper);
}

.btn-lg {
    padding: 1.4rem 3.2rem;
    font-size: 1rem;
    letter-spacing: 0.16em;
}

.btn-arrow::after {
    content: '→';
    transition: transform var(--transition);
    display: inline-block;
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* Magnetic hover data hook */
.magnetic { display: inline-block; position: relative; }

/* =================== KILLER ANNOUNCEMENT BAR (top of page) =================== */
.killer-bar {
    position: relative;
    background: linear-gradient(90deg, var(--copper-deep) 0%, var(--copper) 50%, var(--copper-deep) 100%);
    color: var(--bg-deep);
    padding: 0.75rem var(--space-md);
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    z-index: 101;
    overflow: hidden;
}

.killer-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: killer-shine 6s linear infinite;
}

@keyframes killer-shine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.killer-bar strong {
    font-weight: 800;
    color: var(--bg-deep);
}

.killer-bar a {
    color: var(--bg-deep);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    margin-left: 0.3rem;
    font-weight: 800;
    transition: opacity var(--transition-fast);
}

.killer-bar a:hover {
    opacity: 0.7;
    color: var(--bg-deep);
}

.killer-bar .killer-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 640px) {
    .killer-bar { font-size: 0.72rem; padding: 0.6rem 1rem; }
}

/* Killer bar is in normal flow at the very top; header sticks below it */

/* =================== CURSOR GLOW (Apple hover feel) =================== */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(201, 146, 96, 0.10) 0%, rgba(201, 146, 96, 0.03) 35%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.6s var(--ease);
    opacity: 0;
    mix-blend-mode: screen;
    will-change: transform;
}

body.mouse-in .cursor-glow { opacity: 1; }

@media (max-width: 900px), (pointer: coarse) {
    .cursor-glow { display: none; }
}

/* =================== HEADER / NAV =================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.4rem 0;
    background: rgba(10, 9, 8, 0.78);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), padding var(--transition);
}

.site-header.scrolled {
    padding: 0.9rem 0;
    background: rgba(10, 9, 8, 0.96);
    border-bottom-color: var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.025em;
    line-height: 1;
    transition: color var(--transition-fast);
}

.logo span {
    color: var(--copper);
}

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

.nav-links a {
    color: var(--cream-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--cream);
    border-bottom-color: var(--copper);
}

.nav-cta {
    padding: 0.85rem 1.7rem !important;
    background: var(--copper);
    color: var(--bg-deep) !important;
    border-radius: var(--radius);
    font-weight: 800 !important;
    border-bottom: none !important;
    box-shadow: var(--copper-glow-shadow);
}

.nav-cta:hover {
    background: var(--copper-bright) !important;
    color: var(--bg-deep) !important;
    border-bottom-color: transparent !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 360px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--bg-card);
        padding: var(--space-xl) var(--space-md);
        transition: right var(--transition);
        border-left: 1px solid var(--border);
        gap: 1.8rem;
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: block; }
}

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem var(--space-md) var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: saturate(120%) contrast(108%) brightness(0.55);
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(10, 9, 8, 0.4) 0%, rgba(10, 9, 8, 0.85) 65%, rgba(10, 9, 8, 1) 100%),
        linear-gradient(180deg, rgba(10, 9, 8, 0.5) 0%, rgba(10, 9, 8, 0.7) 55%, rgba(10, 9, 8, 0.99) 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse 70% 55% at 50% 20%, rgba(201, 146, 96, 0.18), transparent 75%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1.3s var(--ease-slow);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin-bottom: var(--space-lg);
}

.hero-kicker::before,
.hero-kicker::after {
    content: '';
    display: inline-block;
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.hero h1 {
    margin-bottom: var(--space-md);
    font-size: clamp(2.8rem, 7.8vw, 7.4rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.028em;
    color: var(--cream);
}

.hero h1 .text-copper {
    display: block;
    color: var(--copper);
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--cream-muted);
    max-width: 720px;
    margin: var(--space-lg) auto var(--space-xl);
    line-height: 1.6;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream-dim);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-weight: 700;
    animation: bounce 2.8s ease-in-out infinite;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, var(--cream-dim), transparent);
    margin: 0.6rem auto 0;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(60px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
    50% { transform: translate(-50%, -10px); opacity: 1; }
}

/* =================== TRUST STRIP (new) =================== */
.trust-strip {
    padding: var(--space-lg) 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    padding: 0 var(--space-sm);
    position: relative;
}

.trust-item + .trust-item::before {
    content: '';
    position: absolute;
    left: calc(-0.5 * var(--space-md));
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--border-hot);
}

.trust-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
    color: var(--copper);
    letter-spacing: -0.035em;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

@media (max-width: 780px) {
    .trust-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .trust-item + .trust-item::before { display: none; }
    .trust-item + .trust-item { padding-top: var(--space-md); border-top: 1px solid var(--border); }
}

/* =================== SECTION HEADER =================== */
.section-header {
    text-align: center;
    max-width: 980px;
    margin: 0 auto var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--cream-muted);
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    max-width: 680px;
    margin: var(--space-md) auto 0;
    line-height: 1.65;
}

/* Legacy kicker alias */
.section-kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: var(--space-sm);
}

/* Accent line legacy */
.accent-line {
    display: block;
    width: 64px;
    height: 3px;
    background: var(--copper);
    margin: var(--space-sm) 0 var(--space-md);
    border: none;
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* Sticky section counter (top-left during a section) */
.section-counter {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-md);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--copper);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .section-counter { display: none; }
}

/* =================== PROBLEM =================== */
.section-problem {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (max-width: 900px) {
    .problem-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
}

.problem-card {
    background: var(--bg-card);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition);
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(201, 146, 96, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--copper);
    box-shadow: var(--shadow-lg), 0 0 56px rgba(201, 146, 96, 0.18);
}

.problem-card:hover::before { opacity: 1; }

.problem-icon {
    width: 44px;
    height: 44px;
    margin-bottom: var(--space-md);
    color: var(--copper);
    stroke-width: 1.4;
    transition: transform var(--transition);
}

.problem-card:hover .problem-icon {
    transform: scale(1.08) rotate(-4deg);
}

.problem-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.45rem;
}

.problem-card p {
    color: var(--cream-muted);
    font-size: 0.97rem;
    margin-bottom: 0;
    line-height: 1.65;
}

/* =================== SOLUTION =================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-xl);
    margin-top: var(--space-xl);
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 780px) {
    .solution-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

.solution-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    transition: transform var(--transition), border-color var(--transition);
}

.solution-item:hover {
    transform: translateX(6px);
    border-bottom-color: var(--copper);
}

.solution-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--copper);
    margin-top: 0.35rem;
    stroke-width: 2.8;
}

.solution-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 0.35rem;
    letter-spacing: -0.015em;
}

.solution-item p {
    font-size: 0.98rem;
    color: var(--cream-muted);
    margin: 0;
    line-height: 1.6;
}

/* =================== DEMO LINK =================== */
.section-demo {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.demo-mockup {
    margin: var(--space-lg) auto 0;
    max-width: 960px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition-slow);
    display: block;
    aspect-ratio: 16 / 9;
}

.demo-mockup:hover {
    transform: translateY(-8px) scale(1.012);
    border-color: var(--copper);
    box-shadow: var(--shadow-xl), 0 0 72px rgba(201, 146, 96, 0.28);
}

.demo-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-slow);
    filter: saturate(115%) contrast(108%);
}

.demo-mockup:hover img { transform: scale(1.06); }

.demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0) 30%, rgba(10, 9, 8, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-lg);
}

.demo-label {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    color: var(--cream);
    text-align: center;
    letter-spacing: -0.02em;
}

.demo-label .text-copper {
    color: var(--copper);
}

/* =================== PRICING =================== */
.section-pricing {
    border-top: 1px solid var(--border);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 980px) {
    .pricing-grid { grid-template-columns: 1fr; gap: var(--space-md); max-width: 560px; }
}

.pricing-card {
    background: var(--bg-card);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--copper);
    box-shadow: var(--shadow-md), 0 0 48px rgba(201, 146, 96, 0.15);
}

.pricing-card.featured {
    border: 1px solid var(--copper);
    background: linear-gradient(180deg, #1f1811 0%, #14110e 100%);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg), 0 0 56px rgba(201, 146, 96, 0.22);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 72px rgba(201, 146, 96, 0.32);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--copper);
    color: var(--bg-deep);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow: var(--copper-glow-shadow);
}

.pricing-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
}

.pricing-tagline {
    color: var(--cream-dim);
    font-size: 0.92rem;
    margin-bottom: var(--space-md);
    line-height: 1.45;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.2rem;
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 4.2rem;
    color: var(--cream);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
}

.pricing-price .period {
    color: var(--cream-dim);
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-regular {
    font-size: 0.78rem;
    color: var(--cream-dim);
    margin-top: 0;
    margin-bottom: var(--space-md);
}

.pricing-regular strong {
    color: var(--cream-muted);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.65rem 0;
    color: var(--cream-muted);
    font-size: 0.93rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li.disabled {
    color: var(--cream-dim);
    text-decoration: line-through;
    opacity: 0.55;
}

.pricing-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--copper);
    margin-top: 0.18rem;
    stroke-width: 3;
}

.pricing-x {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--cream-dim);
    margin-top: 0.18rem;
}

.pricing-cta {
    display: block;
    text-align: center;
    padding: 1rem;
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(248, 239, 217, 0.25);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all var(--transition);
}

.pricing-card.featured .pricing-cta {
    background: var(--copper);
    color: var(--bg-deep);
    border-color: var(--copper);
    box-shadow: var(--copper-glow-shadow);
}

.pricing-cta:hover {
    background: var(--copper);
    color: var(--bg-deep);
    border-color: var(--copper);
    transform: translateY(-2px);
}

/* =================== WORK SLIDER (auto-scroll client demos) =================== */
.section-work {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.section-work::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 120px;
    background: linear-gradient(90deg, var(--bg-deep), transparent);
    z-index: 2;
    pointer-events: none;
}

.section-work::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 120px;
    background: linear-gradient(270deg, var(--bg-deep), transparent);
    z-index: 2;
    pointer-events: none;
}

.work-slider {
    position: relative;
    margin-top: var(--space-xl);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.work-track {
    display: flex;
    gap: 1.75rem;
    width: fit-content;
    animation: work-marquee 72s linear infinite;
    will-change: transform;
}

.work-slider:hover .work-track,
.work-slider:focus-within .work-track {
    animation-play-state: paused;
}

@keyframes work-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 0.875rem)); }
}

.work-card {
    flex-shrink: 0;
    width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    text-decoration: none;
    color: inherit;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: var(--copper);
    box-shadow: var(--shadow-lg), 0 0 56px rgba(201, 146, 96, 0.25);
}

.work-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background: var(--bg-elevated);
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-slow);
    filter: saturate(108%) brightness(0.92);
}

.work-card:hover .work-card-image img {
    transform: scale(1.05);
    filter: saturate(118%) brightness(1);
}

.work-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 9, 8, 0.85) 100%);
    pointer-events: none;
}

.work-card-body {
    padding: 1.25rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
}

.work-card-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.3rem;
}

.work-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cream);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 0;
}

.work-card-location {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--cream-dim);
    margin: 0;
}

.work-card-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.4rem;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper);
    transition: all var(--transition);
}

.work-card:hover .work-card-arrow {
    background: var(--copper);
    color: var(--bg-deep);
    transform: rotate(-45deg);
}

.work-card-arrow svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .work-card { width: 300px; }
    .section-work::before, .section-work::after { width: 60px; }
}

/* Backdrop outline title (Lemonads-style big type behind content) */
.backdrop-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(6rem, 16vw, 18rem);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(201, 146, 96, 0.08);
    text-stroke: 1.5px rgba(201, 146, 96, 0.08);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    user-select: none;
}

/* =================== BESTELLSYSTEM SECTION (NEW!) =================== */
.section-bestellsystem {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.section-bestellsystem .container-wide {
    max-width: 100%;
}

.section-bestellsystem::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 146, 96, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.bestell-grid {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bestell-grid > * { min-width: 0; max-width: 100%; }

.bestell-text {
    text-align: center;
    max-width: 820px;
    margin: 0 auto var(--space-xl);
}

.bestell-text h2,
.bestell-text p {
    overflow-wrap: break-word;
    hyphens: auto;
}

.bestell-text .bestell-lead {
    margin: 0 auto;
    max-width: 680px;
}

.bestell-benefits-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) auto;
    max-width: 1200px;
}

.bestell-benefit {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
}

.bestell-benefit svg {
    width: 32px;
    height: 32px;
    color: var(--copper);
    margin: 0 auto 0.75rem;
    display: block;
    stroke-width: 2;
}

.bestell-benefit h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.bestell-benefit p {
    font-size: 0.85rem;
    color: var(--cream-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .bestell-benefits-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .bestell-benefits-row { grid-template-columns: 1fr; }
}

.bestell-cards {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.bestell-cards > * {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 860px) {
    .bestell-cards { grid-template-columns: minmax(0, 1fr); max-width: 440px; }
}

.bestell-text h2 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.02;
    margin-bottom: var(--space-md);
}

.bestell-text h2 .text-copper {
    display: block;
    color: var(--copper);
}

.bestell-lead {
    color: var(--cream-muted);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: var(--space-lg);
    max-width: 560px;
}

.bestell-benefits {
    list-style: none;
    margin-bottom: var(--space-lg);
    display: grid;
    gap: 0.9rem;
}

.bestell-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.bestell-benefits svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--copper);
    margin-top: 0.2rem;
    stroke-width: 3;
}

.bestell-benefits strong {
    color: var(--cream);
    font-weight: 700;
    margin-right: 0.3rem;
}

.bestell-card {
    background: var(--bg-card);
    border: 1px solid var(--border-hot);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    position: relative;
    box-shadow: var(--shadow-md);
    width: 100%;
    box-sizing: border-box;
    transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.bestell-card:hover {
    transform: translateY(-8px);
    border-color: var(--copper);
    box-shadow: var(--shadow-lg), 0 0 48px rgba(201, 146, 96, 0.2);
}

.bestell-card.featured {
    background: linear-gradient(180deg, #1f1811 0%, #14110e 100%);
    border-color: var(--copper);
    box-shadow: var(--shadow-lg), 0 0 64px rgba(201, 146, 96, 0.25);
    transform: scale(1.03);
}

.bestell-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(201, 146, 96, 0.35);
}

@media (max-width: 860px) {
    .bestell-card.featured { transform: none; }
    .bestell-card.featured:hover { transform: translateY(-6px); }
}

.bestell-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--copper), transparent 50%, var(--copper));
    opacity: 0.3;
    z-index: -1;
}

.bestell-badge {
    display: inline-block;
    background: var(--copper);
    color: var(--bg-deep);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: var(--space-md);
    box-shadow: var(--copper-glow-shadow);
}

.bestell-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.bestell-card .price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: var(--space-md) 0 0.3rem;
}

.bestell-card .amount {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.bestell-card .period {
    color: var(--cream-dim);
    font-size: 0.95rem;
    font-weight: 500;
}

.bestell-card .sub {
    color: var(--cream-dim);
    font-size: 0.85rem;
    margin-bottom: var(--space-lg);
}

.bestell-card .sub strong {
    color: var(--cream-muted);
}

.bestell-card ul {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.bestell-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.55rem 0;
    color: var(--cream-muted);
    font-size: 0.93rem;
    border-bottom: 1px solid var(--border);
}

.bestell-card ul li:last-child { border-bottom: none; }

.bestell-card ul svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--copper);
    margin-top: 0.18rem;
    stroke-width: 3;
}

.bestell-card .btn {
    width: 100%;
    padding: 1.1rem;
}

/* =================== PROCESS =================== */
.section-process {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    counter-reset: step;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 860px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.process-step {
    position: relative;
    padding: var(--space-md) 0;
    counter-increment: step;
    transition: transform var(--transition);
}

.process-step:hover {
    transform: translateY(-6px);
}

.process-step::before {
    content: '0' counter(step);
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4.5rem;
    color: var(--copper);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.process-step h4 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.process-step p {
    color: var(--cream-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    max-width: 240px;
}

/* =================== FAQ =================== */
.faq-grid {
    max-width: 820px;
    margin: var(--space-xl) auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-bottom-color: var(--copper);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: var(--space-md) 0;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
    letter-spacing: -0.015em;
    gap: var(--space-md);
}

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

.faq-item summary:hover {
    color: var(--copper);
}

.faq-item summary::after {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--copper);
    border-radius: 50%;
    background-image: linear-gradient(var(--copper), var(--copper)), linear-gradient(var(--copper), var(--copper));
    background-size: 11px 2px, 2px 11px;
    background-position: center, center;
    background-repeat: no-repeat;
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    background-size: 11px 2px, 0 0;
    transform: rotate(180deg);
}

.faq-item p {
    color: var(--cream-muted);
    padding: 0 0 var(--space-md);
    margin: 0;
    line-height: 1.7;
    max-width: 680px;
}

/* =================== CONTACT =================== */
.section-contact {
    background: var(--bg-elevated);
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 146, 96, 0.06), transparent 55%);
    pointer-events: none;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1040px;
    margin: var(--space-xl) auto 0;
    position: relative;
}

@media (max-width: 780px) {
    .contact-methods { grid-template-columns: 1fr; }
}

.contact-method {
    background: var(--bg-card);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition);
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 146, 96, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.contact-method:hover {
    border-color: var(--copper);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 48px rgba(201, 146, 96, 0.18);
}

.contact-method:hover::before { opacity: 1; }

.contact-method svg {
    width: 34px;
    height: 34px;
    color: var(--copper);
    margin-bottom: var(--space-sm);
    stroke-width: 1.6;
    transition: transform var(--transition);
}

.contact-method:hover svg {
    transform: scale(1.1);
}

.contact-method h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.6rem;
}

.contact-method .value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: -0.015em;
    display: block;
}

/* =================== FOOTER =================== */
.site-footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--bg-void);
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--cream-dim);
    font-size: 0.9rem;
}

.site-footer .logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.025em;
    display: block;
    margin-bottom: 0.8rem;
}

.site-footer .logo span {
    color: var(--copper);
}

.footer-links {
    margin-top: var(--space-md);
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.footer-links a {
    color: var(--cream-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.18em;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--copper);
}

/* =================== SCROLL-REVEAL ANIMATIONS =================== */
.fade-in,
.reveal-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s var(--ease-slow), transform 0.9s var(--ease-slow);
    will-change: opacity, transform;
}

.fade-in.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.9s var(--ease-slow), transform 0.9s var(--ease-slow);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease-slow), filter 0.9s var(--ease-slow), transform 0.9s var(--ease-slow);
}

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

/* Stagger children */
.stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-slow), transform 0.8s var(--ease-slow);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 120ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 360ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 600ms; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in, .reveal-up, .reveal-scale, .reveal-blur, .stagger > * {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* =================== MOBILE TWEAKS =================== */
@media (max-width: 640px) {
    body { font-size: 16px; }
    .hero {
        min-height: 92vh;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }
    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.4rem);
        letter-spacing: -0.04em;
    }
    .hero-sub {
        font-size: 1rem;
        margin: var(--space-md) auto var(--space-lg);
    }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .process-step::before { font-size: 3.4rem; }
    .bestell-card { padding: var(--space-md); }
    .bestell-card .amount { font-size: 4rem; }
    .faq-item summary { font-size: 1.15rem; }
    section { padding: var(--space-lg) 0 var(--space-xl); }
}
