/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-gold: #FFBF00;
    --accent-pink: #FF3EB5;
    --accent-purple: #8442FF;
    --bg-dark: #FFFFFF;
    --bg-secondary: #F8F9FB;
    --bg-card: #FFFFFF;
    --text-primary: #1A1C24;
    --text-secondary: #5A5F73;
    --text-muted: #8B92A8;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 0;
}

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

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--accent-purple);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(132, 66, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 8px;
    border: 1.5px solid var(--border-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    background: rgba(132, 66, 255, 0.1);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 160px 0 300px;
    text-align: center;
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-logo {
    margin: 0 auto 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-logo img {
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typed.js cursor styling */
.typed-cursor {
    color: var(--accent-purple);
    font-weight: 800;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typed-text, .typed-subtitle {
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-highlight {
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.08) 0%, rgba(255, 62, 181, 0.08) 100%);
    border: 2px solid rgba(132, 66, 255, 0.2);
    border-radius: 12px;
    padding: 20px 32px;
    max-width: 720px;
    margin: 0 auto 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-highlight p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


.ecom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 40px;
}

.ecom-btn--primary {
    background: #1A1C24;
    color: white;
    border: 2px solid #1A1C24;
}

.ecom-btn--primary:hover {
    background: #2A2C34;
    border-color: #2A2C34;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 28, 36, 0.3);
}

.ecom-btn svg {
    transition: transform 0.3s;
}

.ecom-btn:hover svg {
    transform: translateX(4px);
}

.ecom-btn--outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.ecom-btn--outline:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Why Choose Section */
.why-choose {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Blur Text Animation */
.blur-text-animated {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blur-text-animated .word {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    animation: blurIn 0.8s ease-out forwards;
}

@keyframes blurIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 64px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.benefit-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(132, 66, 255, 0.15);
}

.benefit-icon {
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Value Proposition */
.value-prop {
    padding: 120px 0;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 64px;
}

.value-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.value-item:hover {
    border-color: var(--accent-purple);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(132, 66, 255, 0.12);
}

.value-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-text p {
    color: var(--text-secondary);
}

/* Pricing Entry */
.pricing-entry {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.1) 0%, rgba(255, 62, 181, 0.05) 100%);
}

.pricing-entry-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.price-highlight {
    color: var(--accent-gold);
    font-size: 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 24px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 20px;
}

.pricing-entry-note {
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 32px;
}

/* Comparison Table */
.comparison-table {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 64px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pricing-table thead tr {
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.08) 0%, rgba(255, 62, 181, 0.05) 100%);
}

.pricing-table th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid var(--border-color);
    vertical-align: top;
}

.pricing-table th.feature-column {
    text-align: center;
    min-width: 250px;
    font-size: 18px;
    vertical-align: middle;
}

.pricing-table td {
    padding: 8px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.pricing-table td.feature-name {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.highlight-column {
    background: rgba(132, 66, 255, 0.03);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.highlight-column.premium {
    background: linear-gradient(180deg, rgba(255, 191, 0, 0.05) 0%, rgba(255, 62, 181, 0.05) 100%);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.badge.diamond {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
}

.badge.ultim {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    color: white;
}

.badge.alacarte {
    background: linear-gradient(135deg, #4A90E2 0%, var(--accent-purple) 100%);
    color: white;
}

.pricing-table .price {
    font-size: 20px;
    font-weight: 800;
    display: block;
    margin: 8px 0 4px 0;
}

.pricing-table .small {
    font-size: 11px;
    color: var(--text-secondary);
}

.pricing-table .check {
    color: var(--accent-purple);
    font-size: 18px;
    font-weight: 800;
}

.pricing-table .included {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 12px;
}

.pricing-table .option {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 12px;
}

.center-text {
    text-align: center !important;
}

.section-separator {
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.12) 0%, rgba(255, 62, 181, 0.08) 100%);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-purple);
    border-top: 2px solid var(--accent-purple);
    border-bottom: 2px solid var(--accent-purple);
}

.section-separator td {
    padding: 12px 16px !important;
    text-align: left !important;
}

/* Website Packages */
.website-packages {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.package-card {
    background: var(--bg-card);
    border: 3px solid var(--border-color);
    border-radius: 16px;
    padding: 0;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: var(--accent-purple);
    background: var(--bg-card);
    overflow: visible;
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    border-radius: 13px 13px 0 0;
}

.package-card.premium-package {
    border-color: var(--accent-gold);
    background: var(--bg-card);
    overflow: visible;
}

.package-card.premium-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    border-radius: 13px 13px 0 0;
}

.premium-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 191, 0, 0.4);
    z-index: 10;
}

.package-card.premium-package:hover {
    box-shadow: 0 12px 40px rgba(255, 191, 0, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(132, 66, 255, 0.4);
    z-index: 10;
}

.package-header {
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.05) 0%, rgba(255, 62, 181, 0.03) 100%);
    padding: 32px 32px 24px 32px;
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.package-card.premium-package .package-header {
    background: linear-gradient(135deg, rgba(255, 191, 0, 0.08) 0%, rgba(255, 191, 0, 0.03) 100%);
    height: 176.39px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.package-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0;
    display: inline-block;
    white-space: nowrap;
}

.premium-package .package-price {
    font-size: 32px;
}

.package-price span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    display: inline;
    margin-left: 8px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .package-price {
        font-size: 32px;
        white-space: normal;
    }

    .package-price span {
        font-size: 12px;
    }
}

.package-description {
    color: var(--text-secondary);
    padding: 24px 32px;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.package-features {
    list-style: none;
    margin: 0;
    padding: 24px 32px 32px 32px;
    background: var(--bg-card);
}

.package-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 18px;
    top: 10px;
}

.package-card.premium-package .package-features li::before {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Maintenance Section */
.maintenance-section {
    margin-top: 32px;
}

.maintenance-card {
    background: var(--bg-card);
    border: 3px solid var(--accent-gold);
    border-radius: 16px;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(255, 191, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FF3EB5 100%);
}

.maintenance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 191, 0, 0.3);
}

