/* ========================================
   REPUTATIONSTEAM - Premium Corporate Design
   Modern, Trustworthy, Professional
   ======================================== */

:root {
    /* Modern Blue Palette */
    --primary-blue: #1e3a8a;
    --primary-blue-light: #3b82f6;
    --primary-blue-dark: #1e40af;
    --accent-blue: #0ea5e9;

    /* Trust Colors */
    --success-green: #059669;
    --success-green-light: #10b981;

    /* Neutral Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --bg-subtle: #f8fafc;
    --bg-card: #ffffff;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1140px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* ========================================
   HEADER - Sticky Navigation
   ======================================== */

header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 39.6px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white) !important;
    padding: 14px 42px;
    line-height: 1;
    border: 2px solid var(--primary-blue-dark);
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.btn-nav:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-nav::after {
    display: none;
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: 0;
}

.burger div {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ========================================
   HERO SECTION - Premium Style
   ======================================== */

.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 900px;
    margin: 0 auto 28px;
    letter-spacing: -0.02em;
}

.hero-content .highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-subheadline strong {
    color: var(--text-primary);
}

/* Trust Badges - Premium */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.badge {
    background: var(--white);
    color: var(--text-primary);
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue-light);
}

/* Primary Button - Premium */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.45);
}

.btn-pulse {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
    }
    50% {
        box-shadow: 0 4px 20px rgba(30, 58, 138, 0.5);
    }
}

.hero-subtext-small {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 20px;
    font-weight: 500;
}

/* ========================================
   LEAD GENERATION LANDING PAGE
   ======================================== */

.lead-hero {
    padding: 72px 0 92px;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--white) 100%);
    overflow: hidden;
}

.lead-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 64px;
    align-items: center;
}

.lead-hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    max-width: 780px;
    margin-bottom: 24px;
}

.eyebrow {
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lead-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.18rem;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 34px;
}

.lead-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.lead-hero-actions span {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.lead-hero-visual {
    position: relative;
}

.lead-hero-visual img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.lead-visual-panel {
    position: absolute;
    left: -28px;
    right: 28px;
    bottom: 28px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.lead-visual-panel strong,
.lead-visual-panel span {
    display: block;
}

.lead-visual-panel strong {
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.lead-visual-panel span {
    color: var(--text-secondary);
    line-height: 1.5;
}

.narrow-container {
    max-width: 860px;
}

.narrow-container p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.lead-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lead-feature {
    min-height: 190px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    position: relative;
}

.lead-feature::before {
    content: '✓';
    color: var(--success-green);
    font-weight: 700;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    margin-bottom: 18px;
}

.lead-feature h3 {
    font-size: 1.02rem;
    margin-bottom: 10px;
}

.lead-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.lead-model-section {
    background: var(--white);
}

.lead-model-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 54px;
    align-items: center;
}

.lead-model-grid h2 {
    text-align: left;
}

.lead-model-grid p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.lead-model-box {
    padding: 36px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.lead-model-box h3,
.lead-model-box p,
.lead-model-box strong {
    color: var(--white) !important;
}

.lead-model-box h3 {
    margin-bottom: 18px;
}

.lead-model-box p {
    opacity: 0.96;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.industry-grid span {
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.lead-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.lead-step {
    position: relative;
    padding: 44px 26px 30px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.lead-step::before {
    content: attr(data-step);
    position: absolute;
    top: -18px;
    left: 26px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.lead-step h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.lead-step p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.lead-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 980px;
    margin: 48px auto 0;
}

.lead-faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.lead-faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.lead-faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.lead-form-wrapper form {
    text-align: left;
}

.two-column-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.compact-fields {
    align-items: start;
}

.privacy-consent {
    margin: 24px 0 30px;
}

.privacy-consent label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.privacy-consent input {
    margin-top: 4px;
    flex-shrink: 0;
}

.privacy-consent a {
    color: var(--primary-blue);
    font-weight: 700;
}

.lead-footer-block {
    max-width: 620px;
    margin: 0 auto 10px;
}

.lead-footer-block p {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 10px;
}

/* ========================================
   SECTIONS - General
   ======================================== */

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-subtle);
}

h2 {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    background: linear-gradient(180deg, #fef8f6 0%, var(--white) 100%);
}

.problem-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 50px 0;
}

.problem-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.problem-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.problem-item h3 {
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 700;
}

.problem-consequence {
    text-align: center;
    font-size: 1.2rem;
    margin: 50px 0 20px;
    color: var(--text-primary);
}

.problem-warning {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */

.solution-section {
    background: var(--bg-subtle);
}

.solution-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 500;
}

.highlight-big {
    color: var(--primary-blue);
    font-weight: 700;
}

.solution-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.highlight-box {
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    max-width: 700px;
    margin: 32px auto;
}

.process-images img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

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

.process-step {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue-light);
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.risk-section {
    padding: 80px 0;
}

.guarantee-badge-large {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-green-light) 100%);
    padding: 60px;
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.25);
    text-align: center;
}

.guarantee-badge-large .guarantee-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.guarantee-badge-large h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 32px;
}

