/* =============================================
   EasySteuern - Landing Page Styles
   Design based on flyer: Dark teal + Beige/Cream
   ============================================= */

/* CSS Variables */
:root {
    /* Primary Colors - Dark Teal/Green from flyer */
    --color-primary: #1e3d3b;
    --color-primary-light: #2a524f;
    --color-primary-dark: #152b2a;

    /* Accent Colors - Gold/Orange highlights */
    --color-accent: #d4a574;
    --color-accent-light: #e5c4a3;
    --color-accent-dark: #b8895a;

    /* Background Colors - Beige/Cream tones */
    --color-bg-light: #f8f5f0;
    --color-bg-cream: #ece6dc;
    --color-bg-beige: #e5ddd0;

    /* Text Colors */
    --color-text: #1e3d3b;
    --color-text-light: #4a635f;
    --color-text-muted: #6b7f7c;
    --color-text-white: #ffffff;

    /* Status Colors */
    --color-success: #2d6a4f;
    --color-error: #c1292e;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(30, 61, 59, 0.05);
    --shadow-md: 0 4px 6px rgba(30, 61, 59, 0.07);
    --shadow-lg: 0 10px 25px rgba(30, 61, 59, 0.1);
    --shadow-xl: 0 20px 40px rgba(30, 61, 59, 0.15);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* =============================================
   Navigation
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-primary);
    padding: var(--spacing-sm) 0;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

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

.logo-highlight {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--color-text-white);
    font-weight: 500;
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.nav-links a:hover {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-white);
    border-radius: 2px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-nav {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1.25rem;
}

.btn-nav:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    background: var(--color-primary);
    padding: calc(80px + var(--spacing-xxl)) 0 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding-bottom: var(--spacing-xxl);
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    color: var(--color-text-white);
    margin-bottom: var(--spacing-lg);
}