.maintenance-header {
    background: linear-gradient(135deg, rgba(255, 191, 0, 0.08) 0%, rgba(255, 191, 0, 0.03) 100%);
    padding: 20px 40px 16px 40px;
    border-bottom: 2px solid var(--border-color);
    text-align: center;
}

.maintenance-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.maintenance-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
}

.maintenance-price span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 8px;
}

.maintenance-description {
    color: var(--text-secondary);
    padding: 16px 40px;
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.maintenance-features {
    list-style: none;
    margin: 0;
    padding: 16px 40px 20px 40px;
    background: var(--bg-card);
}

.maintenance-features li {
    padding: 8px 0 8px 32px;
    position: relative;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.maintenance-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 18px;
    top: 10px;
}

.btn-package {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(132, 66, 255, 0.3);
}

/* Calendly Services Section */
.calendly-services-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.section-white {
    background: #FFFFFF;
}

.calendly-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.calendly-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.calendly-service-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.calendly-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(132, 66, 255, 0.15);
}

.calendly-service-card.calendly-featured {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.05) 0%, rgba(255, 62, 181, 0.03) 100%);
}

.calendly-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.calendly-service-icon svg {
    width: 28px;
    height: 28px;
}

.calendly-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.calendly-service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.calendly-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.calendly-feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.calendly-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 16px;
}

/* Digital Features */
.digital-features {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.feature-showcase-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-showcase-item:hover {
    border-color: var(--accent-purple);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(132, 66, 255, 0.12);
}

.feature-showcase-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-showcase-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.small-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}

/* Community Management */
.community-management {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.cm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 64px;
    align-items: stretch;
}

.cm-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 40px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
}

.cm-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(132, 66, 255, 0.25);
}

.cm-card.premium-cm {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 191, 0, 0.05) 0%, rgba(255, 62, 181, 0.03) 100%);
    position: relative;
}

.cm-card.premium-cm::before {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
}

.cm-card.premium-cm:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(255, 191, 0, 0.3);
}

.cm-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.cm-badge {
    display: block;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.cm-badge.essential {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
}

.cm-badge.premium {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
}

.cm-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    text-align: center;
}

.cm-price span {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.cm-features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
}

.cm-features li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

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

.cm-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 20px;
    top: 16px;
}

.cm-card.premium-cm .cm-features li::before {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-cm {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 32px;
    box-shadow: 0 4px 16px rgba(132, 66, 255, 0.2);
}

.btn-cm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(132, 66, 255, 0.4);
}

