/* Reset & Base */
:root {
    --primary: #0A192F; /* Navy Blue */
    --accent: #D4AF37; /* Gold */
    --accent-hover: #B5952F;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; }

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    color: var(--white);
    padding: 12px 32px;
    font-weight: 600;
    margin-left: 10px;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

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

/* Header */
.header {
    background-color: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    height: 40px;
    border-radius: 4px; /* Optional, softens the logo if square */
}

/* Hero */
.hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 100px;
    text-align: center;
}

.tag {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid var(--accent);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pain */
.pain {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.pain h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-pain {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card-pain:hover {
    transform: translateY(-5px);
}

.card-pain h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Solution */
.solution {
    padding: 80px 0;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-top: 30px;
    text-align: left;
    display: inline-block;
}

.check-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

/* Steps */
.steps {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.steps h2 {
    margin-bottom: 50px;
    color: var(--accent);
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.step h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.pricing h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 60px;
    color: var(--text-light);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center; /* Centers items vertically if heights differ */
}

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 320px;
    position: relative;
    border: 1px solid #eee;
}

.plan-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 10px;
}

.features li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: var(--text);
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.logo-footer {
    height: 30px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { display: flex; flex-direction: column; gap: 10px; }
    .btn-secondary { margin-left: 0; }
    .plan-card.featured { transform: scale(1); }
    .pricing-grid { flex-direction: column; }
    .plan-card { width: 100%; max-width: 400px; }
}
