:root {
    --main-red: #B22222;
    --secondary-blue: #49749c;
    --text-color: #23272A;
    --bg-color: #FFFFFF;
    --section-bg: #F8F8F8;
    --font-family: 'Montserrat', sans-serif;
}

html,
body {
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background: var(--bg-color);
    color: var(--text-color);
}

a {
    color: var(--main-red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    position: sticky;
    top: 0;
    background: var(--bg-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 2px 4px rgb(0 0 0 / .1);
    z-index: 100;
}

header h1 {
    font-size: 1.8rem;
}

.contact-links a {
    margin-left: 1rem;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.contact-links i {
    margin-right: .5rem;
}

.large-contact a {
    font-size: 1.4rem;
    font-weight: 700;
    padding: .35em .7em;
    border-radius: 8px;
    transition: background 0.25s cubic-bezier(.4, 0, .2, 1), color 0.25s cubic-bezier(.4, 0, .2, 1), transform 0.20s cubic-bezier(.4, 0, .2, 1);
}

.large-contact a:hover {
    background: #f7eaea;
    color: #B22222;
    text-decoration: none;
    transform: scale(1.08);
    box-shadow: 0 2px 10px #b2222230;
}

section {
    padding: 4rem 2rem;
    text-align: center;
}

section:nth-of-type(even) {
    background: var(--section-bg);
}

h2 {
    font-size: 2rem;
    color: var(--main-red);
    margin-bottom: .5rem;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--secondary-blue);
    margin: .5rem auto 2rem;
}

.section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4, 0, .2, 1), transform 0.7s cubic-bezier(.4, 0, .2, 1);
}

.section.visible {
    opacity: 1;
    transform: none;
}

.afterbefore {
    position: relative;
    width: 662px;
    height: 657px;
    margin: 2rem auto;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.service-card {
    background: var(--bg-color);
    box-shadow: 0 4px 16px #b2222220;
    border: 1.5px solid #e4e4e4;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 10px 32px #b2222230;
}

.service-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.service-card i {
    margin-right: .5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--main-red);
    margin-bottom: .5rem;
    transition: transform 0.3s;
}

.card:hover .icon i,
.feature:hover i {
    transform: rotate(-6deg) scale(1.15);
}

.feature h4 {
    margin-bottom: .5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.zone-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    align-items: flex-start;
}

.zone-map {
    flex: 0 0 320px;
    width: 320px;
    max-width: 90vw;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 6px rgb(0 0 0 / .1);
    margin: 0 auto;
    transition: box-shadow 0.6s, transform 0.6s;
}

.section.visible .zone-map {
    box-shadow: 0 6px 40px #b2222233, 0 2px 12px #00000012;
    transform: scale(1.04);
}

.zone-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zone-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 0;
    margin: 0 auto;
}

.zone-details ul {
    margin-top: 1rem;
    text-align: left;
    padding-left: 0;
    list-style-position: inside;
}

.zone-details small {
    display: block;
    margin-top: 1rem;
    color: #666;
}

.faq {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    transition: background 0.3s;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    outline: none;
    transition: color 0.3s;
}

.faq-item[open] summary {
    color: var(--main-red);
}

.faq-item p {
    margin-top: .5rem;
    animation: fadeInFAQ 0.4s;
}

@keyframes fadeInFAQ {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

footer {
    margin-top: auto;
    background-color: #000000;
    text-align: center;
    padding: 1.5rem;
    font-size: .9rem;
    color: #fff;
}

.imagesContainer {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.imagesContainer .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.imagesContainer .afterImage {
    transform: translateX(-75%);
}

.imagesContainer .afterImage img {
    transform: translateX(75%);
}

.imagesContainer .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.thumb {
    position: absolute;
    top: 0;
    left: 25%;
    height: 100%;
    width: 2px;
    background-color: #fff;
    z-index: 9;
}

.thumb span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    cursor: move;
    z-index: 4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #b2222240;
    }
    70% {
        box-shadow: 0 0 0 16px #fff0;
    }
    100% {
        box-shadow: 0 0 0 0 #fff0;
    }
}