.cm-card.premium-cm .btn-cm {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    box-shadow: 0 4px 16px rgba(255, 191, 0, 0.2);
}

.cm-card.premium-cm .btn-cm:hover {
    box-shadow: 0 8px 32px rgba(255, 191, 0, 0.4);
}

/* ========================================= */
/* COMMUNITY MANAGEMENT ONEPAGE SECTIONS     */
/* ========================================= */

/* CM Hero */
.cm-hero {
    padding: 180px 0 120px;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background floating shapes */
.cm-hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cm-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
}

.cm-hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: -120px;
    right: -100px;
    animation: cmFloat 8s ease-in-out infinite;
}

.cm-hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    bottom: -80px;
    left: -80px;
    animation: cmFloat 10s ease-in-out infinite reverse;
}

.cm-hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: cmFloat 12s ease-in-out infinite 2s;
}

@keyframes cmFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.cm-hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Label tag */
.cm-hero-label {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.1) 0%, rgba(255, 62, 181, 0.1) 100%);
    border: 1px solid rgba(132, 66, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-purple);
    margin-bottom: 32px;
    animation: cmFadeUp 0.8s ease-out both;
}

.cm-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 0;
    letter-spacing: -1.5px;
    animation: cmFadeUp 0.8s ease-out 0.15s both;
}

.cm-hero-highlight {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: cmFadeUp 0.8s ease-out 0.15s both, cmGradientShift 6s ease-in-out infinite;
}

@keyframes cmGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Divider line */
.cm-hero-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    border-radius: 4px;
    margin: 32px auto;
    animation: cmFadeUp 0.8s ease-out 0.3s both;
}

.cm-hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: cmFadeUp 0.8s ease-out 0.4s both;
}

.cm-hero-sep {
    color: var(--accent-purple);
    font-weight: 300;
    opacity: 0.5;
}

.cm-hero-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: cmFadeUp 0.8s ease-out 0.5s both;
}

.cm-hero-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.06) 0%, rgba(255, 62, 181, 0.06) 100%);
    border: 1px solid rgba(132, 66, 255, 0.15);
    border-radius: 16px;
    animation: cmFadeUp 0.8s ease-out 0.6s both;
}

.cm-hero-lead-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: #fff;
    flex-shrink: 0;
}

.cm-hero-lead-icon svg {
    width: 18px;
    height: 18px;
}

/* CM Hero Image */
.cm-hero-image {
    margin-top: 56px;
    animation: cmFadeUp 0.8s ease-out 0.7s both;
}

.cm-hero-image img {
    max-width: 520px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

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

/* CM Section Title (shared) */
.cm-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.3;
}

/* CM Constat */
.cm-constat {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.cm-constat-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cm-constat-intro {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.cm-constat-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.cm-constat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cm-constat-cross {
    font-size: 24px;
    font-weight: 700;
    color: #E53E3E;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 62, 62, 0.08);
    border-radius: 50%;
}

.cm-constat-item p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
}

.cm-constat-solution {
    margin-top: 48px;
}

.cm-constat-what {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}

.cm-constat-keywords {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.cm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    flex-shrink: 0;
}

.cm-constat-cta {
    font-size: 18px;
    color: var(--text-secondary);
}

/* CM Video Carousel */
.cm-video-carousel {
    margin-top: 64px;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.cm-video-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: cmVideoScroll 40s linear infinite;
}

.cm-video-track:hover {
    animation-play-state: paused;
}

.cm-video-item {
    flex-shrink: 0;
    width: 280px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: #000;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cm-video-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-purple);
}

.cm-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes cmVideoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .cm-video-item {
        width: 200px;
        height: 356px;
    }

    .cm-video-track {
        gap: 12px;
    }

    .cm-video-carousel {
        margin-top: 40px;
    }
}

/* CM Approche */
.cm-approche {
    padding: 100px 0;
    background: #fff;
}

.cm-approche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cm-approche-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.cm-approche-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-purple);
}

.cm-approche-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.cm-approche-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cm-approche-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.cm-approche-accent {
    font-weight: 600;
    color: var(--text-primary) !important;
    font-style: italic;
}

