/* assets/css/style.css */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-latin-variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

:root {
    --bg-base: #0B0C0D; /* Very dark anthracite/black */
    --bg-surface: #141618;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    
    --text-primary: #F4F4F5;
    --text-secondary: #9CA3AF;
    
    --accent-green: #6A7B62; /* Muted olive green matching logo style */
    --accent-green-light: #8A9D81;
    --accent-green-glow: rgba(106, 123, 98, 0.2);
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Background overlay using tech_bg.png with animation */
body::before {
    content: '';
    position: fixed;
    top: -10%; left: -10%; width: 120vw; height: 120vh;
    background: url('../img/tech_bg.png') center / cover no-repeat;
    opacity: 0.35;
    z-index: -2;
    pointer-events: none;
    animation: bgDrift 30s ease-in-out infinite alternate;
}
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(180deg, rgba(11, 12, 13, 0.7) 0%, rgba(11, 12, 13, 0.55) 50%, rgba(11, 12, 13, 0.8) 100%);
    z-index: -1;
    pointer-events: none;
}

@keyframes bgDrift {
    0% {
        transform: scale(1) translate(0, 0);
    }
    33% {
        transform: scale(1.08) translate(-1.5%, -1%);
    }
    66% {
        transform: scale(1.04) translate(1%, -0.5%);
    }
    100% {
        transform: scale(1.1) translate(-0.5%, 1%);
    }
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
h1 em { font-style: italic; color: var(--accent-green-light); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section { padding: 8rem 0; position: relative; }

/* Buttons */
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2rem; border-radius: 8px; font-weight: 500;
    transition: var(--transition); cursor: pointer; border: 1px solid transparent;
}
.btn-primary {
    background-color: var(--accent-green);
    color: #fff;
    box-shadow: 0 4px 14px var(--accent-green-glow);
}
.btn-primary:hover {
    background-color: var(--accent-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 123, 98, 0.3);
}
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    padding: 1.5rem 0;
    background: rgba(11, 12, 13, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
header.scrolled {
    padding: 1rem 0;
    background: rgba(11, 12, 13, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 40px; display: block; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    background: var(--accent-green);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: var(--transition);
}
.nav-cta:hover {
    background: var(--accent-green-light);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.hero::after {
    content: ''; position: absolute; right: 0; top: 20%; width: 50%; height: 60%;
    background: radial-gradient(circle, var(--accent-green-glow) 0%, transparent 70%);
    filter: blur(80px); z-index: 0;
}
.hero-content {
    flex: 1; max-width: 600px; z-index: 2;
}
.pre-headline {
    color: var(--accent-green-light);
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 600; margin-bottom: 1rem; display: block;
}
.hero-sub {
    font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2rem;
}
.hero-trust {
    font-size: 0.875rem; color: var(--text-secondary); margin-top: 1.5rem; opacity: 0.8;
}
.hero-visual {
    flex: 1; position: relative; display: flex; justify-content: center; z-index: 2;
}
.hero-visual img {
    width: 100%; max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-green-glow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Glassmorphism Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}
.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}
.card p { color: var(--text-secondary); margin-bottom: 0;}

/* Section Specifics */
.section-header { max-width: 700px; margin-bottom: 4rem; }
.section-header p { color: var(--text-secondary); font-size: 1.125rem; }

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-green);
    background: rgba(106, 123, 98, 0.12);
    border: 1px solid rgba(106, 123, 98, 0.25);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* ─── BENTO GRID ────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
.bento-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.bento-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.bento-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.bento-img-card {
    position: relative;
    min-height: 350px;
}
.bento-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bento-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(11,12,13,0.9) 0%, transparent 100%);
}
.bento-img-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-green-light);
    margin-bottom: 0.5rem;
}
.bento-img-overlay p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
}
.bento-feature {
    padding: 1.75rem;
    flex: 1;
}
.bento-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}
.bento-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}
.bento-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ─── SERVICES LAYOUT ───────────────────────── */
.services-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.service-img-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
}
.service-img-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.service-banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(11,12,13,0.85) 0%, transparent 60%);
}
.service-banner-text span {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-green);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}
.focus-note {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ─── IMAGE SECTION (Fullwidth) ─────────────── */
.img-section {
    padding: 0;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.img-section-bg {
    position: absolute;
    inset: 0;
}
.img-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.img-section-overlay {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background: linear-gradient(to right, rgba(11,12,13,0.92) 30%, rgba(11,12,13,0.5) 70%, rgba(11,12,13,0.2) 100%);
}
.img-section-content {
    max-width: 550px;
}
.img-section-content h2 {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}
.img-section-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* ─── HARDWARE PILLS ────────────────────────── */
.hardware-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(106, 123, 98, 0.12);
    border: 1px solid rgba(106, 123, 98, 0.25);
    color: var(--accent-green-light);
    font-size: 0.875rem;
    font-weight: 500;
}
.eco-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* ─── CHECK LIST ────────────────────────────── */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}
.check-dot {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

/* ─── FÜR WEN GRID ──────────────────────────── */
.fuer-wen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.fuer-wen-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.fuer-wen-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(106, 123, 98, 0.3);
    transform: translateY(-4px);
}
.fuer-wen-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.fuer-wen-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--accent-green-light);
}
.fuer-wen-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* ─── WARUM SECTION ─────────────────────────── */
.warum-section {
    background: linear-gradient(135deg, rgba(106,123,98,0.08) 0%, rgba(11,12,13,0) 60%);
    border-top: 1px solid rgba(106,123,98,0.15);
    border-bottom: 1px solid rgba(106,123,98,0.15);
}
.warum-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.warum-content h2 {
    margin-bottom: 2rem;
}
.warum-pills {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.warum-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    color: var(--text-primary);
}
.warum-check {
    width: 28px;
    height: 28px;
    background: rgba(106,123,98,0.2);
    border: 1px solid rgba(106,123,98,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ─── SPLIT REVERSE ─────────────────────────── */
.split-layout-reverse {
    direction: rtl;
}
.split-layout-reverse > * {
    direction: ltr;
}

/* Pricing grid: enforce 2 columns on desktop, 1 column on mobile */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Thin Clients Layout */
.split-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.split-content ul { list-style: none; margin-top: 2rem; }
.split-content li {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
    color: var(--text-primary);
}
.split-content li::before {
    content: ''; display: block; width: 6px; height: 6px;
    background: var(--accent-green); border-radius: 50%;
}
.split-image img {
    width: 100%; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Target Audience */
.target-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }

/* Process Section */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.process-step { position: relative; padding: 2rem; background: var(--bg-surface); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05);}
.step-number { 
    font-size: 3rem; font-weight: 800; color: rgba(255, 255, 255, 0.05);
    position: absolute; top: 1rem; right: 1rem; line-height: 1;
}
.process-step h3 { color: var(--accent-green-light); margin-bottom: 0.5rem; position: relative; z-index: 2;}
.process-step p { color: var(--text-secondary); position: relative; z-index: 2; margin-bottom:0;}

/* Info Text Block */
.info-block {
    background: rgba(106, 123, 98, 0.1);
    border-left: 4px solid var(--accent-green);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}
.info-block p { margin-bottom: 0; color: var(--text-primary);}

/* CTA Section */
.cta-section {
    text-align: center; background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cta-section .section-header { margin: 0 auto 2rem; }

/* Footer */
footer { padding: 4rem 0; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.875rem; color: var(--text-secondary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 2rem;}
.footer-brand img { height: 32px; margin-bottom: 1rem; opacity: 0.8;}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a:hover { color: var(--text-primary); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto;}
details {
    background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px; overflow: hidden;
}
summary {
    padding: 1.5rem; font-weight: 500; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+'; font-size: 1.5rem; color: var(--accent-green); transition: transform 0.3s;
}
details[open] summary::after { transform: rotate(45deg); display: inline-block;}
.faq-content { padding: 0 1.5rem 1.5rem; color: var(--text-secondary); }

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fuer-wen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .split-layout { grid-template-columns: 1fr; }
    .split-layout-reverse { direction: ltr; }
    .hero { padding-top: 150px; text-align: center; }
    .hero .container { flex-direction: column; gap: 2rem; }
    .hero-content { margin-bottom: 2rem; }
    .btn-group { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .img-section-content { max-width: 100%; }
    .img-section-overlay { background: rgba(11,12,13,0.75); }
    .services-grid { grid-template-columns: 1fr; }
    .fuer-wen-grid { grid-template-columns: 1fr 1fr; }
}

/* --- FORMULAR KONFIGURATOR --- */
#anfrage { scroll-margin-top: 100px; }
.configurator-wrapper {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

/* Progress-Bar */
.progress-container {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 3rem;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: var(--accent-green);
    width: 0%;
    transition: width 0.4s ease-out;
    box-shadow: 0 0 10px var(--accent-green-glow);
}

/* Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-header { margin-bottom: 2.5rem; text-align: center; }
.step-header h3 { font-size: 2rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.step-header p { color: var(--text-secondary); }

/* Option Cards (Radio & Checkbox) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.option-label {
    display: block;
    cursor: pointer;
    position: relative;
}
.option-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.option-label:hover .option-card {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.option-label input:checked ~ .option-card {
    border-color: var(--accent-green);
    background: rgba(106, 123, 98, 0.1); /* accent-green with opacity */
    box-shadow: 0 0 0 1px var(--accent-green), 0 5px 20px var(--accent-green-glow);
}

/* Radio/Check indicator */
.indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-right: 1.5rem;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}
.option-label input[type="checkbox"] ~ .option-card .indicator {
    border-radius: 6px;
}
.option-label input:checked ~ .option-card .indicator {
    border-color: var(--accent-green);
}
.option-label input:checked ~ .option-card .indicator::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
}
.option-label input[type="checkbox"]:checked ~ .option-card .indicator::after {
    border-radius: 2px;
}
.option-title { font-weight: 500; font-size: 1.1rem; color: var(--text-primary); }

/* Standard Inputs */
.form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem;
    color: var(--text-secondary);
}
.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px var(--accent-green-glow);
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.2); }

