/* ================================================
   LAV — Luxus. Ästhetik. Vision.
   Numerologie: Tom 28/1 (Gold/Schwarz) + Bruder 22/4 (Silber)
   1=Sonne→Gold | 8=Saturn→Schwarz | 4=Rahu→Akzent | 3=Jupiter→Gold
   ================================================ */

:root {
    /* Saturn/8 = SCHWARZ (Tom's Wealth Number) */
    --bg-primary: #0A0A0A;
    --bg-secondary: #050505;
    --bg-card: #111111;
    --bg-card-hover: #1A1A1A;
    --text-primary: #ffffff;
    --text-secondary: #A8A8A8;
    --text-muted: #666666;

    /* Sonne/1 = GOLD (Tom's Life Path + Bruder's Glückszahl) */
    --accent-gold: #C9A84C;
    --accent-gold-light: #E2C66B;
    --accent-gold-dark: #A08530;

    /* Rahu/4 = Akzent (Bruder 22→4) — subtil, nicht dominant */
    --accent-navy: #1A1A2A;
    --accent-blue: #2A2A3F;

    /* Silber/22 Meisterzahl (Bruder) */
    --accent-silver: #C0C0C0;

    --gradient-main: linear-gradient(135deg, #C9A84C 0%, #E2C66B 40%, #A08530 100%);
    --gradient-gold-navy: linear-gradient(135deg, #C9A84C 0%, #1A1A1A 100%);
    --gradient-card: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, rgba(20, 20, 20, 0.04) 100%);
    --border-color: rgba(201, 168, 76, 0.12);
    --border-hover: rgba(201, 168, 76, 0.4);
    --nav-height: 80px;
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #0A0A0A 0%, #000 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cursor Glow — Gold */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-ct {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 0.15em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 10px;
    color: var(--accent-silver);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    display: none;
}

@media (min-width: 769px) {
    .logo-tagline {
        display: inline;
        margin-left: 12px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--accent-gold-light);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-main);
    border-radius: 100px;
    color: #0A0A0A !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.lang-toggle {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 4px;
    padding: 4px 10px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    margin-left: 8px;
}

.lang-toggle:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, rgba(26, 39, 68, 0.06) 40%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: rgba(201, 168, 76, 0.03);
    font-size: 13px;
    color: var(--accent-silver);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Hero Line Reveal Animation */
.hero-line {
    display: inline-block;
    overflow: visible;
    padding-bottom: 4px;
}

/* ===== MEGA PRICE DISPLAY ===== */
.mega-price {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto 32px;
}

.mega-price-inner {
    display: flex;
    align-items: baseline;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.mega-currency {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.7;
    animation: currency-float 3s ease-in-out infinite;
}

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

.mega-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(80px, 15vw, 140px);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #C9A84C 50%, #A08530 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    letter-spacing: -0.04em;
    text-shadow: 0 0 80px rgba(201, 168, 76, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.mega-price-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 0;
}

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

.mega-price-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    animation: ring-expand 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes ring-expand {
    0% { width: 150px; height: 150px; opacity: 0.5; }
    50% { width: 300px; height: 300px; opacity: 0; }
    100% { width: 150px; height: 150px; opacity: 0.5; }
}

.mega-price-sub {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 12px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Glowing CTA Button — Gold */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #C9A84C, #E2C66B, #A08530, #C9A84C);
    border-radius: inherit;
    z-index: -1;
    animation: btn-glow-anim 3s linear infinite;
    background-size: 300% 300%;
}

@keyframes btn-glow-anim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Particles — Gold */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(201, 168, 76, 0.35);
    border-radius: 50%;
    animation: particle-float linear infinite;
}

@keyframes particle-float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: #0A0A0A;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
    color: var(--text-secondary);
    background: none;
}

