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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--secondary);
    border: 2px solid var(--border);
}

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

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about {
    background: var(--bg);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.8;
}

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

.about-card {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.apps {
    background: var(--bg-alt);
}

.apps-content {
    max-width: 600px;
    margin: 0 auto;
}

.apps-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
}

.apps-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-alt);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin: 0 auto 24px;
}

.apps-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.apps-placeholder p {
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto 12px;
}

.apps-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

/* Services Section */
.services {
    background: var(--bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: var(--bg);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
}

.service-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Legal Section Enhanced */
.legal {
    background: var(--bg);
}

.legal-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.legal-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.legal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.legal-content {
    padding: 24px;
}

.legal-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.legal-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-item:first-child {
    padding-top: 0;
}

.legal-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-value {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.5;
}

.legal-value-highlight {
    color: var(--primary-dark);
    font-weight: 700;
}

.status-active {
    color: #16a34a;
    font-weight: 700;
}

.status-active::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    margin-right: 8px;
}

.legal-value a {
    color: var(--primary);
}

.legal-verification {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 24px 28px;
}

.verification-icon {
    width: 48px;
    height: 48px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.verification-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 8px;
}

.verification-text p {
    color: #15803d;
    line-height: 1.6;
}

/* Verification & Transparency Block */
.verification-transparency {
    margin-top: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 32px;
}

.transparency-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.transparency-header svg {
    color: var(--primary);
    flex-shrink: 0;
}

.transparency-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.transparency-description {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.transparency-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.transparency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

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

.transparency-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.transparency-btn-secondary {
    background: white;
    color: var(--secondary);
    border-color: var(--border);
}

.transparency-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.transparency-btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.transparency-note {
    font-size: 13px;
    color: var(--text-light);
    padding-left: 4px;
}

.transparency-note strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: var(--bg-alt);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-card .btn {
    gap: 10px;
}

.contact-info-block {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.info-value {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
    text-align: right;
}

.footer {
    background: var(--secondary);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.privacy-page {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.privacy-header {
    margin-bottom: 48px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.effective-date {
    color: var(--text-light);
    font-size: 1rem;
}

.privacy-content {
    max-width: 800px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 40px;
}

.privacy-section {
    margin-bottom: 36px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.privacy-section p {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.7;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.privacy-section li {
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-info {
    background: var(--bg);
    border-radius: 8px;
    padding: 24px;
    margin-top: 16px;
    border: 1px solid var(--border);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item span {
    color: var(--secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .legal-cards-grid {
        grid-template-columns: 1fr;
    }

    .legal-item {
        padding: 10px 0;
    }

    .legal-verification {
        flex-direction: column;
        text-align: center;
    }

    .verification-icon {
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .verification-transparency {
        padding: 24px;
    }

    .transparency-header h3 {
        font-size: 1.15rem;
    }

    .transparency-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .transparency-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .transparency-note {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .privacy-page {
        padding: 100px 0 60px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        height: 64px;
    }

    .mobile-nav {
        top: 64px;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .about-card {
        padding: 24px;
    }

    .legal-header {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .legal-content {
        padding: 20px;
    }
}
