/* 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 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 16px 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-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

/* 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 120px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(132, 66, 255, 0.08) 0%, transparent 60%);
}

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

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

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

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

.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: 120px 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: 32px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid var(--border-color);
}

.pricing-table th.feature-column {
    text-align: left;
    min-width: 250px;
}

.pricing-table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

.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: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
}

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

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

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

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

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

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

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

.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: 15px;
    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: 20px 24px !important;
    text-align: left !important;
}

/* Website Packages */
.website-packages {
    padding: 120px 0;
}

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

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

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

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

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

.package-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.package-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.package-price span {
    font-size: 20px;
    color: var(--text-secondary);
}

.package-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

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

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

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

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

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

    .hero {
        padding: 120px 0 80px;
    }

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

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

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

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