:root {
    --primary: #076490;
    --primary-dark: #054d6e;
    --primary-light: #0a7db5;
    --text: #051829;
    --text-light: #3a4a5a;
    --white: #ffffff;
    --gray-light: #f5f7fa;
    --gray-medium: #e8ecf0;
    --gradient-primary: linear-gradient(135deg, #076490 0%, #169ddf 100%);
    --shadow-sm: 0 2px 8px rgba(5, 24, 41, 0.06);
    --shadow-md: 0 8px 30px rgba(5, 24, 41, 0.08);
    --shadow-lg: 0 20px 60px rgba(5, 24, 41, 0.12);
    --shadow-xl: 0 30px 80px rgba(5, 24, 41, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}
html, body {
    overflow-x: clip;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Active nav link state */
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
    background: var(--gradient-primary);
}

/* Mobile menu active state */
.mobile-menu a.active {
    color: var(--primary);
    position: relative;
}

.mobile-menu a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-light);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

section {
    padding: 100px 0;
}

@media (min-width: 768px) {
    section {
        padding: 140px 0;
    }
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(7, 100, 144, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-medium);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--gray-light);
    transform: translateY(-3px);
}

.btn-large {
    padding: 22px 34px;
    font-size: 19px;
    border-radius: var(--radius-lg);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-smooth);
    background: rgba(255, 255, 255, 0);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 44px;
    height: 44px;
    /*background: var(--gradient-primary);*/
    /*border-radius: var(--radius-sm);*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.logo-svg {
    width: 28px; /* ajuste selon ton design */
    height: auto;
}
.logo:hover {
    color: var(--primary-light);
}


.nav-links {
    display: none;
    align-items: center;
    gap: 40px;
    list-style: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(7, 100, 144, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    min-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.hero-title {
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text);
}

.hero-feature svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mockup-browser {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-medium);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray-medium);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28ca41; }

.mockup-url {
    flex: 1;
    margin-left: 16px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.mockup-content {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.mockup-site {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: url("../assets/images/demo-ce-1b.jpg") no-repeat center center/cover;
}

.mockup-site-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    display: none;
}

.mockup-site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-site-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
}

.mockup-site-logo-text {
    width: 80px;
    height: 14px;
    background: var(--text);
    border-radius: 4px;
}

.mockup-site-nav {
    display: flex;
    gap: 20px;
}

.mockup-site-nav span {
    width: 50px;
    height: 10px;
    background: var(--gray-medium);
    border-radius: 4px;
}

.mockup-site-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(7, 100, 144, 0.05) 0%, rgba(7, 100, 144, 0.02) 100%);
}

.mockup-site-hero-content {
    text-align: center;
    display: none;
}

.mockup-site-hero h3 {
    width: 200px;
    height: 20px;
    background: var(--text);
    border-radius: 6px;
    margin: 0 auto 16px;
}

.mockup-site-hero p {
    width: 160px;
    height: 10px;
    background: var(--gray-medium);
    border-radius: 4px;
    margin: 0 auto 20px;
}

.mockup-site-hero-btn {
    width: 100px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    margin: 0 auto;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    animation: float 8s ease-in-out infinite;
    max-width: 190px;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: -2s;
}

.floating-card-2 {
    bottom: 20%;
    left: -12%;
    animation-delay: -4s;
}

.floating-card-3 {
    bottom: -30%;
    right: -15%;
    animation-delay: -3s;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 24px;
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.floating-card-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    width: fit-content;
}

.floating-card-value {
    font-size: 0.8rem;
    color: var(--text-light);
    width: fit-content;
}

@media (max-width: 1199px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    .floating-card-1 {
        top: 30%;
        right: -3%;
        animation-delay: -2s;
    }
    .floating-card-2 {
        left: -6%;
    }
    .floating-card-3 {
        bottom: -9%;
        right: -6%;
    }
    #pricing .section-header {
        margin: 0 auto 40px;
    }
}

@media (max-width: 1023px) {
    /*.hero-floating-card {*/
    /*    display: none;*/
    /*}*/
}

/* Features Section */
.features {
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(7, 100, 144, 0.08);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 20px;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    text-wrap: balance;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.feature-card {
    padding: 40px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: color var(--transition-smooth);
}

.feature-card:hover .feature-icon svg {
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Showcase Section */
.showcase {
    background: var(--gray-light);
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.showcase-image {
    aspect-ratio: 4/4;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.showcase-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.showcase-item:hover .showcase-image::before {
    opacity: 0.1;
}

.showcase-placeholder {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-medium);
    display: flex;
    flex-direction: column;
}

.showcase-placeholder-header {
    height: 40px;
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray-medium);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}

.showcase-placeholder-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-medium);
}

.showcase-placeholder-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.stagger-1 .showcase-placeholder-body {
    background: url("../assets/images/demo-ce-accueil-2.jpg") no-repeat top center/cover;
}
.stagger-2 .showcase-placeholder-body {
    background: url("../assets/images/demo-ce-a-propos.jpg") no-repeat top center/cover;
}
.stagger-3 .showcase-placeholder-body {
    background: url("../assets/images/demo-ce-equipe.jpg") no-repeat top center/cover;
}
.stagger-4 .showcase-placeholder-body {
    background: url("../assets/images/demo-ce-services.jpg") no-repeat top center/cover;
}
.stagger-5 .showcase-placeholder-body {
    background: url("../assets/images/demo-ce-carrieres-2.jpg") no-repeat top center/cover;
}
.stagger-6 .showcase-placeholder-body {
    background: url("../assets/images/demo-ce-contact.jpg") no-repeat top center/cover;
}
.showcase-placeholder-line {
    height: 10px;
    background: var(--gray-light);
    border-radius: 4px;
    display: none;
}

