:root {
    --primary: #D4AF37;
    /* Gold */
    --primary-hover: #b5922b;
    --bg-dark: #111111;
    --bg-card: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #a0a0a0;
    --border: #333;
    --gradient-overlay: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, #111111 100%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    margin-bottom: 1rem;
    color: white;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-weight: 600;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem;
    border-radius: 5px;
    margin-top: 1.5rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.btn-text {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 5rem;
    min-height: 90vh;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Philosophy */
.philosophy {
    padding: 6rem 5%;
    background-color: #1a1a1a;
}

.philosophy-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content {
    flex: 1;
    text-align: left;
}

.philosophy-image {
    flex: 1;
}

.philosophy-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle gold border */
}

.philosophy h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

/* .philosophy p uses global defaults now */



@media (max-width: 768px) {
    .philosophy-container {
        flex-direction: column-reverse;
        /* Image on top on mobile usually better, or typical stacking */
        text-align: center;
    }

    .philosophy-content {
        text-align: center;
    }

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

/* Features */
.features {
    padding: 5rem 5%;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.reverse {
    flex-direction: row-reverse;
}

.feature-text,
.feature-image {
    flex: 1;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pricing Grid - The Core Requirement */
.pricing {
    padding: 5rem 5%;
    background-color: #151515;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.pricing-grid {
    display: grid;
    /* Forces 4 equal columns on desktop */
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.plan-name {
    font-size: 1.25rem;
    color: var(--primary);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0.5rem 0 0;
    line-height: 1;
}

.price-period {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #ddd;
    display: flex;
    align-items: start;
}

.features-list li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .feature-row {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 4rem;
        text-align: center;
    }

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

    .navbar {
        padding: 1rem 5%;
    }
}

.feature-text ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1rem;
}

.feature-text li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.feature-text li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-text strong {
    color: var(--text-light);
}