/* Variables & Resets */
:root {
    --bg-color: #0D0D0D;
    --text-color: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent-color: #D62828;
    --accent-hover: #E83636;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: #1F1F1F;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    border-top: 4px solid var(--accent-color);
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 4.5rem;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.section-title-glow {
    position: absolute;
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(214, 40, 40, 0.25) 0%, rgba(13, 13, 13, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

.left-align-glow {
    left: 0;
    transform: none;
    display: block;
    margin-bottom: 1.5rem;
}

.left-glow {
    left: 20%;
    width: 80%;
}

.section-title.left-align {
    text-align: left;
    font-size: 2.75rem;
}

p {
    font-weight: 300;
    line-height: 1.8;
}

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

/* Navigation */
.navbar {
    padding: 24px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.brand-top {
    font-size: 2.2rem;
    color: #fff;
    display: flex;
    align-items: center;
}

.brand-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-left: 10px;
    transform: translateY(2px);
}

.brand-bot {
    font-size: 2.2rem;
    color: #fff;
    margin-top: 0;
    margin-left: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-email {
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.nav-email:hover {
    color: var(--accent-color);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(214, 40, 40, 0.7);
}

.btn-primary-pill {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.25);
}

.btn-primary-pill:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(214, 40, 40, 0.7);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-ghost {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.btn-gray {
    display: inline-block;
    background-color: #2A2A2A;
    color: #fff;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-gray:hover {
    background-color: #3D3D3D;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.w-100 {
    width: 100%;
}

.cta-guarantee {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 14px;
    font-weight: 300;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
}

.hero-text-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(214, 40, 40, 0.2) 0%, rgba(13, 13, 13, 0) 60%);
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    filter: blur(30px);
}

.hero-headline {
    font-size: 5.5rem;
    margin-bottom: 8px;
    letter-spacing: -2.5px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-red-subheadline {
    font-size: 1.35rem;
    color: var(--accent-color);
    margin-bottom: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 20px rgba(214, 40, 40, 0.3);
}

.lightning-icon {
    display: inline-block;
}

.hero-subheadline {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 650px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-bg-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(214, 40, 40, 0.15) 0%, rgba(13, 13, 13, 0) 70%);
    top: -150px;
    right: -250px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    background: linear-gradient(90deg, rgba(18, 18, 18, 0.8) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(18, 18, 18, 0.8) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 0 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works {
    padding: 140px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(18, 18, 18, 1) 100%);
}

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

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 56px 40px;
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.step-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.step-desc {
    color: var(--text-muted);
    font-weight: 300;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

/* Why Us Section */
.why-us {
    padding: 140px 0;
    background: rgba(18, 18, 18, 1);
}

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

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(214, 40, 40, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.benefit-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(214, 40, 40, 0.1);
    border-radius: 50%;
    color: var(--accent-color);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(214, 40, 40, 0.4);
}

.benefit-title {
    font-size: 1.35rem;
    font-weight: 600;
}

/* Pre-Contact CTA Section */
.pre-contact-cta {
    padding: 140px 0 0;
    background: rgba(18, 18, 18, 1);
}

.cta-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(214,40,40,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.cta-headline {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-subtext {
    font-size: 1.35rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 140px 0;
    background: linear-gradient(0deg, var(--bg-color) 0%, rgba(18, 18, 18, 1) 100%);
}

.contact-container {
    display: flex;
    justify-content: center;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 80px 64px;
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(214,40,40,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.apply {
    padding: 0 0 140px;
    background: var(--bg-color);
}

.apply-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 80px 64px;
    border-radius: 24px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

.apply-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.apply-steps {
    text-align: left;
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.apply-step {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: #eee;
    line-height: 1.7;
}

.apply-step:last-child {
    margin-bottom: 0;
}

.apply-step strong {
    color: #fff;
    margin-right: 8px;
    font-weight: 800;
}

.apply-email-link {
    display: inline-block;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 16px;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.apply-email-link:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 20px rgba(214, 40, 40, 0.5);
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 300;
    font-size: 1.15rem;
}

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

.form-row {
    display: flex;
    gap: 28px;
}

.half-width {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #eee;
    font-weight: 400;
}

input, textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.15);
}

input::placeholder, textarea::placeholder {
    color: #555;
}

/* Footer */
.footer {
    padding: 64px 0 48px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-contact {
    text-align: center;
}

.footer-heading {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-email {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
    display: inline-block;
}

.footer-email:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 15px rgba(214, 40, 40, 0.4);
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline { font-size: 4.5rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .navbar { padding: 16px 0; }
    .nav-container { flex-direction: column; gap: 16px; }
    .hero { padding-top: 160px; text-align: center; }
    .hero-bg-glow { right: -50%; top: -20%; }
    .hero-text-glow { left: 50%; width: 300px; height: 300px; }
    .hero-headline { font-size: 3.5rem; }
    .hero-red-subheadline { justify-content: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-form-wrapper, .apply-card { padding: 48px 32px; }
    .section-title, .section-title.left-align, .cta-headline { font-size: 2.5rem; text-align: center; }
    .section-title-wrapper { margin-bottom: 3rem; left: 50%; transform: translateX(-50%); }
    .left-align-glow { text-align: center; }
    .left-glow { left: 50%; transform: translateX(-50%); }
    .apply-email-link { font-size: 1.5rem; word-break: break-all; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-headline { font-size: 2.75rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper, .apply-card, .cta-card { padding: 40px 24px; }
    .step-card { padding: 40px 24px; }
    .stat-number { font-size: 2.75rem; }
    .apply-steps { padding: 24px; }
}