.guarantee-points {
    margin: 32px 0;
}

.guarantee-points p {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 12px 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-statement {
    font-size: 1.2rem;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
    background: var(--white);
}

.trust-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.trust-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.trust-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.trust-statement {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 50px;
    font-style: italic;
    color: var(--text-muted);
    padding: 24px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CASE STUDIES
   ======================================== */

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

.case-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue-light);
}

.case-meta {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.case-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.case-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.case-result {
    margin-top: auto;
    padding: 14px 16px;
    background: rgba(5, 150, 105, 0.08);
    border-left: 4px solid var(--success-green);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ========================================
   METHOD SECTION
   ======================================== */

.method-section {
    background: var(--white);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}

.method-item {
    padding: 36px 32px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.method-item h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.method-item p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.method-note {
    max-width: 820px;
    margin: 40px auto 0;
    padding: 24px 28px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-left: 4px solid #f97316;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    line-height: 1.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue-light);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
    transition: background 0.3s ease;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
}

.faq-question:hover {
    background: var(--bg-subtle);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-subtle);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-blue);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-container {
    text-align: center;
}

.pricing-box {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    padding: 56px 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-blue);
    position: relative;
}

.pricing-box::before {
    content: 'EMPFOHLEN';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-features {
    list-style: none;
    margin: 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 16px 0;
    font-size: 1.05rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.btn-large {
    font-size: 1.05rem;
    padding: 20px 44px;
}

/* ========================================
   CONTACT FORM - Premium Multi-Step
   ======================================== */

.form-container h2 {
    margin-bottom: 50px;
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-subtle);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid var(--border-light);
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 6px rgba(30, 58, 138, 0.15);
}

.progress-step.completed .step-circle {
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-green-light) 100%);
    color: var(--white);
    border-color: var(--success-green);
}

.step-label {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.progress-step.active .step-label {
    color: var(--primary-blue);
}

.progress-step.completed .step-label {
    color: var(--success-green);
}

.progress-line {
    flex: 1;
    height: 3px;
    background-color: var(--border-light);
    margin: 0 16px;
    position: relative;
    top: -18px;
    border-radius: 2px;
}

.progress-line.completed {
    background: linear-gradient(90deg, var(--success-green) 0%, var(--success-green-light) 100%);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeSlideIn 0.4s ease;
}

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

.form-step h3 {
    text-align: center;
    margin-bottom: 36px;
    color: var(--text-primary);
    font-size: 1.3rem;
}

/* Review Options */
.review-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.review-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}

.option-card {
    padding: 36px 24px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.review-option input[type="radio"]:checked + .option-card {
    border-color: var(--primary-blue);
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.04) 0%, rgba(30, 58, 138, 0.08) 100%);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.15);
}

.review-option input[type="radio"]:focus-visible + .option-card {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.14);
}

.option-card:hover {
    border-color: var(--primary-blue-light);
    transform: translateY(-4px);
}

.option-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.option-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--bg-subtle);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

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

