/* 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: 6px 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);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 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;
}

.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);
}

/* 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;
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 72px;
}

.about-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Timeline layout */
.about-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-pink));
    border-radius: 3px;
}

.about-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.about-step-number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(132, 66, 255, 0.3);
}

.about-step-content {
    flex: 1;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.4s ease;
}

.about-step-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(132, 66, 255, 0.12);
    border-color: rgba(132, 66, 255, 0.3);
}

.about-step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Values bar */
.about-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 64px;
    padding: 28px 40px;
    background: linear-gradient(135deg, rgba(132, 66, 255, 0.06), rgba(255, 62, 181, 0.06));
    border-radius: 16px;
    border: 1px solid rgba(132, 66, 255, 0.15);
}

.about-value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.about-value-icon {
    font-size: 22px;
}

/* Fade-in-up animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: calc(var(--delay, 0) * 0.15s);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 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: row;
        align-items: center;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 1001;
        padding: 80px 20px 40px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        font-size: 22px;
        font-weight: 600;
        padding: 8px 0;
    }

    .nav .language-selector {
        margin-left: 0;
        margin-top: 16px;
    }

    .nav .language-selector select {
        font-size: 16px;
        padding: 12px 20px;
    }

    .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: hidden;
    }

    .pricing-table {
        min-width: unset;
        width: 100%;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .pricing-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 4px;
        padding: 10px 12px;
        border-bottom: 1px solid var(--border-color);
    }

    .pricing-table tr.section-separator {
        grid-template-columns: 1fr;
        background: linear-gradient(135deg, rgba(132, 66, 255, 0.08) 0%, rgba(255, 62, 181, 0.05) 100%);
        padding: 12px;
        border-radius: 8px;
        margin-top: 8px;
    }

    .pricing-table tr.section-separator td {
        border: none;
        text-align: left;
        font-size: 13px;
    }

    .pricing-table td.feature-name {
        grid-column: 1 / -1;
        text-align: left;
        font-size: 14px;
        font-weight: 700;
        padding-bottom: 6px;
        border-bottom: none;
    }

    .pricing-table td {
        padding: 6px 4px;
        font-size: 12px;
        border-bottom: none;
        text-align: center;
    }

    .pricing-table td:not(.feature-name):not([colspan]) {
        background: rgba(0, 0, 0, 0.02);
        border-radius: 6px;
        padding: 8px 4px;
    }

    .pricing-table td:not(.feature-name):not([colspan])::before {
        display: block;
        font-size: 10px;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 2px;
    }

    .pricing-table td:not(.feature-name):not([colspan]):nth-child(2)::before {
        content: "99€/mois";
    }

    .pricing-table td:not(.feature-name):not([colspan]):nth-child(3)::before {
        content: "800€/mois";
    }

    .pricing-table td.highlight-column {
        border-left: none;
        border-right: none;
        background: rgba(132, 66, 255, 0.06);
    }

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

    .pricing-table th.feature-column {
        min-width: unset;
    }

    .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;
    }

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

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

    .about-timeline::before {
        left: 24px;
    }

    .about-step {
        gap: 20px;
        padding: 20px 0;
    }

    .about-step-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .about-step-content {
        padding: 20px;
    }

    .about-values {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        align-items: center;
    }
}
