/* --- GOD TIER VARIABLES --- */
:root {
    /* Palette Ultra Premium */
    --primary-100: #DCEDC8;
    --primary-200: #C5E1A5;
    --primary-300: #AED581;
    --primary-400: #9CCC65;
    --primary-500: #2E7D32;
    /* Main Brand */
    --primary-600: #1B5E20;
    --primary-700: #144418;

    --accent-gold: #F59E0B;
    --accent-gold-light: #FCD34D;

    --surface-light: #FFFFFF;
    --surface-off-white: #FAFAFA;
    --surface-glass: rgba(255, 255, 255, 0.7);
    --surface-glass-dark: rgba(255, 255, 255, 0.9);

    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;

    /* Ombres 3D Sophistiquées */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(46, 125, 50, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Margin Brand Vertical Label */
.margin-brand {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: rotate(90deg) translateY(50%);
    transform-origin: right center;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--primary-500);
    opacity: 0.3;
    z-index: 9999;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .margin-brand {
        display: none;
    }
}

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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--surface-off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- GOD TIER DETAILS --- */
/* 1. Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F1F1F1;
}

::-webkit-scrollbar-thumb {
    background: #AED581;
    border-radius: 10px;
    border: 2px solid #F1F1F1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-500);
}

/* 2. Brand Selection Color */
::selection {
    background: var(--primary-200);
    color: var(--primary-700);
}

/* 3. Focus States (Accessibility + Beauty) */
:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ease-smooth) 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- FINAL POLISH & SPACING --- */
section:last-of-type {
    padding-bottom: 8rem;
}

.services-section, .pricing-section, .features-section {
    padding-bottom: 8rem;
}

/* --- FAMILY JOIN SECTION --- */
.family-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7f0 0%, #ffffff 100%);
    text-align: center;
    border-top: 1px solid var(--primary-100);
}

.family-cta h2 {
    font-size: 2.8rem;
    color: var(--primary-700);
    margin-bottom: 1rem;
    font-weight: 800;
}

.family-cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.family-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-family-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-600);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-family-primary:hover {
    background: var(--primary-700);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-family-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-600);
    font-weight: 700;
    border: 2px solid var(--primary-600);
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

.btn-family-outline:hover {
    background: var(--primary-50);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .family-cta h2 { font-size: 2rem; }
    .family-cta p { font-size: 1.1rem; }
    .family-buttons { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }
}

/* --- UTILITIES --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* --- ANIMATIONS --- */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes blob-bounce {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-back);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1002;
}

.logo-img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xs);
    height: auto;
    max-width: 150px;
}

.brand-name {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

/* Nav Links */
.nav-list {
    display: flex;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    transition: width 0.3s var(--ease-smooth), left 0.3s var(--ease-smooth);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--surface-light);
    min-width: 240px;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
    .dropdown.active .dropdown-menu {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.05);
        box-shadow: none;
        margin-top: 10px;
        transition: none;
    }
}

.dropdown-menu li a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    display: block;
    color: var(--text-muted);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--primary-100);
    color: var(--primary-700);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-link span {
    display: inline-block;
    animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.btn-outline {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary-500);
    border-radius: var(--radius-full);
    color: var(--primary-600);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-500);
    color: white;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* --- HERO SECTION (MASTERPIECE) --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    /* Full screen impact */
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: radial-gradient(circle at top left, #F1F8E9, #FFFFFF, #E8F5E9);
}

/* Page Hero (Smaller for subpages) */
.page-hero {
    min-height: 50vh;
    padding-top: 120px;
    align-items: center;
    text-align: center;
}

.page-hero .hero-text {
    padding-right: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Animated Background Blobs */
.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: blob-bounce 10s infinite alternate;
    will-change: transform;
    /* Performance optimization */
}

/* Parallax Effect on Scroll (handled via JS usually, but CSS perspective helps) */
.hero-section {
    perspective: 1000px;
}

.blob-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #C8E6C9;
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #DCEDC8;
    animation-delay: -5s;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    /* Slightly adjusted for split layout */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-main), var(--primary-700), var(--primary-500));
    background-size: 200% auto;
    animation: gradient-text 5s ease infinite;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    margin-left: 0;
    margin-right: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Hero Badges & Labels */
.hero-labels {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sap-logo-hero {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.tax-credit-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-100);
}

.tax-percent {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-600);
    line-height: 1;
}

.tax-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1.2;
}

.highlight-tax {
    display: inline-block;
    background: #FFF3E0;
    color: #B7791F;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    border: 1px solid #FFE0B2;
}

/* Glass Booking Widget - Side Version */
.booking-widget {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-xl);
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s var(--ease-out-back), box-shadow 0.5s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

/* Shimmer Border Effect */
.booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-400), transparent);
    animation: border-shimmer 3s infinite;
}

@keyframes border-shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.booking-widget:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    width: 100%;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.booking-widget select,
.booking-widget input,
.booking-widget textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-xs);
    font-family: inherit;
}

.booking-widget select:focus,
.booking-widget input:focus,
.booking-widget textarea:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
    outline: none;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: float 2s infinite ease-in-out;
    cursor: pointer;
    z-index: 5;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-600);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-600);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

