/* Variables de couleurs TED */
:root {
    --color-gray: #555555;
    --color-blue: #002c67;
    --color-orange: #e26818;
    --color-orange-hover: #c4550f;
    --color-light-bg: #f3f6fa;
    --font-base: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-base), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-blue);
    /* background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-gray) 100%); */
    min-height: 100vh;
}

.logo-ted {
    height: 100px;
}

.logo-edf {
    height: 79px;
    opacity: 0.9;
    margin-left: 8px;
}

.logo-domofinance {
    height: 100px;
}

.hero-flex {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    flex-shrink: 0;
}

.hero-text {
    margin-top: 25px;
    margin-left: 35px;
    flex: 1;
    min-width: 280px;
}

.particulier-text h2
{
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

@media (max-width: 600px) {
    .hero-logos {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .hero-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-text {
        text-align: center;
        margin: 0;
    }
}

.cta-button {
    animation: pulse 2.5s infinite;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-orange);
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.particulier-section {
    position: relative;
    background-image: url(Assets/bandeau-particulier1.png);
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 4rem 2rem; */
    transition: background-image 1s ease-in-out;
    text-align: center;
}

.hero-align-tight {
    padding: 2.5rem 1rem;
    background-color: #ffffff;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.top-banner
{
    padding: 1rem 2rem;
    background-color: var(--color-gray);
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.top-banner a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-orange);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.edf-badge {
    background: var(--color-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(226, 104, 24, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-subtitle {
    font-weight: 600;
    color: var(--color-blue);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-opacity="0.1"/><stop offset="100%" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.promise-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin: 40px auto;
    max-width: 700px;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--color-orange);
    color: white;
    box-shadow: 0 15px 35px rgba(226, 104, 24, 0.4);
}

.btn-primary:hover {
    background: var(--color-orange-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Banner */
.hero-banner-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* .hero-banner-container {
    margin-top: 60px;
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

.hero-banner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.banner-placeholder {
    background: rgba(0, 44, 103, 0.8);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.banner-placeholder p {
    margin: 10px 0;
    font-weight: 600;
}

/* Features Section */
.features, .process {
    /* padding: 120px 0; */
    padding-bottom: 50px;
    padding-top:20px;
    background: var(--color-light-bg);
    position: relative;
}

.features .section-title
{
    margin-bottom:10px;    
}

.features .section-subtitle-header
{
    background: #1a4276;
    border-radius: 10px;
    padding: 10px;
    color: white;
    box-shadow: 0 9px 14px rgba(0, 0, 0, 0.5);
    font-size: 26px;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

span.highlight-word
{
    color: var(--color-orange);
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--color-gray);
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 168, 204, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--color-orange);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 44, 103, 0.4);
        margin-left: auto;
    margin-right: auto;
}

.icon-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* border: 2px dashed rgba(255, 255, 255, 0.3); */
    transition: all 0.3s ease;
}

.icon-placeholder p {
    font-size: 2rem;
    margin: 0;
}

.icon-placeholder small {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 5px;
}

.feature-card:hover .icon-placeholder {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-blue);
    line-height: 1.3;
    text-align: center;
}

.feature-card p {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

.highlight {
    color: var(--color-orange);
    font-weight: 700;
}

.quote {
    font-style: italic;
    color: var(--color-blue);
    font-weight: 600;
}

/* Illustration */
.illustration-fullwidth {
    width: 100%;
    padding: 0;
    margin: 60px 0;
}

.illustration-placeholder {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, #ffffff 100%);
    border: 3px dashed var(--color-orange);
    padding: 60px 40px;
    text-align: center;
    border-radius: 15px;
    margin: 0 20px;
    animation: slideInFromBottom 0.8s ease-out;
}

.illustration-placeholder p {
    margin: 10px 0;
    font-weight: 600;
    color: var(--color-blue);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #012a68 0%, #4a90e2 50%, #002c67 100%);
    color: white;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item p {
    color:var(--color-gray);
}


.benefit-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

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

.benefit-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(226, 104, 24, 0.1);
    border: 2px dashed var(--color-orange);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
    background: rgba(226, 104, 24, 0.2);
}

.logo-placeholder p {
    font-size: 1.5rem;
    margin: 0;
}

.logo-placeholder small {
    font-size: 0.6rem;
    opacity: 0.8;
    margin-top: 3px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-orange);
}

.benefit-item p {
    line-height: 1.7;
    opacity: 0.9;
}

.partners-logos {
    margin-top: 60px;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    min-width: 150px;
    text-align: center;
}

.partner-logo-placeholder p {
    margin: 0 0 5px 0;
    color: white;
    font-weight: 600;
}

.partner-logo-placeholder small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.formulaire-section
{
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(Assets/adhesion.png);
    background-size: cover;
}

.form-particulier {
    width: 100%;
    max-width: 500px;
    background: #ffffffe0;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.footer-contact {
    background-color: #002c67;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.sub-footer {
    background-color: #001e48;
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.sub-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: #ccc;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: underline;
}

.sub-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-particulier button {
    margin-top: 0.5rem;
    background-color: var(--color-orange);
    color: white;
    padding: 0.9rem;
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.formulaire-section h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

.form-text {
    border-left: solid 3px #e26818;
    background: #fff;
    padding: 10px;
}

.form-particulier input, .form-particulier select {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.8;
}

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

.process-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-light-bg);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-orange);
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.process-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    color: var(--color-blue);
}

.process-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-blue);
}

.process-item p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Footer CTA */
.footer-cta {
    padding: 100px 0;
    background: var(--color-blue);
    text-align: center;
    color: white;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-opacity="0.1"/><stop offset="100%" stop-opacity="0"/></radialGradient></defs><circle cx="150" cy="200" r="120" fill="url(%23b)"/><circle cx="850" cy="300" r="100" fill="url(%23b)"/><circle cx="500" cy="800" r="140" fill="url(%23b)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.background-placeholder {
    background: rgba(0, 44, 103, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    top: 20px;
    right: 20px;
    min-width: 250px;
}

.background-placeholder p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-options {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container, .contact-direct {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container h3, .contact-direct h3 {
    color: var(--color-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(226, 104, 24, 0.3);
}

.checkbox-group {
    margin: 10px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--color-orange);
}

.form-submit {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-orange) !important;
}

.form-submit:hover {
    background: var(--color-orange-hover) !important;
}

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Contact Direct */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(226, 104, 24, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--color-orange);
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--color-orange);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(226, 104, 24, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(226, 104, 24, 0.3);
}

.badge-icon {
    font-size: 2rem;
    color: var(--color-orange);
}

.badge-text strong {
    color: var(--color-orange);
    font-size: 1rem;
    display: block;
    margin-bottom: 3px;
}

.badge-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes backgroundPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

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

.feature-card, .benefit-item, .process-item {
    animation: fadeInUp 0.6s ease forwards;
}

.btn-primary {
    animation: pulse 2s infinite;
}

.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 968px) {
    .contact-options {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid, .benefits-list, .process-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        text-align: center;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container, .contact-direct {
        padding: 30px;
    }
    
    .hero-banner-container {
        height: 250px;
        margin-top: 40px;
    }
    
    .illustration-placeholder {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .background-placeholder {
        position: relative;
        margin: 20px 0;
        right: auto;
        top: auto;
    }
}shadow: 0 8px 20px rgba(226, 104, 24, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-subtitle {
    font-weight: 600;
    color: var(--color-blue);
    font-size: 1.1rem;
}


