/* HERO */
.hero {
    position: relative;
    padding: 100px 0 60px;
    overflow: hidden;
    min-height: 420px
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    right: 0;
    position: absolute;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 20%, transparent), linear-gradient(0deg, var(--bg), transparent 20%)
}

.hero .container {
    position: relative;
    z-index: 2
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px
}

.hero h1 .accent {
    color: var(--primary);
    font-style: italic
}

.hero p {
    color: var(--fg-muted);
    font-size: 1rem;
    max-width: 420px;
    margin-bottom: 24px
}

.hero-stats {
    display: flex;
    gap: 5px;
    flex-direction: column;
    margin-top: 20px;
    font-size: .85rem;
    color: var(--fg-muted)
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 6px
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary)
}

/* FEATURES ROW */
.features-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 48px 32px;
    border-bottom: 1px solid var(--border)
}

.feature-item {
    text-align: center
}

.feature-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
    font-size: 1.3rem
}

.feature-item h3 {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase
}

.feature-item h3 .gold {
    color: var(--primary)
}

/* PRICING */
.pricing-section {
    padding: 56px 32px 40px;
    max-width: 1400px;
    margin: 0 auto
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start
}

.plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px 32px;
    position: relative;
    transition: transform .3s, border-color .3s
}

.plan-card:hover {
    transform: translateY(-4px)
}

.plan-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.04);
    z-index: 2;
    box-shadow: 0 0 40px rgba(245, 166, 35, .15)
}

.plan-card.featured:hover {
    transform: scale(1.04) translateY(-4px)
}

.plan-badge {
    display: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: .5px
}

.plan-card.featured .plan-badge {
    background: var(--primary);
    color: #000
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.plan-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1
}

.plan-price sup {
    font-size: 1.4rem;
    vertical-align: super
}

.plan-period {
    color: var(--text-muted);
    font-size: .82rem;
    margin-top: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: .5px
}

.plan-features {
    list-style: none;
    margin-bottom: 28px
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
    margin-bottom: 10px;
    color: var(--text-muted)
}

.plan-features li i {
    color: var(--primary);
    margin-top: 2px;
    font-size: .75rem
}

.plan-features li strong {
    color: var(--text);
    font-weight: 700
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .5px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    text-transform: uppercase
}

.plan-btn.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.plan-btn.outline:hover {
    background: var(--primary);
    color: #000
}

.plan-btn.filled {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #000
}

.plan-btn.filled:hover {
    opacity: .9
}

.diamond-icon {
    font-size: 2.4rem;
    color: #ccc;
    margin-bottom: 8px;
    display: block
}

/* BOTTOM NOTES */
.bottom-notes {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 32px 24px
}

.bottom-notes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 10px
}

.bottom-notes li i {
    color: var(--primary);
    font-size: .75rem
}

.bottom-notes li .gold {
    color: var(--primary);
    font-weight: 600
}

/* CONTACT BAR */
.contact-bar {
    max-width: 600px;
    margin: 16px auto 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center
}

.contact-bar .icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary)
}

.contact-bar p {
    font-size: .9rem;
    font-weight: 700
}

.contact-bar span {
    font-size: .78rem;
    color: var(--text-muted)
}

.contact-bar a {
    color: var(--primary);
    text-decoration: underline
}

@media (max-width: 760px) {
    .pricing-grid{
        grid-template-columns: 1fr;
    }
}