/* CM Approche Showcase */
.cm-approche-showcase {
    margin-top: 64px;
    text-align: center;
}

.cm-approche-showcase img {
    max-width: 550px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .cm-approche-showcase img {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* CM Offres */
.cm-offres {
    padding: 100px 0;
    background: var(--bg-secondary);
}

/* CM Clients */
.cm-clients {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.cm-clients-intro {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 650px;
    margin: -20px auto 48px;
}

.cm-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cm-client-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s;
}

.cm-client-item:hover {
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* CM Clients Carousel */
.cm-clients-carousel {
    margin-top: 48px;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.cm-clients-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: cmClientsScroll 35s linear infinite;
}

.cm-clients-track:hover {
    animation-play-state: paused;
}

.cm-clients-slide {
    flex-shrink: 0;
    width: 220px;
    height: 391px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.cm-clients-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(132, 66, 255, 0.2);
    border-color: var(--accent-purple);
}

.cm-clients-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.cm-clients-slide:hover img {
    transform: scale(1.08);
}

@keyframes cmClientsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .cm-clients-slide {
        width: 170px;
        height: 302px;
    }

    .cm-clients-track {
        gap: 12px;
    }
}

/* CM Résultats */
.cm-resultats {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.cm-resultats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.cm-resultat-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 24px;
    transition: all 0.4s;
    animation: cmResultPop 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.cm-resultat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.06) 0%, rgba(255, 62, 181, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.cm-resultat-item:hover::after {
    opacity: 1;
}

.cm-resultat-item:nth-child(1) { animation-delay: 0.1s; }
.cm-resultat-item:nth-child(2) { animation-delay: 0.25s; }
.cm-resultat-item:nth-child(3) { animation-delay: 0.4s; }
.cm-resultat-item:nth-child(4) { animation-delay: 0.55s; }

.cm-resultat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(132, 66, 255, 0.2);
    border-color: var(--accent-purple);
}

.cm-resultat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: var(--accent-purple);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.08) 0%, rgba(255, 62, 181, 0.08) 100%);
    border-radius: 50%;
    padding: 12px;
    transition: transform 0.4s, background 0.4s;
}

.cm-resultat-item:hover .cm-resultat-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.15) 0%, rgba(255, 62, 181, 0.15) 100%);
}

.cm-resultat-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes cmResultPop {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cm-resultat-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cm-resultat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cm-resultats-footer {
    font-size: 18px;
    color: var(--text-secondary);
}

/* CM Résultats Image */
.cm-resultats-image {
    margin-top: 48px;
    text-align: center;
}

.cm-resultats-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

/* CM Pourquoi ODY */
.cm-pourquoi {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.cm-pourquoi-content {
    max-width: 700px;
    margin: 0 auto;
}

.cm-pourquoi-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.cm-pourquoi-force {
    margin-top: 32px;
    font-size: 19px;
    padding: 24px 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    color: var(--text-primary) !important;
}

/* CM Processus */
.cm-processus {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.cm-processus-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 56px;
    padding-top: 40px;
}

.cm-processus-line {
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-purple));
    background-size: 200% 100%;
    animation: cmLineShimmer 4s ease-in-out infinite;
    border-radius: 3px;
}

@keyframes cmLineShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cm-processus-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.cm-processus-dot {
    position: relative;
    margin-bottom: 20px;
}

.cm-processus-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    transform: scale(0.8);
    z-index: -1;
}

.cm-processus-step:hover .cm-processus-dot::before {
    opacity: 0.15;
    transform: scale(1.4);
}

.cm-processus-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(132, 66, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cm-processus-step:hover .cm-processus-num {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(132, 66, 255, 0.45);
}

.cm-processus-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s;
    width: 100%;
}

.cm-processus-step:hover .cm-processus-card {
    border-color: var(--accent-purple);
    box-shadow: 0 12px 40px rgba(132, 66, 255, 0.15);
    transform: translateY(-6px);
}

.cm-processus-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    color: var(--accent-purple);
    transition: transform 0.3s;
}

.cm-processus-step:hover .cm-processus-icon {
    transform: scale(1.15);
}

.cm-processus-icon svg {
    width: 100%;
    height: 100%;
}