.cta-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px rgba(46, 125, 50, 0.4);
    transition: all 0.3s var(--ease-out-back);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 4. Button Shimmer Effect */
@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-smooth);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-600);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(46, 125, 50, 0.5);
}

.cta-button:hover::after {
    left: 100%;
}

.trust-badges {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    /* Left align badges */
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    animation: float-badge 3s ease-in-out infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.badge:nth-child(2) {
    animation-delay: 0.2s;
}

.badge:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* --- TRUST SECTION --- */
.trust-section {
    padding: 6rem 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.trust-item:hover {
    background: var(--surface-off-white);
    transform: translateY(-10px);
}

.trust-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-600);
    position: relative;
}

.trust-icon-box::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-300);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* --- SERVICES SECTION (CARDS 3D) --- */
.services-section {
    padding: 8rem 0;
    background: #F8FAFC;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

.service-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-700);
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: var(--primary-600);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.card-link span {
    transition: transform 0.3s;
}

.service-card:hover .card-link span {
    transform: translateX(5px);
}

/* --- CONTENT SECTION --- */
.content-section {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 2;
}

/* --- CONTACT PAGE STYLES --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-800);
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    margin-top: 2rem;
}

/* --- ABOUT PAGE STYLES --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-900);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* --- TARIFS PAGE STYLES --- */
.tarifs-table-container {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: white;
    margin-bottom: 3rem;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.tarifs-table th,
.tarifs-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.tarifs-table th {
    background: var(--primary-100);
    color: var(--primary-700);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.tarifs-table tr:last-child td {
    border-bottom: none;
}

.tarifs-table tr:hover {
    background-color: var(--surface-off-white);
}

.price-tag {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.price-reduced {
    color: var(--primary-600);
    font-weight: 700;
    background: #DCEDC8;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

/* --- TESTIMONIALS PAGE STYLES --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-200);
}

.testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
}

/* --- PREMIUM BUTTONS --- */
.btn-premium-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: white;
    font-weight: 800;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn-premium-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

/* --- MEGA FOOTER REDESIGN --- */
footer {
    background: linear-gradient(180deg, #0a2e0c 0%, #051a06 100%); /* Deep MEG Green Gradient */
    color: #f1f5f9;
    padding: 6rem 0 2rem;
    font-size: 0.95rem;
    border-top: 4px solid var(--primary-500);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand h4 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-500);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-300);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 4rem 0 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Remove old CTA section ultra if needed, or keep for buttons */
.cta-section-ultra {
    padding: 8rem 0;
    background: url('images/cta_background_premium.png') center/cover no-repeat fixed;
    position: relative;
    text-align: center;
}

.cta-section-ultra::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 46, 12, 0.88); /* Deep Green Overlay */
}

.cta-content-new {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-content-new h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-content-new p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Mobile Optimizations */
@media (max-width: 900px) {
    .cta-form-ultra {
        grid-template-columns: 1fr;
    }
    .cta-glass-card {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
    }
    .cta-glass-card h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .main-header .container { padding: 1rem; }
    .brand-name { font-size: 1.2rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .services-grid { gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
}

/* --- FOOTER & MISC --- */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4rem 0 2rem;
}

.btn-white {
    background: white;
    color: var(--primary-700);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--surface-off-white);
}

/* --- FOOTER PREMIUM --- */
footer {
    background: linear-gradient(160deg, #0F172A 0%, #1B2A3E 50%, #0F2027 100%);
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

/* Lumière d'ambiance subtile */
footer::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(46, 125, 50, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Ligne décorative verte en haut */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-400) 30%, var(--primary-300) 50%, var(--primary-400) 70%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 0;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
    align-items: start;
}

.footer-grid > * {
    min-width: 0;
    word-break: break-word;
}

/* Brand / Logo column */
.footer-brand h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-300));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.footer-brand p {
    color: #94A3B8;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-brand strong {
    color: #CBD5E1;
}

/* Badge agrément */
.footer-brand .agrement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.4rem 0.9rem;
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(166, 213, 129, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--primary-300);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Colonnes */
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-300);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-400), transparent);
    border-radius: 2px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col ul li {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-col a {
    color: #94A3B8;
    font-size: 0.9rem;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-col a:hover {
    color: #E2E8F0;
    padding-left: 4px;
}

/* Section médiation — style distinct */
.footer-col.mediation-col h4 {
    color: #A5B4FC;
}

.footer-col.mediation-col h4::after {
    background: linear-gradient(90deg, #A5B4FC, transparent);
}

.footer-col.mediation-col ul li {
    color: #94A3B8;
}

.footer-col.mediation-col a {
    color: #A5B4FC;
}

.footer-col.mediation-col a:hover {
    color: #C7D2FE;
}

/* Séparateur */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(51, 65, 85, 0.8) 20%, rgba(51, 65, 85, 0.8) 80%, transparent);
    margin: 0;
}

/* Bottom bar */
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #475569;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #475569;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--primary-300);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-labels {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .sap-logo-hero {
        height: 60px;
    }

    .tax-credit-badge {
        padding: 8px 15px;
    }

    .tax-percent {
        font-size: 1.8rem;
    }

    .hero-text {
        padding-right: 0;
    }

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

    .booking-widget {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .booking-widget:hover {
        transform: translateY(-5px);
    }

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

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

    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr 1.2fr; /* Garde les 4 colonnes sur une ligne */
        gap: 1.5rem;
        text-align: left;
    }

    .footer-brand h4 {
        font-size: 1.3rem; /* Réduit un peu la taille pour que ça tienne */
    }

    .footer-brand p, .footer-col ul li, .footer-col a {
        font-size: 0.85rem;
    }

    .footer-col h4::after {
        left: 0;
    }

    .main-header {
        background: white !important;
        box-shadow: var(--shadow-sm);
        padding: 0.5rem 0;
    }

    .brand-name {
        display: none; /* Hide text on small screens to save space for the logo */
    }

    .logo-img {
        max-width: 100px;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
        z-index: 1001;
        font-size: 2.5rem;
        color: var(--primary-600);
        cursor: pointer;
        padding: 5px;
    }
    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        padding: 8rem 2rem 2rem;
        z-index: 1001;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        overflow-y: auto;
    }

    .header-actions {
        display: none;
    }
}