.thumb span i {
    color: var(--main-red);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.card {
    border: 1px solid #d33;
    border-radius: .5rem;
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    line-height: 1.5;
    transition: transform 0.35s, box-shadow 0.35s;
}

.card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 10px 32px #b2222230;
}

.icon {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #d33;
    transition: background 0.25s, color 0.25s;
}

.card:hover .icon {
    background: #fff1f1;
    color: #B22222;
}

.card h3 {
    margin-bottom: .75rem;
    font-size: 1.1rem;
}

.card .desc {
    margin: 0;
    padding: 0;
    list-style: none;
}

.card .desc li {
    margin-bottom: .5rem;
}

.intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-align: center;
}

.cta-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: .7em;
    background: var(--main-red);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: .7em 1.2em;
    border-radius: 30px;
    box-shadow: 0 8px 24px #b2222244;
    transition: background 0.25s, transform 0.15s;
    text-decoration: none;
    cursor: pointer;
    animation: cta-pulse 1.7s infinite cubic-bezier(.4, 0, .2, 1);
}

.cta-call:hover {
    background: #a01b1b;
    transform: scale(1.05);
    box-shadow: 0 12px 32px #b2222255;
}

.cta-call i {
    font-size: 1.35em;
    animation: cta-phone-shake 1.7s infinite cubic-bezier(.4, 0, .2, 1);
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 #b2222244;
    }
    65% {
        box-shadow: 0 0 0 15px #fff0;
    }
    100% {
        box-shadow: 0 0 0 0 #fff0;
    }
}

@keyframes cta-phone-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    15% {
        transform: rotate(-18deg);
    }
    30% {
        transform: rotate(16deg);
    }
    40% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.cta-text {
    letter-spacing: .02em;
}

.cta-call,
.cta-call:hover,
.cta-call:focus {
    text-decoration: none !important;
}

/* Navigation */
header nav.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0 1rem;
}

header nav.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}

header nav.main-nav a:hover,
header nav.main-nav a.active {
    background: #f7eaea;
    color: var(--main-red);
    text-decoration: none;
}

/* Liens de contact mobile (masqués sur desktop) */
.mobile-contact-links {
    display: none;
}