.form-input:focus {
    background-color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

/* Button Groups */
.button-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-subtle);
    color: var(--text-secondary);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    border-color: var(--text-muted);
}

.btn-next, .btn-prev {
    min-width: 160px;
}

.privacy-note {
    text-align: center;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hidden-field {
    display: none;
}

/* Final CTA Statement */
.final-cta-statement {
    text-align: center;
    margin-top: 64px;
    padding: 56px 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(30, 58, 138, 0.3);
}

.final-cta-statement h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-statement p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    opacity: 0.95;
}

.white-text {
    color: var(--white) !important;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 60px 0 24px;
    text-align: center;
}

.footer-content h3 {
    color: var(--white);
}

.footer-links {
    margin: 24px 0;
}

.footer-links a {
    margin: 0 20px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.copyright {
    margin-top: 32px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   STICKY CTA - Mobile
   ======================================== */

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    text-align: center;
}

.sticky-cta.is-visible {
    display: block;
}

.sticky-cta .btn-primary {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* ========================================
   SUCCESS PAGE
   ======================================== */

.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--white) 100%);
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 64px 56px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-green-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.success-card h1 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.success-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
}

.info-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.success-footer {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.success-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.success-footer a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.section .container h1 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: left;
}

.section .container h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.section .container p,
.section .container ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section .container ul {
    list-style-type: disc;
    margin-left: 24px;
    margin-bottom: 1rem;
}

.section .container .lead-feature p,
.section .container .lead-step p,
.section .container .lead-faq-item p,
.section .container .lead-model-box p {
    margin-bottom: 0;
}

.section .container .lead-feature p {
    font-size: 0.95rem;
    line-height: 1.65;
}

.section .container .lead-faq-item p,
.section .container .lead-step p {
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .lead-hero-grid,
    .lead-model-grid {
        grid-template-columns: 1fr;
    }

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

    .lead-feature-grid,
    .lead-steps,
    .lead-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    /* Navigation */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a::after {
        display: none;
    }

    .btn-nav {
        margin-top: 16px;
    }

    .burger {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 60px 0 80px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .lead-hero {
        padding: 54px 0 72px;
    }

    .lead-hero-grid {
        gap: 42px;
    }

    .lead-hero-actions {
        align-items: stretch;
    }

    .lead-hero-actions .btn-primary {
        width: 100%;
    }

    .lead-visual-panel {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .lead-model-grid h2 {
        text-align: center;
    }

    /* Grids */
    .process-grid,
    .problem-grid,
    .trust-grid,
    .method-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }

    .lead-feature-grid,
    .lead-steps,
    .lead-faq-grid,
    .two-column-fields {
        grid-template-columns: 1fr;
    }

    .lead-feature {
        min-height: auto;
    }

    .review-options {
        grid-template-columns: 1fr;
    }

    /* Form */
    .form-wrapper {
        padding: 32px 24px;
    }

    .step-circle {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .progress-line {
        margin: 0 8px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-next, .btn-prev {
        width: 100%;
    }

    /* Guarantee */
    .guarantee-badge-large {
        padding: 40px 28px;
    }

    .guarantee-badge-large h2 {
        font-size: 1.5rem;
    }

    /* Final CTA */
    .final-cta-statement {
        padding: 40px 24px;
    }

    .final-cta-statement h3 {
        font-size: 1.4rem;
    }

    /* Pricing */
    .pricing-box {
        padding: 40px 28px;
    }

    /* Success */
    .success-card {
        padding: 40px 28px;
    }

    .success-info {
        grid-template-columns: 1fr;
    }

    /* Add padding to body for sticky CTA */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .btn-primary {
        padding: 16px 24px;
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .option-number {
        font-size: 1.75rem;
    }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

.centered {
    text-align: center !important;
}

/* Smooth animations for all interactive elements */
*, *::before, *::after {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset transition for specific elements that need different timing */
a, button, .btn-primary, .btn-secondary, .option-card, .faq-item, .case-card, .method-item, .process-step, .trust-item, .problem-item {
    transition-duration: 0.3s;
}