/* Fix for pricing on mobile */
@media (max-width: 768px) {
    .price-row-ttc {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding-bottom: 1.5rem;
    }
    .price-label { font-size: 1.1rem; }
    .price-value-ttc { font-size: 2.2rem; }
    
    .price-net-highlight {
        padding: 2.5rem 1.5rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    .price-net-label { font-size: 1.5rem !important; }
    .price-net-value { font-size: 3.5rem !important; }
    
    .pricing-benefits {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

    .nav-list.active li {
        width: 100%;
        text-align: center;
    }

    .nav-list.active .nav-link {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-700);
        width: 100%;
        display: block;
        padding: 1.5rem;
    }

    .mobile-menu-icon {
        display: block;
        z-index: 1001;
        font-size: 2.5rem;
        color: var(--primary-600);
        cursor: pointer;
        padding: 5px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        width: 100%;
        text-align: center;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .tarifs-table {
        min-width: 100%;
    }

    .tarifs-table th,
    .tarifs-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Mobile Menu Icon (Hidden by default on desktop) */
.mobile-menu-icon {
    display: none;
}

/* --- REFINED ENGAGEMENTS SECTION (Left Aligned) --- */
.engagements-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
    position: relative;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.engagement-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-400);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.engagement-card:hover::before {
    opacity: 1;
}

.engagement-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-700);
    transition: transform 0.4s ease;
}

.engagement-card:hover .engagement-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary-200);
}

.engagement-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.engagement-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- PREMIUM CTA SECTION --- */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%23ffffff\' fill-opacity=\'0.05\'%3E%3Cpath d=\'M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-white {
    background: white;
    color: var(--primary-700);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    background: var(--surface-off-white);
}

/* --- ULTRA-PREMIUM PRICING COMPONENT (REWORKED) --- */
.section-premium-pricing {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #F8FAFC, #F1F8E9);
    position: relative;
    overflow: hidden;
}

.pricing-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 850px;
    margin: 0 auto;
}

/* Effet Shimmer (Miroitement) */
.pricing-card-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: rotate(25deg);
    transition: none;
    pointer-events: none;
    opacity: 0;
}

.pricing-card-premium:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 60px 120px -30px rgba(46, 125, 50, 0.15);
    border-color: var(--primary-200);
}

.pricing-card-premium:hover::after {
    animation: shimmer 1.5s infinite;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

.pricing-badge-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-50), white);
    color: var(--primary-700);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--primary-100);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-row-ttc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-label {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: -0.01em;
}

.price-value-ttc {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    font-variant-numeric: tabular-nums;
}

.price-net-highlight {
    background: linear-gradient(135deg, #1B5E20, var(--primary-600));
    color: white;
    padding: 3.5rem;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(27, 94, 32, 0.3);
    position: relative;
    overflow: hidden;
}

.price-net-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent);
}

.price-net-label {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.price-net-label small {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-net-value {
    font-size: 4.5rem;
    font-weight: 950;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: baseline;
}

.price-net-value small {
    font-size: 1.5rem;
    opacity: 0.7;
    margin-left: 4px;
}

.guarantee-badge-box {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--accent-gold);
    color: white;
    padding: 6px 18px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.05rem;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* --- MINI CONTACT FORM (IN-CARD) --- */
.pricing-mini-form {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.mini-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-form-title span {
    color: var(--primary-600);
}

.mini-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mini-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .mini-input-row { grid-template-columns: 1fr; }
}

.mini-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mini-input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-input-field {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.mini-input-field:focus {
    outline: none;
    background: white;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
}

.btn-submit-mini {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    border: none;
    border-radius: 100px;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.2);
    margin-top: 1rem;
}

.btn-submit-mini:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
}

.mini-form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1.25rem;
    text-align: center;
}