/* Bouton hamburger pour mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background: var(--main-red);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--main-red);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--main-red);
}

/* Page Header */
.page-header {
    padding: 3rem 2rem 2rem;
    text-align: center;
    background: var(--bg-color);
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Réalisations Section */
.realisations-section {
    background: var(--section-bg);
    padding: 3rem 2rem;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.realisation-item {
    background: var(--bg-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(178, 34, 34, 0.1);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s cubic-bezier(.4, 0, .2, 1), border-color 0.3s;
}

.realisation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(178, 34, 34, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(178, 34, 34, 0.3);
}

.realisation-item h3 {
    color: var(--main-red);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.realisation-slider {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

.realisation-slider .imagesContainer {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.realisation-slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* CTA Section */
.cta-section {
    background: var(--bg-color);
    padding: 3rem 2rem;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem !important;
    font-weight: 400;
}

.cta-pricing-info {
    margin-bottom: 2rem;
}

.cta-pricing-text {
    display: inline-block;
    background: linear-gradient(135deg, #f7eaea 0%, #fff5f5 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    color: var(--main-red);
    border: 2px solid rgba(178, 34, 34, 0.2);
}

.cta-pricing-text strong {
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-primary {
    background: var(--main-red);
    color: #fff;
}

.cta-button-primary:hover {
    background: #a01b1b;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(178, 34, 34, 0.4);
    text-decoration: none;
}

.cta-button-secondary {
    background: #25D366;
    color: #fff;
}

.cta-button-secondary:hover {
    background: #20BA5A;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.cta-button i {
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .cta-call {
        bottom: 16px;
        right: 8px;
        font-size: 1rem;
        padding: .55em .9em;
    }

    .cta-call .cta-text {
        display: none;
    }

    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .realisation-slider {
        height: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-pricing-text {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 900px) {
    .zone-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding-bottom: 0;
    }

    .zone-map,
    .zone-details {
        width: 100%;
        max-width: 350px;
        min-height: 0;
    }

    .zone-details {
        text-align: center;
        margin-bottom: 0;
    }

    #zone.section {
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 900px) {
    header {
        padding: 1rem 1.5rem;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    header nav.main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-color);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 0;
        margin: 0;
        transition: right 0.3s ease;
        z-index: 100;
        overflow-y: auto;
        border-top: none;
    }

    header nav.main-nav.active {
        right: 0;
    }

    header nav.main-nav a {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid #eee;
        border-radius: 0;
        text-align: left;
    }

    header nav.main-nav a:first-child {
        border-top: 1px solid #eee;
    }

    header nav.main-nav a:hover,
    header nav.main-nav a.active {
        background: #f7eaea;
        color: var(--main-red);
        padding-left: 1.5rem;
    }

    /* Liens de contact dans le menu mobile */
    .mobile-contact-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid #eee;
        gap: 0.5rem;
    }

    .mobile-contact-links a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--main-red);
        color: white;
        border-radius: 6px;
        text-align: center;
        justify-content: center;
        font-weight: 600;
        border-bottom: none;
        transition: background 0.3s, transform 0.3s;
    }

    .mobile-contact-links a:hover {
        background: #a01b1b;
        transform: scale(1.02);
        padding-left: 1rem;
    }

    .mobile-contact-links a i {
        font-size: 1.2rem;
    }

    .large-contact {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    /* Overlay pour fermer le menu */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 1.5rem;
    }

    header {
        flex-direction: row;
        gap: 1rem;
        padding: .8rem 1rem;
        justify-content: space-between;
        align-items: center;
    }

    header h1 {
        flex: 1;
    }

    header h1 img {
        height: 55px;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }

    .large-contact {
        display: none;
    }

    header nav.main-nav {
        width: 100%;
        right: -100%;
    }

    header nav.main-nav.active {
        right: 0;
    }

    section {
        padding: 2rem 1rem 1.5rem 1rem;
    }

    #zone.section {
        padding-bottom: 0rem !important;
        margin-bottom: 0 !important;
    }

    h2 {
        font-size: 1.3rem;
    }

    .divider {
        width: 40px;
    }

    .afterbefore {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 1rem auto;
        position: relative;
    }

    .service-description {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .zone-map,
    .zone-details {
        max-width: 98vw;
        width: 100%;
    }

    .faq {
        padding: 0 .2rem;
    }

    .cards {
        gap: 1rem;
    }

    .card {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Pricing Badge */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border: 2px solid var(--main-red);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(178, 34, 34, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    margin: 2rem auto;
}

.pricing-badge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(178, 34, 34, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-red) 0%, #a01b1b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.3);
}

.pricing-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--main-red);
    line-height: 1;
    margin: 0.2rem 0;
}

.pricing-unit {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.pricing-badge-header {
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(178, 34, 34, 0.1);
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.trust-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(178, 34, 34, 0.15);
    border-color: rgba(178, 34, 34, 0.2);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f7eaea 0%, #fff5f5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-red);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-info strong {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 700;
    display: block;
}

.trust-info span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* Improved Cards */
.card {
    border: 1px solid rgba(178, 34, 34, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: #fff;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(178, 34, 34, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(178, 34, 34, 0.3);
}

.icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7eaea 0%, #fff5f5 100%);
    border-radius: 12px;
    font-size: 1.6rem;
    color: var(--main-red);
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 2px 8px rgba(178, 34, 34, 0.15);
}

.card:hover .icon {
    background: linear-gradient(135deg, var(--main-red) 0%, #a01b1b 100%);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 16px rgba(178, 34, 34, 0.3);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.card .desc {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #666;
    font-size: 1rem;
}

/* Typography improvements */
h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Responsive adjustments for trust section */
@media (max-width: 768px) {
    .trust-content {
        gap: 2rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .pricing-text {
        align-items: center;
    }
    
    .pricing-amount {
        font-size: 1.8rem;
    }
    
    .trust-badge-item {
        flex-direction: column;
        text-align: center;
    }
}