.btn-ghost:hover {
    color: var(--accent-gold-light);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    background: rgba(201, 168, 76, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Scroll Indicator — Gold */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* ========== LOGOS ========== */
.logos-section {
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge div {
    display: flex;
    flex-direction: column;
}

.trust-badge strong {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.trust-badge span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== SECTION HEADERS ========== */
.section-number {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
}

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

.service-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-gold);
}

.service-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.service-tags li {
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(201, 168, 76, 0.04);
    font-size: 12px;
    color: var(--accent-silver);
    border: 1px solid var(--border-color);
}

/* ========== PORTFOLIO ========== */
.portfolio {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.08);
}

.portfolio-large {
    grid-column: span 2;
}

/* Browser Frame */
.browser-frame {
    display: block;
    text-decoration: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    cursor: pointer;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #1A1A1A;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    color: #888;
    font-family: 'Inter', monospace;
}

.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28C840;
    margin-left: 6px;
    animation: pulse-dot 2s infinite;
}

.browser-preview {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}

.portfolio-large .browser-preview {
    height: 340px;
}

.browser-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.browser-frame:hover .browser-preview img {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.browser-frame:hover .preview-overlay {
    opacity: 1;
}

.preview-cta {
    padding: 14px 32px;
    border: 1.5px solid var(--accent-gold);
    border-radius: 100px;
    color: var(--accent-gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.browser-frame:hover .preview-cta {
    background: var(--accent-gold);
    color: #0A0A0A;
}

.browser-frame-live .browser-bar {
    background: linear-gradient(135deg, #1A1A1A, #1A1F1A);
    border-bottom-color: rgba(40, 200, 64, 0.1);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.portfolio-tags span {
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(201, 168, 76, 0.08);
    font-size: 11px;
    color: var(--accent-gold);
    font-weight: 500;
}

.portfolio-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.portfolio-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

.portfolio-link:hover {
    color: var(--accent-gold-light);
    transform: translateX(4px);
}

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

/* ========== PRICING ========== */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.price-card-featured {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, var(--bg-card) 100%);
    transform: scale(1.04);
}

.price-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-main);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #0A0A0A;
    white-space: nowrap;
}

.price-header {
    margin-bottom: 24px;
}

.price-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-gold);
}

.price-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
}

.price-plus {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.price-card .btn {
    width: 100%;
    justify-content: center;
}

/* ========== PROCESS ========== */
.process {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.step-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 18px;
    color: var(--accent-gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== KONTAKTFORMULAR ========== */
.cta-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--text-secondary) !important;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    margin-bottom: 0 !important;
}

.checkbox-label:hover {
    background: rgba(201, 168, 76, 0.03);
    border-color: var(--border-color);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-gold);
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ========== FOOTER ========== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

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

.footer-location {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-legal a {
    text-decoration: none;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

/* ========== ANIMATIONS ========== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .portfolio-large {
        grid-column: span 2;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .price-card-featured {
        transform: none;
    }

    .price-card-featured:hover {
        transform: translateY(-4px);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .portfolio-large {
        grid-column: span 1;
    }

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

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

    .contact-form {
        padding: 24px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding: 0 20px;
    }

    .trust-badge {
        width: 100%;
        padding: 16px 20px;
        background: rgba(201, 168, 76, 0.04);
        border: 1px solid rgba(201, 168, 76, 0.12);
        border-radius: 12px;
        gap: 16px;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .trust-badge:active {
        transform: scale(0.98);
        border-color: rgba(201, 168, 76, 0.3);
    }

    .trust-badge strong {
        font-size: 15px;
    }

    .trust-badge span {
        font-size: 13px;
    }

    .logos-section {
        padding: 32px 0;
    }

    .mega-price-inner {
        transform: scale(0.75);
    }

    .mega-price-sub {
        font-size: 14px !important;
        padding: 0 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        max-width: 100%;
        padding: 0 16px;
    }

    .price-card {
        padding: 28px 24px;
    }

    .price-value {
        font-size: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-sub {
        font-size: 15px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 24px;
    }

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

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

    .cta-box {
        padding: 48px 24px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .cursor-glow {
        display: none;
    }
}
