:root {
    --brand-primary: #6366f1;
    --brand-secondary: #4f46e5;
    --brand-dark: #1e1b4b;
    --surface-bg: #ffffff;
    --surface-alt: #f8fafc;
    --surface-dark: #0f172a;
    --text-main: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --success: #10b981;
    --error: #ef4444;
    --border: #e2e8f0;
    --card-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
    --glass: rgba(255, 255, 255, 0.85);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2.5rem;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--surface-bg);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

nav {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brand-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-primary);
}

.cta-btn {
    background: var(--brand-primary);
    color: white !important;
    padding: 0.85rem 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
}

section {
    padding: 8rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Components */
.card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
    border-color: var(--brand-primary);
}

.badge {
    background: #eef2ff;
    color: var(--brand-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 3rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10rem;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin: 1.5rem 0;
    color: var(--surface-dark);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3.5rem;
}

/* Stats Section */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--surface-dark);
    padding: 4rem;
    border-radius: var(--radius-2xl);
    color: white;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* How it Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.step {
    position: relative;
    text-align: center;
}

.step-num {
    width: 4rem;
    height: 4rem;
    background: var(--brand-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--surface-alt);
    padding: 3rem;
    border-radius: var(--radius-xl);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Form */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 40px 60px -20px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    padding: 5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1.1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--surface-alt);
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.consent-box {
    display: flex;
    gap: 1rem;
    background: var(--surface-alt);
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.consent-box input {
    width: auto;
}

.consent-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Contact Specifics */
.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.contact-page-header h1 {
    color: white;
    margin-top: 1.5rem;
}

.contact-page-header p {
    color: rgba(255, 255, 255, 0.6);
    margin: 1.5rem auto 0;
    max-width: 500px;
}

.contact-page-header .badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-info-panel {
    background: var(--brand-dark);
    color: white;
    padding: 4rem;
    border-radius: var(--radius-2xl);
}

.contact-page-header {
    padding: 12rem 2rem 10rem;
    text-align: center;
    background: var(--brand-dark);
    color: white;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 4rem;
}

.contact-section-offset {
    margin-top: -8rem;
    padding-bottom: 10rem;
}

.contact-info-panel h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.contact-info-panel p {
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-info-panel .address {
    opacity: 0.7;
    font-size: 0.95rem;
    font-weight: 400;
}

.secure-seal-section {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secure-seal-section p {
    font-size: 0.8rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 1rem;
}

.secure-seal-icons {
    display: flex;
    gap: 1rem;
}

.secure-seal-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h4 {
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Footer */
footer {
    background: var(--surface-dark);
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--brand-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile */
@media (max-width: 968px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-page-header {
        padding: 8rem 1.5rem 6rem;
        border-bottom-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }

    .contact-section-offset {
        margin-top: -4rem;
        padding-bottom: 5rem;
    }

    .contact-info-panel,
    .form-container,
    .contact-form-container {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-xl);
    }

    .hero {
        padding-top: 8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

#consent_received {
    outline: none;
}