.showcase-placeholder-line:nth-child(1) { width: 80%; }
.showcase-placeholder-line:nth-child(2) { width: 60%; }
.showcase-placeholder-line:nth-child(3) { width: 90%; }
.showcase-placeholder-line:nth-child(4) { width: 45%; }

.showcase-label {
    padding: 20px 24px;
    background: var(--white);
    border-top: 1px solid var(--gray-medium);
}

.showcase-label h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.showcase-label p {
    font-size: 0.875rem;
}

.showcase-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    justify-content: center;
    margin-top: 60px;
}
/* Pricing Section */
.pricing {
    background: var(--white);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(7, 100, 144, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--gray-medium);
}

.pricing-header {
    background: var(--gradient-primary);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-wrap: balance;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.pricing-badge em,.pricing-period em {
    font-style: normal;
    text-wrap: nowrap;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 2rem;
    font-weight: 600;
}

.pricing-value {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-original {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    text-decoration: line-through;
}

.pricing-period {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.pricing-body {
    padding: 50px 40px;
}

.pricing-payment {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 40px;
    text-align: center;
}

.pricing-payment-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.pricing-payment p {
    font-size: 0.95rem;
    text-wrap: balance;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0px;
}

.pricing-features span {
    color: var(--text);
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta .btn {
    width: 100%;
    margin-bottom: 20px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-guarantee svg {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.pricing-guarantee span {
    text-wrap: balance;
}
/* Process Section */
.process {
    background: var(--gray-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.process-step {
    position: relative;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 24px;
    position: relative;
}

.process-step h3 {
    margin-bottom: 12px;
    text-wrap: balance;
}

.process-step p {
    font-size: 0.95rem;
    text-wrap: balance;
}

@media (min-width: 1024px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 70px;
        right: -12px;
        width: 24px;
        height: 2px;
        background: var(--gray-medium);
    }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 24px;
    text-wrap: balance;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    text-wrap: balance;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    row-gap: 45px;
    font-size: 18px;
}

.cta-buttons i {
    font-size: 28px;
}

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

.btn-white:hover {
    background: var(--gray-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq {
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-medium);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-smooth);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    transition: transform var(--transition-smooth);
}

.faq-item.open .faq-icon {
    background: var(--primary);
}

.faq-item.open .faq-icon svg {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 28px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-method-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method-text p {
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    background: var(--white);
    border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

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

.form-submit {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--text);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    /*background: var(--primary);*/
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 100px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.calendly-badge-widget .calendly-badge-content {
    background: var(--gradient-primary)!important;
    transition: all var(--transition-smooth);
}
.calendly-badge-widget:hover .calendly-badge-content:hover {
    transform: translateY(-3px)!important;
    box-shadow: 0 8px 30px rgba(7, 100, 144, 0.4)!important;
}
.calendly-badge-widget .calendly-badge-content span {
    display: none!important;
}
/*.calendly-badge-widget:hover::before {*/
/*    left: 100%;*/
/*}*/
/*.calendly-badge-widget::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);*/
/*    transition: left 0.5s;*/
/*}*/
#signatureM {
    color: #989898;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    width: fit-content;
}
#signatureM img {
    height: 23px;
    position: relative;
    top: 0px;
}
/* Thank You / Success Block */
.thank-you-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-medium);
    animation: fadeInUp 0.8s ease forwards;
}

.thank-you-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.thank-you-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.thank-you-header h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 12px;
    position: relative;
}

.thank-you-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    position: relative;
}

.thank-you-body {
    padding: 50px 40px;
}

.thank-you-steps-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.thank-you-steps-title svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.thank-you-steps {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.thank-you-steps li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-light);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.thank-you-steps li:nth-child(1) { animation-delay: 0.2s; }
.thank-you-steps li:nth-child(2) { animation-delay: 0.3s; }
.thank-you-steps li:nth-child(3) { animation-delay: 0.4s; }
.thank-you-steps li:nth-child(4) { animation-delay: 0.5s; }
.thank-you-steps li:nth-child(5) { animation-delay: 0.6s; }

.thank-you-steps li:last-child {
    border-bottom: none;
}

.thank-you-step-number {
    width: 32px;
    height: 32px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.thank-you-steps li span {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 4px;
}

.thank-you-cta {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.thank-you-cta-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thank-you-cta-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.thank-you-cta-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thank-you-cta-text strong {
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .thank-you-header,
    .thank-you-body {
        padding: 32px 24px;
    }

    .thank-you-cta {
        flex-direction: column;
        text-align: center;
    }
}
/* Payment Error Block */
.payment-error-block {
    max-width: 700px;
    margin: 0 auto 60px;
    animation: fadeInUp 0.6s ease forwards;
}

.payment-error-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #fecaca;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.payment-error-accent {
    width: 6px;
    background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
    flex-shrink: 0;
}

.payment-error-content {
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.payment-error-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-error-icon svg {
    width: 24px;
    height: 24px;
    fill: #dc2626;
}

.payment-error-text {
    flex: 1;
}

.payment-error-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 8px;
}

.payment-error-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.payment-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-error-actions .btn-retry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #dc2626;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.payment-error-actions .btn-retry:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.payment-error-actions .btn-retry svg {
    width: 16px;
    height: 16px;
}

.payment-error-actions .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--gray-medium);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.payment-error-actions .btn-contact:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.payment-error-actions .btn-contact svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .payment-error-content {
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }

    .payment-error-icon {
        margin: 0 auto;
    }

    .payment-error-actions {
        justify-content: center;
    }
}