.cm-processus-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cm-processus-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cm-processus-footer {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .cm-processus-timeline {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-top: 0;
    }

    .cm-processus-line {
        display: none;
    }

    .cm-processus-step {
        width: 100%;
        max-width: 320px;
    }
}

/* CM Separator */
.cm-separator {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.cm-separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.cm-separator-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 768px) {
    .cm-separator {
        padding: 48px 24px;
        gap: 16px;
    }

    .cm-separator-title {
        font-size: 20px;
    }
}

/* CM Responsive */
@media (max-width: 768px) {
    .cm-hero {
        padding: 140px 0 80px;
    }

    .cm-hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .cm-hero-subtitle {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
    }

    .cm-hero-sep {
        display: none;
    }

    .cm-hero-lead {
        font-size: 15px;
        padding: 14px 20px;
        flex-direction: column;
        text-align: center;
    }

    .cm-hero-shape-1 {
        width: 300px;
        height: 300px;
    }

    .cm-hero-shape-2 {
        width: 250px;
        height: 250px;
    }

    .cm-hero-shape-3 {
        width: 200px;
        height: 200px;
    }

    .cm-section-title {
        font-size: 26px;
    }

    .cm-approche-grid {
        grid-template-columns: 1fr;
    }

    .cm-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cm-resultats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cm-constat-keywords {
        font-size: 22px;
        gap: 12px;
    }
}

/* Coming Soon */
.coming-soon {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.coming-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.coming-item {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.coming-item:hover {
    border-color: var(--accent-purple);
    border-style: solid;
    box-shadow: 0 8px 24px rgba(132, 66, 255, 0.12);
}

.coming-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.coming-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Key Formulas */
.key-formulas {
    padding: 120px 0;
}

.formulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.formula-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.formula-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 16px 48px rgba(132, 66, 255, 0.15);
}

.formula-card.highlighted {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.05) 0%, rgba(255, 62, 181, 0.03) 100%);
}

.formula-card.premium-formula {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 191, 0, 0.05) 0%, rgba(255, 62, 181, 0.03) 100%);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
}

.formula-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.formula-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.formula-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.formula-features {
    list-style: none;
    margin-bottom: 32px;
}

.formula-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
}

.formula-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-weight: 800;
    font-size: 18px;
}

.btn-formula {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-formula:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(132, 66, 255, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.08) 0%, rgba(255, 62, 181, 0.05) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Conclusion Section */
.conclusion-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.05) 0%, rgba(255, 62, 181, 0.03) 100%);
}

.conclusion-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 32px;
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.features-main-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FF3EB5 0%, #8442FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-primary);
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-purple);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.1) 0%, rgba(255, 62, 181, 0.1) 100%);
    border-radius: 12px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 0;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-size: 10px;
    top: 4px;
}

.coming-soon-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #4A90E2 0%, var(--accent-purple) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
    z-index: 10;
}

/* ODY Presentation Section */
.ody-presentation {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.03) 0%, rgba(255, 62, 181, 0.02) 100%);
}

.ody-presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.ody-left-column {
    position: relative;
}

.ody-right-column {
    position: relative;
}

.ody-intro {
    text-align: left;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out;
}

.ody-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text-ody {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typed-text-ody, .typed-subtitle-ody {
    display: inline-block;
}

.ody-lead {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 500;
}

.ody-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats Banner */
.ody-stats-banner {
    position: relative;
    margin-bottom: 80px;
    padding: 40px 0;
    min-height: 600px;
}

.ody-stat-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky;
    top: 120px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ody-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 50%, var(--accent-gold) 100%);
    transition: left 0.4s ease;
}

.ody-stat-item:hover::before {
    left: 0;
}

.ody-stat-item:nth-child(1) {
    top: 120px;
    z-index: 4;
}

.ody-stat-item:nth-child(2) {
    top: 130px;
    z-index: 3;
}

.ody-stat-item:nth-child(3) {
    top: 140px;
    z-index: 2;
}

.ody-stat-item:nth-child(4) {
    top: 150px;
    z-index: 1;
}

.ody-stat-item:nth-child(1):hover {
    border-color: var(--accent-purple);
    box-shadow: 0 20px 50px rgba(132, 66, 255, 0.3);
}

.ody-stat-item:nth-child(2):hover {
    border-color: var(--accent-pink);
    box-shadow: 0 20px 50px rgba(255, 62, 181, 0.3);
}

