:root {
    --iad-blue: #00B4EC;
    --iad-blue-dark: #008ebc;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border-subtle: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 70px;
    width: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-blue-animated {
    background: var(--iad-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: pulse-blue 2s infinite;
}

.btn-primary {
    background: var(--iad-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 180, 236, 0.4);
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 18px 35px;
    border-radius: 12px;
}

.btn-primary:hover {
    background: var(--iad-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 180, 236, 0.6);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 8px 30px rgba(0, 180, 236, 0.3);
}

.btn-subtext {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
}

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

.badge-premium {
    background: rgba(0, 180, 236, 0.08);
    color: var(--iad-blue-dark);
    padding: 12px 28px;
    border-radius: 100px;
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 180, 236, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 180, 236, 0.05);
    font-family: 'Outfit', sans-serif;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
}

/* VSL Container */
.vsl-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.vsl-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-subtle);
}

.vsl-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #1e293b, #0f172a);
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--iad-blue);
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.play-button::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 25px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
}

.vsl-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* Method 3S Section */
.method-3s {
    padding: 100px 0;
    background: #f1f5f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.method-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--iad-blue);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--iad-blue);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.client-info {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trustpilot-badge-footer {
    text-align: center;
    margin-top: 40px;
}

.tp-badge-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.patchwork-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Organic Review Patchwork */
.review-patchwork {
    columns: 2 350px;
    column-gap: 30px;
    margin: 40px auto 80px;
    max-width: 1100px;
    padding: 0 20px;
}

.patchwork-item {
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    background: white;
    cursor: default;
}

.patchwork-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.patchwork-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Add a bit of "organic" variety */
.patchwork-item:nth-child(even) {
    transform: rotate(1deg);
}

.patchwork-item:nth-child(odd) {
    transform: rotate(-1deg);
}

.patchwork-item:hover {
    transform: rotate(0deg) translateY(-5px) scale(1.02);
}

@media (max-width: 768px) {
    .review-patchwork {
        columns: 2 150px;
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .review-patchwork {
        columns: 1;
    }
}

/* Sold Properties */
.sold-properties {
    padding: 100px 0;
    background: #ffffff;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.property-card-vendu {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-subtle);
}

.property-card-vendu img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card-vendu:hover img {
    transform: scale(1.1);
}

.vendu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 10;
}

.property-info {
    padding: 15px;
}

.property-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.property-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    border: 2px solid var(--iad-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 60px 0 40px;
    background: #f1f5f9;
    color: var(--text-muted);
}

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

.footer-info .logo {
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-info a {
    color: var(--iad-blue);
    text-decoration: none;
}

.footer-legal h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-legal p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-logo {
        height: 50px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .vsl-container {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .method-card {
        padding: 25px;
    }

    .testimonial-grid,
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 25px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .tp-badge-img {
        max-width: 320px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

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

    .btn-primary {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .badge-premium {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}