/* Clean Modern - Vibrant Pops */

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

:root {
    --white: #ffffff;
    --off-white: #fafafa;
    --black: #0a0a0a;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --pop: #ff5722;
    --pop-light: #fff3e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 1.25rem; }

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 8px;
}

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

.btn-primary:hover {
    background: #e64a19;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-light);
}

.btn-secondary:hover {
    border-color: var(--black);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full { width: 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-light);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--pop);
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--black);
}

/* Hero */
.hero {
    padding: 160px 0 100px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--pop-light);
    color: var(--pop);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
    max-width: 600px;
}

.hero h1 span {
    color: var(--pop);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    gap: 64px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    display: block;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--off-white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--pop);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Options */
.options {
    padding: 100px 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
}

.option-card {
    padding: 40px;
    border: 1.5px solid var(--gray-light);
    border-radius: 16px;
    transition: border-color 0.15s;
}

.option-card:hover {
    border-color: var(--black);
}

.option-card.featured {
    border-color: var(--pop);
    background: linear-gradient(135deg, var(--pop-light) 0%, var(--white) 100%);
}

.option-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--off-white);
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.option-card.featured .option-badge {
    background: var(--pop);
    color: white;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.option-tagline {
    color: var(--gray);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

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

.option-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--black);
}

.option-features svg {
    width: 20px;
    height: 20px;
    color: var(--pop);
    flex-shrink: 0;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
}

.benefit {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pop);
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.benefit h3 {
    margin-bottom: 8px;
    color: var(--white);
}

.benefit p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
}

.faq-item {
    padding: 28px;
    background: var(--off-white);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--pop);
}

.contact-content {
    max-width: 560px;
    margin: 0 auto;
}

.contact h2 {
    color: white;
    margin-bottom: 12px;
}

.contact-content > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-size: 1.1rem;
}

.contact-form {
    padding: 40px;
    background: white;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--black);
    font-family: inherit;
    transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pop);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-disclaimer {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--gray-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    max-width: 260px;
    margin-top: 16px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--black);
}

.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.95rem;
    transition: color 0.15s;
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 900px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .nav-links { display: none; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .options-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 40px; }
    .hero-stats { flex-direction: column; gap: 32px; }
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .hero { padding: 130px 0 60px; }
    .hero-cta { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .footer-links { flex-direction: column; gap: 32px; }
    .option-card { padding: 28px; }
}