.ody-stat-item:nth-child(3):hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(255, 191, 0, 0.3);
}

.ody-stat-item:nth-child(4):hover {
    border-color: var(--accent-purple);
    box-shadow: 0 20px 50px rgba(132, 66, 255, 0.3);
}

.ody-stat-item:hover {
    transform: scale(1.02);
}

.ody-stat-item:nth-child(1) .ody-stat-number {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ody-stat-item:nth-child(2) .ody-stat-number {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ody-stat-item:nth-child(3) .ody-stat-number {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ody-stat-item:nth-child(4) .ody-stat-number {
    color: var(--accent-pink);
}

.ody-stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.ody-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ody-why-section {
    margin-bottom: 0;
    animation: fadeInUp 1.2s ease-out 0.4s backwards;
}

.ody-section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 48px;
    color: var(--text-primary);
    position: relative;
}

.ody-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    margin: 16px 0 0 0;
    border-radius: 2px;
}

.ody-reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ody-reason-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.ody-reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    transition: height 0.4s ease;
}

.ody-reason-card:hover::before {
    height: 100%;
}

.ody-reason-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: 0 16px 48px rgba(132, 66, 255, 0.2);
}

.ody-reason-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.8;
}

.ody-reason-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.ody-reason-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.ody-impact {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 3px solid var(--accent-purple);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(132, 66, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.4s ease-out 0.6s backwards;
}

.ody-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
}

.ody-impact-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.ody-impact-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ody-benefits-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 750px;
    margin: 0 auto;
}

.ody-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.08) 0%, rgba(255, 62, 181, 0.05) 100%);
    padding: 18px 20px;
    border-radius: 12px;
    border: 2px solid rgba(132, 66, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ody-benefit-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(132, 66, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.ody-benefit-item:hover::before {
    width: 300px;
    height: 300px;
}

.ody-benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-purple);
    box-shadow: 0 8px 24px rgba(132, 66, 255, 0.25);
}

.ody-benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent-purple);
    z-index: 1;
    transition: transform 0.3s ease;
}

.ody-benefit-item:hover .ody-benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.ody-benefit-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .packages-grid,
    .formulas-grid,
    .cm-grid {
        grid-template-columns: 1fr;
    }

    .features-main-title {
        font-size: 36px;
    }

    .features-subtitle {
        font-size: 32px;
    }

    .features-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero {
        padding: 120px 0 200px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .blur-text-animated {
        gap: 0.3rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .table-wrapper {
        overflow-x: scroll;
    }

    .pricing-table {
        min-width: 800px;
    }

    .features-main-title {
        font-size: 32px;
    }

    .features-subtitle {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .ody-presentation {
        padding: 60px 0;
    }

    .ody-presentation-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ody-intro {
        margin-bottom: 40px;
        text-align: center;
    }

    .ody-main-title {
        font-size: 28px;
    }

    .ody-lead {
        font-size: 17px;
    }

    .ody-subtitle {
        font-size: 15px;
    }

    .ody-section-title {
        text-align: center;
    }

    .ody-section-title::after {
        margin: 16px auto 0;
    }

    .ody-stats-banner {
        min-height: auto;
        padding: 20px 0;
        margin-bottom: 60px;
    }

    .ody-stat-item {
        padding: 24px 16px;
        position: relative;
        top: 0 !important;
        margin-bottom: 16px;
    }

    .ody-stat-item:nth-child(1),
    .ody-stat-item:nth-child(2),
    .ody-stat-item:nth-child(3),
    .ody-stat-item:nth-child(4) {
        top: 0 !important;
    }

    .ody-stat-number {
        font-size: 36px;
    }

    .ody-stat-label {
        font-size: 12px;
    }

    .ody-section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }


    .ody-reason-card {
        padding: 32px 20px;
    }

    .ody-reason-number {
        font-size: 48px;
    }

    .ody-impact {
        padding: 32px 24px;
    }

    .ody-impact-title {
        font-size: 22px;
    }

    .ody-impact-description {
        font-size: 15px;
    }

    .ody-benefits-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ody-benefit-item {
        padding: 16px 18px;
    }

    .conclusion-section {
        padding: 60px 0;
    }

    .conclusion-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
}