textarea.form-control { resize: vertical; min-height: 120px; }

/* Navigation Buttons */
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Summary Box */
.summary-box {
    background: rgba(0,0,0,0.2);
    border-radius: 12px; padding: 2rem;
    margin-bottom: 2rem;
}
.summary-item { margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1rem;}
.summary-item:last-child { border-bottom: none; }
.summary-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-secondary); margin-bottom: 0.25rem;}
.summary-value { font-weight: 500; color: var(--text-primary); }
.recommended-package {
    background: linear-gradient(135deg, rgba(106, 123, 98, 0.2), rgba(106, 123, 98, 0.05));
    border: 1px solid var(--accent-green);
    padding: 1.5rem; border-radius: 12px; margin-bottom: 2rem;
}
.rp-label { font-size: 0.875rem; color: var(--accent-green-light); font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem;}
.rp-title { font-size: 1.5rem; font-weight: 700; color: #fff;}

.privacy-check {
    display: flex; gap: 1rem; align-items: flex-start;
    margin: 2rem 0; font-size: 0.9rem; color: var(--text-secondary);
}
.privacy-check input { margin-top: 0.3rem; }
.error-msg { color: #ff6b6b; font-size: 0.875rem; margin-top: 0.5rem; display: none; }

.success-message { text-align: center; padding: 4rem 2rem; }
.success-message svg { width: 80px; height: 80px; fill: var(--accent-green); margin-bottom: 2rem; }
.success-message h3 { font-size: 2.5rem; margin-bottom: 1rem; }

@media (max-width: 768px) {
    .configurator-wrapper { padding: 1.5rem 1rem; }
    .form-grid { grid-template-columns: 1fr; gap: 1rem; }
    .step-header h3 { font-size: 1.5rem; }
    .options-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .step-actions { flex-direction: column; gap: 1rem; }
    .step-actions .btn { width: 100%; }
    .pricing-grid { grid-template-columns: 1fr !important; }
    .summary-box { padding: 1.5rem; }
    .recommended-package { padding: 1rem; }
}

/* Animations */
[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
[data-animation="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}
