@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --color-dark: #1a1a1a;
    --color-grey-dark: #2d2d2d;
    --color-grey: #6b6b6b;
    --color-grey-light: #a8a8a8;
    --color-white: #ffffff;
    --color-cream: #fdfcfa;
    --color-accent: #ff6b35;
    --color-accent-light: #ff8557;
    --color-blue: #2563eb;
    --color-green: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 20px 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.menu-list a {
    text-decoration: none;
    color: var(--color-grey);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.menu-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.menu-list a:hover,
.menu-list a.current {
    color: var(--color-dark);
}

.menu-list a:hover::after,
.menu-list a.current::after {
    width: 100%;
}

.action-btn {
    background: var(--color-dark);
    color: var(--color-white) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-dark);
}

.action-btn::after {
    display: none;
}

.action-btn:hover {
    background: transparent;
    color: var(--color-dark) !important;
    transform: translateY(-2px);
}

/* Hero */
.hero-section {
    padding: 180px 0 120px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-grey-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 22px;
    color: var(--color-grey);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    padding: 16px 40px;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.primary-btn:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.secondary-btn {
    padding: 16px 40px;
    background: var(--color-white);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--color-dark);
}

.secondary-btn:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Content Sections */
.content-block {
    padding: 100px 0;
}

.content-block.alt {
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-heading {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-subtext {
    font-size: 20px;
    color: var(--color-grey);
    max-width: 680px;
    margin: 0 auto;
}

/* Cards Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.info-card {
    background: var(--color-white);
    padding: 48px 36px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.content-block.alt .info-card {
    background: var(--color-cream);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.info-card:nth-child(2) .card-icon {
    background: var(--gradient-2);
}

.info-card:nth-child(3) .card-icon {
    background: var(--gradient-3);
}

.info-card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.info-card:nth-child(5) .card-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.info-card:nth-child(6) .card-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.card-text {
    font-size: 16px;
    color: var(--color-grey);
    line-height: 1.7;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-box {
    background: var(--color-white);
    border-radius: 20px;
    padding: 44px 36px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.price-box:hover {
    border-color: var(--color-accent);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.price-box.highlight {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
    transform: scale(1.05);
}

.price-box.highlight:hover {
    transform: scale(1.07);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 15px;
    color: var(--color-grey);
    margin-bottom: 28px;
}

.price-box.highlight .plan-desc {
    color: var(--color-grey-light);
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
}

.price-period {
    font-size: 15px;
    color: var(--color-grey);
    margin-bottom: 32px;
}

.price-box.highlight .price-period {
    color: var(--color-grey-light);
}

.feature-list {
    list-style: none;
    margin-bottom: 36px;
}

.feature-list li {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-box.highlight .feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.feature-list li::before {
    content: '✓';
    color: var(--color-green);
    font-weight: bold;
    margin-right: 12px;
}

.price-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.price-btn:hover {
    background: var(--color-grey-dark);
}

.price-box.highlight .price-btn {
    background: var(--color-white);
    color: var(--color-dark);
}

.price-box.highlight .price-btn:hover {
    background: var(--color-cream);
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-item {
    padding: 32px;
}

.stat-value {
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-item:nth-child(2) .stat-value {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(3) .stat-value {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 17px;
    color: var(--color-grey);
    font-weight: 500;
}

/* Footer */
.page-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
}

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

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    color: var(--color-grey-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-grey-light);
    font-size: 14px;
}

/* Template Showcase */
.template-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.template-box {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.template-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.template-visual {
    height: 220px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.template-box:nth-child(2) .template-visual {
    background: var(--gradient-2);
}

.template-box:nth-child(3) .template-visual {
    background: var(--gradient-3);
}

.template-box:nth-child(4) .template-visual {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.template-box:nth-child(5) .template-visual {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.template-box:nth-child(6) .template-visual {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.template-info {
    padding: 28px;
}

.template-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.template-description {
    font-size: 15px;
    color: var(--color-grey);
    line-height: 1.6;
}

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

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

    .section-heading {
        font-size: 36px;
    }

    .menu-list {
        gap: 24px;
    }

    .card-grid,
    .pricing-grid,
    .template-showcase {
        grid-template-columns: 1fr;
    }
}
