/* ============================================
   DEVIS PAGE STYLES - CHARTE GRAPHIQUE Ancor Agency
   ============================================ */

/* Variables CSS cohérentes avec le site */
:root {
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-gray-900: #1a1a1a;
    --color-gray-950: #fafafa;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-accent: #2563eb;
    --color-accent-light: #3b82f6;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-text-primary: #0a0a0a;
    --color-text-secondary: #4b5563;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
}

/* ============================================
   HERO SECTION (Gardé tel quel)
   ============================================ */

.hero {
    padding: 120px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #000000;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

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

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-item svg {
    color: #10b981;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.floating-card {
    background: var(--color-black);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 380px;
    width: 100%;
    animation: floating 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-dots {
    display: flex;
    gap: 0.5rem;
}

.card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

.card-dots span:first-child {
    background: #ff5f57;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:last-child {
    background: #28ca42;
}

.card-title {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.floating-card .progress-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.floating-card .progress-step.active {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.floating-card .progress-step .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.floating-card .progress-step:not(.active) .step-number {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.floating-card .progress-step .step-text {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
    text-align: left;
}

.floating-card .progress-step:not(.active) .step-text {
    color: rgba(255, 255, 255, 0.8);
}

.hero-background {
    display: none;
}

/* ============================================
   FORM SECTION
   ============================================ */

.devis-form-section {
    padding: 30px 0;
    background: #ffffff;
    position: relative;
}

.devis-form {
    max-width: 620px;
    margin: 0 auto;
}

/* Progress Container */
.progress-container {
    margin-bottom: 1.25rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 20%;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    gap: 0.75rem;
    padding: 0 2rem;
}

.progress-steps::before {
    display: none;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    padding: 0 0.5rem;
}

.step-label {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    padding: 0 0.25rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}


.progress-step.active .step-label {
    color: var(--color-accent);
    font-weight: 600;
}

.progress-text {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

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

.form-step.active {
    display: block;
}

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

.step-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.step-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.step-header p {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.card-content {
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 0.9rem;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover .card-content {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
    background: rgba(0, 0, 0, 0.05);
}

.service-card input[type="radio"]:checked + .card-content {
    border-color: var(--color-accent);
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.service-card input[type="radio"]:checked + .card-content::after {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Bandeau Coming Soon Compact */
.coming-soon-banner {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: rocket-float 2s ease-in-out infinite;
}

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

.banner-text {
    flex: 1;
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.banner-text strong {
    color: var(--color-accent-light);
    font-weight: 700;
}

.banner-link {
    color: var(--color-accent-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.banner-link::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.banner-link:hover {
    color: var(--color-white);
}

.banner-link:hover::after {
    transform: translateX(4px);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    display: block;
}

.card-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.card-content p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.75rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.6rem 0;
    flex-grow: 1;
}

.card-features li {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.2rem;
    padding-left: 0.8rem;
    position: relative;
    font-size: 0.7rem;
}

.card-features li::before {
    content: '•';
    color: var(--color-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.price-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    flex: 1;
    text-align: center;
}

.delivery-badge {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
}

.coming-soon-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--border-radius);
    text-align: center;
}

.coming-soon-message p {
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Question Groups */
.question-group {
    margin-bottom: 0.85rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.question-group:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.03);
}

.question-group label:not(.radio-option):not(.checkbox-option):not(.rgpd-checkbox) {
    display: block;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
}

.question-group select:not(.form-select) {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    background-color: rgba(0, 0, 0, 0.02);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    color: var(--color-black);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
}

.question-group select:not(.form-select)::-ms-expand {
    display: none !important;
}

.question-group select:not(.form-select):focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(0, 0, 0, 0.03);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.field-note {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* Form Inputs - Styles unifiés */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--color-black);
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

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

.form-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: rgba(0, 0, 0, 0.02);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
    padding-right: 3rem;
    cursor: pointer;
}

.form-select::-ms-expand {
    display: none !important;
}

.form-select::-webkit-select {
    -webkit-appearance: none !important;
}

.form-select:focus {
    background-color: rgba(0, 0, 0, 0.03);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
}

.form-select:hover {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3cpolyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
}

.form-select option {
    background: #ffffff;
    color: var(--color-black);
    padding: 0.75rem;
}

/* Rétro-compatibilité avec .form-group */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group input:not(.form-input):not([type="radio"]):not([type="checkbox"]),
.form-group textarea:not(.form-textarea),
.form-group select:not(.form-select) {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    background-color: rgba(0, 0, 0, 0.02);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    color: var(--color-black);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.form-group input:not(.form-input):not([type="radio"]):not([type="checkbox"]):focus,
.form-group textarea:not(.form-textarea):focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-group select:not(.form-select):focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: rgba(0, 0, 0, 0.03);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.65rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    color: rgba(0, 0, 0, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    flex: 1;
}

/* Checkbox Groups */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.35rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.6rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
}

.checkbox-option:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

/* Conditional Fields */
.conditional-field {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-accent);
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease;
}

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

/* Conditional Questions by Project Type */
.conditional-questions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    animation: fadeInSlide 0.4s ease;
}

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

.conditional-questions .question-group {
    animation: fadeInSlide 0.4s ease;
    animation-fill-mode: both;
}

.conditional-questions .question-group:nth-child(1) {
    animation-delay: 0.1s;
}

.conditional-questions .question-group:nth-child(2) {
    animation-delay: 0.2s;
}

.conditional-questions .question-group:nth-child(3) {
    animation-delay: 0.3s;
}

.conditional-questions .question-group:nth-child(4) {
    animation-delay: 0.4s;
}

.conditional-field label {
    display: block;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* RGPD Section */
.rgpd-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.rgpd-checkbox:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
}

.rgpd-checkbox input[type="checkbox"] {
    display: none;
}

.rgpd-checkbox .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.rgpd-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    border-color: #10b981;
    background: #10b981;
}

.rgpd-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.rgpd-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.rgpd-text {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Sticky Navigation Mobile - DÉSACTIVÉ */
.sticky-next-mobile {
    display: none !important;
}

.sticky-next-mobile.visible {
    display: none !important;
}

@media (max-width: 768px) {
    /* Coming Soon Banner - Compact */
    .coming-soon-banner {
        margin-top: 0.75rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .banner-content {
        flex-direction: row;
        text-align: left;
        gap: 0.5rem;
        align-items: center;
    }
    
    .banner-icon {
        font-size: 1rem;
    }
    
    .banner-text {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .banner-link {
        font-size: 0.75rem;
        margin-top: 0;
    }
    
    /* Floating Card - Cachée sur mobile */
    .hero-image {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .progress-steps {
        gap: 0.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
    }
    
    .progress-step {
        flex: 1;
        min-width: 80px;
        max-width: 120px;
        padding: 0 0.25rem;
    }
    
    .step-label {
        font-size: 0.7rem;
        line-height: 1.3;
        padding: 0;
    }
    
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--color-black);
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.step-indicator {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Error Messages */
.step-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--border-radius);
    animation: shake 0.5s ease;
}

.field-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    display: block;
    animation: fadeIn 0.3s ease;
    padding-left: 0.25rem;
}

/* Styles d'erreur pour les inputs */
.form-input.error,
.form-textarea.error,
.form-select.error,
input.error,
textarea.error,
select.error {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
}

.form-select.error {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
}

.form-input.error:focus,
.form-textarea.error:focus,
input.error:focus,
textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.form-select.error:focus,
select.error:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 16px !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    color: #10b981;
    margin-bottom: 24px;
}

.success-icon svg {
    width: 64px;
    height: 64px;
}

.success-message h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.success-message p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.875rem;
    justify-content: center;
}

.detail-item svg {
    color: #10b981;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Success Callout */
.success-callout {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.callout-icon {
    flex-shrink: 0;
    color: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 12px;
}

.callout-icon svg {
    width: 32px;
    height: 32px;
}

.callout-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.callout-content p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.callout-content p:last-child {
    margin-bottom: 0;
}

.callout-content strong {
    color: var(--color-accent-light);
}

@media (max-width: 480px) {
    .success-callout {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .callout-icon {
        width: 50px;
        height: 50px;
    }
    
    .callout-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   CAL.COM MODAL
   ============================================ */

.cal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

.cal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cal-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 85vh;
    max-height: 700px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    z-index: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cal-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cal-modal-close:hover {
    background: rgba(239, 68, 68, 0.9);
    transform: scale(1.1);
}

.cal-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Body lock when modal is open */
body.cal-modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 768px) {
    .cal-modal {
        padding: 0;
    }
    
    .cal-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
    
    .cal-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Conditional Step */
.conditional-step {
    display: none;
}

.conditional-step.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .devis-form {
        padding: 0 1rem;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-header h2 {
        font-size: 1.5rem;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .progress-step {
        min-width: 70px;
        max-width: 100px;
        padding: 0 0.25rem;
    }
    
    .step-label {
        font-size: 0.65rem;
        line-height: 1.2;
        padding: 0;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .question-group {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   TRUST SECTION - POURQUOI NOUS FAIRE CONFIANCE
   ============================================ */

.devis-trust {
    padding: 80px 0;
    background: var(--color-gray-950);
    position: relative;
    overflow: hidden;
}

.devis-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.trust-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.trust-stat {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.trust-stat:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive Trust Section */
@media (max-width: 768px) {
    .devis-trust {
        padding: 60px 0;
    }
    
    .trust-content h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-stat {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .trust-content h3 {
        font-size: 1.75rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-stat {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}

/* ============================================
   CAL.COM POPUP STYLE LANDING PAGE
   ============================================ */

.cal-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: popupFadeIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cal-popup-container {
    background: #1a1a1a;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.3s ease-out;
    position: relative;
}

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

.cal-popup-close-overlay {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.cal-popup-close-overlay:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.cal-popup-container iframe {
    border: none;
    border-radius: 16px;
    width: 100%;
    height: 600px;
}

/* Success Actions avec bouton secondaire style NOIR */
.success-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    border: 2px solid #0a0a0a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.success-actions .btn-secondary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.success-actions .btn-secondary .phone-icon {
    flex-shrink: 0;
}

/* Responsive Popup - Plein écran mobile */
@media (max-width: 768px) {
    .cal-popup-overlay {
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .cal-popup-container {
        max-height: 100vh;
        max-width: 100vw;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    
    .cal-popup-close-overlay {
        position: fixed;
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        background: transparent;
    }
    
    .cal-popup-container iframe {
        height: 100%;
        border-radius: 0;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   BOUTONS FLOTTANTS DISCORD & WHATSAPP (GAUCHE)
   ============================================ */

.floating-btns-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

/* Bouton Discord */
.discord-btn-left {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(88, 101, 242, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.discord-btn-left:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(88, 101, 242, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

.discord-btn-left svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.discord-btn-left:hover svg {
    transform: scale(1.1);
}

/* Bouton WhatsApp */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(37, 211, 102, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(37, 211, 102, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive boutons flottants */
@media (max-width: 767px) {
    .floating-btns-left {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
    
    .discord-btn-left,
    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
    
    .discord-btn-left svg,
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 479px) {
    .floating-btns-left {
        bottom: 16px;
        left: 16px;
        gap: 8px;
    }
    
    .discord-btn-left,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .discord-btn-left svg,
    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}