.hero-text h1 .highlight {
    color: var(--color-accent);
    font-style: italic;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.badge .icon {
    width: 16px;
    height: 16px;
}

.badge-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.badge-secondary {
    background: transparent;
    border: 2px solid var(--color-text-white);
    color: var(--color-text-white);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Illustration - Animated Scene */
.hero-illustration {
    position: relative;
    width: 400px;
    height: 350px;
}

.central-dashboard {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    filter: drop-shadow(0 20px 40px rgba(30, 61, 59, 0.3));
    animation: float-gentle 6s ease-in-out infinite;
}

.central-dashboard svg {
    width: 100%;
    height: auto;
}

/* Floating Documents */
.floating-doc {
    position: absolute;
    filter: drop-shadow(0 8px 20px rgba(30, 61, 59, 0.15));
    color: var(--color-primary);
}

.floating-doc svg {
    width: 100%;
    height: auto;
}

.doc-1 {
    width: 80px;
    top: 10%;
    left: 0;
    animation: float-doc-1 5s ease-in-out infinite;
}

.doc-2 {
    width: 70px;
    top: 55%;
    left: -5%;
    animation: float-doc-2 6s ease-in-out infinite 0.5s;
}

/* Floating Coin */
.floating-coin {
    position: absolute;
    width: 55px;
    top: 5%;
    right: 10%;
    filter: drop-shadow(0 6px 15px rgba(212, 165, 116, 0.4));
    animation: float-coin 4s ease-in-out infinite;
}

.floating-coin svg {
    width: 100%;
    height: auto;
}

/* Floating Cloche (Gastro Icon) */
.floating-cloche {
    position: absolute;
    width: 80px;
    bottom: 15%;
    right: 0;
    color: var(--color-accent-light);
    animation: float-cloche 5s ease-in-out infinite 1s;
}

.floating-cloche svg {
    width: 100%;
    height: auto;
}

/* Floating Checkmark */
.floating-check {
    position: absolute;
    width: 50px;
    bottom: 5%;
    left: 15%;
    filter: drop-shadow(0 4px 10px rgba(45, 106, 79, 0.3));
    animation: pop-check 3s ease-in-out infinite;
}

.floating-check svg {
    width: 100%;
    height: auto;
}

/* Decorative Dots */
.deco-dots {
    position: absolute;
    top: 20%;
    right: 25%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deco-dots span {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-dot 2s ease-in-out infinite;
}

.deco-dots span:nth-child(2) {
    animation-delay: 0.3s;
    opacity: 0.4;
}

.deco-dots span:nth-child(3) {
    animation-delay: 0.6s;
    opacity: 0.2;
}

/* Animations */
@keyframes float-gentle {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes float-doc-1 {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes float-doc-2 {
    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(-12px) rotate(6deg);
    }
}

@keyframes float-coin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(5deg);
    }
    75% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

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

@keyframes pop-check {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    margin-bottom: -1px;
    z-index: 1;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   Features Section
   ============================================= */
.features {
    background: var(--color-bg-light);
    padding: var(--spacing-xxl) 0;
}

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

.feature-card {
    padding: var(--spacing-xl);
    background: var(--color-bg-light);
}

.feature-card-alt {
    background: var(--color-bg-cream);
}

/* Feature Illustrations */
.feature-illustration {
    width: 140px;
    height: 120px;
    margin-bottom: var(--spacing-md);
}

.feature-illustration svg {
    width: 100%;
    height: 100%;
}

/* Feature Card Animations */
.feature-card:hover .feature-illustration {
    transform: translateY(-5px);
}

.feature-illustration {
    transition: transform var(--transition-base);
}

/* Upload animation */
.feature-illustration .upload-arrow {
    animation: bounce-up 2s ease-in-out infinite;
}

.feature-illustration .float-doc-1 {
    animation: float-feature-doc 4s ease-in-out infinite;
}

.feature-illustration .float-doc-2 {
    animation: float-feature-doc 4.5s ease-in-out infinite 0.5s;
}

/* Team animation */
.feature-illustration .team-group {
    animation: subtle-bounce 6s ease-in-out infinite;
}

/* Price tag animation */
.feature-illustration .price-tag {
    animation: subtle-rotate 8s ease-in-out infinite;
}

.feature-illustration .savings-arrow {
    animation: pulse-scale 2.5s ease-in-out infinite;
}

.feature-illustration .sparkle-1,
.feature-illustration .sparkle-2 {
    animation: sparkle 2s ease-in-out infinite;
}

.feature-illustration .sparkle-2 {
    animation-delay: 0.7s;
}

/* Shield animation - shield stays still, security lines pulse */
.feature-illustration .security-lines {
    animation: security-pulse 2.5s ease-in-out infinite;
}

/* Feature Animation Keyframes */
@keyframes bounce-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float-feature-doc {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes pulse-pin {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes subtle-rotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

@keyframes coin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes security-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.feature-card h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* =============================================
   How It Works Section
   ============================================= */
.how-it-works {
    background: var(--color-primary);
    padding: var(--spacing-xxl) 0;
}

.section-title {
    text-align: center;
    color: var(--color-text-white);
    margin-bottom: var(--spacing-xl);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.step {
    text-align: center;
    padding: var(--spacing-lg);
}

/* Step Illustrations */
.step-illustration {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto var(--spacing-md);
}

.step-illustration svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.step-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* Step 1 Animations */
.step-illustration .scan-doc {
    animation: scan-float 3s ease-in-out infinite;
}

.step-illustration .upload-indicator {
    animation: pulse-scale 2s ease-in-out infinite;
}

/* Step 2 Animations */
.step-illustration .neural-network {
    animation: neural-pulse 3s ease-in-out infinite;
}

.step-illustration .orbit-1 {
    animation: orbit-top 8s linear infinite;
    transform-origin: 50px 45px;
}

.step-illustration .orbit-2 {
    animation: orbit-right 10s linear infinite reverse;
    transform-origin: 50px 45px;
}

.step-illustration .orbit-3 {
    animation: orbit-left 9s linear infinite;
    transform-origin: 50px 45px;
}

.step-illustration .processing-dots circle:nth-child(1) {
    animation: dot-pulse 1.5s ease-in-out infinite;
}

.step-illustration .processing-dots circle:nth-child(2) {
    animation: dot-pulse 1.5s ease-in-out infinite 0.3s;
}

.step-illustration .processing-dots circle:nth-child(3) {
    animation: dot-pulse 1.5s ease-in-out infinite 0.6s;
}

/* Step 3 Animations */
.step-illustration .clipboard {
    animation: clipboard-float 4s ease-in-out infinite;
}

.step-illustration .speech-bubble {
    animation: speech-pop 3s ease-in-out infinite;
}

.step-illustration .expert-star-1,
.step-illustration .expert-star-2 {
    animation: twinkle 2s ease-in-out infinite;
}

.step-illustration .expert-star-2 {
    animation-delay: 0.5s;
}

/* Step Animation Keyframes */
@keyframes scan-float {
    0%, 100% { transform: translate(0, 0) rotate(-3deg); }
    50% { transform: translate(5px, -8px) rotate(0deg); }
}

@keyframes neural-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes orbit-top {
    0% { transform: rotate(0deg) translateX(0) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(0) rotate(-360deg); }
}

@keyframes orbit-right {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbit-left {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

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

@keyframes clipboard-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

@keyframes speech-pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.step h3 {
    color: var(--color-text-white);
    margin-bottom: var(--spacing-sm);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* =============================================
   About Section
   ============================================= */
.about {
    background: var(--color-bg-cream);
    padding: var(--spacing-xxl) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-text h2 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.about-text > p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-accent-dark);
    margin-top: 2px;
}

.about-list span {
    color: var(--color-text);
}

.about-list strong {
    color: var(--color-primary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =============================================
   Contact Section
   ============================================= */
.contact {
    background: var(--color-primary);
    padding: var(--spacing-xxl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.contact-info h2 {
    color: var(--color-text-white);
    margin-bottom: var(--spacing-md);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    color: var(--color-text-white);
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-form-wrapper > p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-bg-cream);
    border-radius: var(--radius-md);
    background: var(--color-text-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 61, 59, 0.1);
}

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

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: var(--color-accent-dark);
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.alert svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(45, 106, 79, 0.1);
    color: var(--color-success);
}

.alert-error {
    background: rgba(193, 41, 46, 0.1);
    color: var(--color-error);
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--color-primary-dark);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-text-white);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-illustration {
        width: 350px;
        height: 300px;
    }

    .central-dashboard {
        width: 240px;
    }

    .doc-1 {
        width: 70px;
    }

    .doc-2 {
        width: 60px;
    }

    .floating-coin {
        width: 45px;
    }

    .floating-cloche {
        width: 70px;
    }

    .floating-check {
        width: 42px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        margin-top: var(--spacing-lg);
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-primary);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

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

    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-illustration {
        width: 120px;
        height: 100px;
    }

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

    .step-illustration {
        width: 110px;
        height: 110px;
    }

    .step-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(60px + var(--spacing-xl));
    }

    .hero-illustration {
        width: 280px;
        height: 240px;
    }

    .central-dashboard {
        width: 200px;
    }

    .doc-1 {
        width: 55px;
        top: 5%;
    }

    .doc-2 {
        width: 50px;
    }

    .floating-coin {
        width: 38px;
    }

    .floating-cloche {
        width: 55px;
    }

    .floating-check {
        width: 35px;
    }

    .deco-dots {
        display: none;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .feature-card {
        padding: var(--spacing-lg);
    }

    .feature-illustration {
        width: 100px;
        height: 85px;
    }

    .step-illustration {
        width: 100px;
        height: 100px;
    }

    .step-badge {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }

    .stat-number {
        font-size: 2rem;
    }
}
