:root {
    --bg-color: #030a1a;
    --nav-bg: rgba(3, 10, 26, 0.85);
    --text-main: #f0f4f8;
    --text-muted: #9ba4b5;
    --accent: #00d2ff;
    --accent-hover: #00a8cc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utilities */
.highlight {
    color: var(--accent);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Buttons */
.cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-button.nav-cta {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.cta-button.nav-cta:hover {
    background-color: rgba(0, 210, 255, 0.1);
}

.cta-button.primary {
    background-color: var(--accent);
    color: var(--bg-color);
}

.cta-button.primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.cta-button.secondary {
    background-color: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 6rem 5% 2rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Visual & Glassmorphism */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 210, 255, 0.15);
    top: 10%;
    right: 20%;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background-color: rgba(43, 88, 255, 0.15);
    bottom: 10%;
    left: 20%;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.main-shield {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.shield-icon {
    font-size: 3rem;
}

.shield-text h3 {
    color: #4ade80; /* Success green */
    font-size: 1.2rem;
}

.shield-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Services Section */
.services {
    padding: 5rem 5%;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.service-card {
    text-align: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 2rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

/* Compliance Section */
.compliance-section {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: rgba(0, 210, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.compliance-content {
    flex: 1;
}
.compliance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.compliance-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.compliance-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.compliance-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.compliance-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}
.doc-card {
    width: 300px;
    padding: 2rem;
    text-align: center;
    position: relative;
}
.doc-header {
    font-weight: 700;
    margin-bottom: 1rem;
}
.doc-status {
    font-size: 1.5rem;
    font-weight: 800;
    border: 2px solid var(--accent);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transform: rotate(-5deg);
    margin-bottom: 2rem;
}
.doc-lines .line {
    height: 8px;
    background: var(--glass-border);
    border-radius: 4px;
    margin-bottom: 0.8rem;
    width: 100%;
}
.doc-lines .line.short {
    width: 60%;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 5%;
    text-align: center;
}
.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2.5rem 2rem;
}
.pricing-card.featured {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.15);
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-color);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.price {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.price span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
}
.price-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.plan-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
}
.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-content {
    flex: 1;
}
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}
.founder-placeholder {
    text-align: center;
    padding: 3rem;
    width: 300px;
}
.founder-placeholder .avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
}
.founder-title {
    color: var(--accent);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .compliance-section, .about-grid {
        flex-direction: column;
        text-align: center;
    }
    .compliance-checklist li {
        text-align: left;
    }
}

/* Assessment Page Styles */
.assessment-hero {
    align-items: flex-start;
}

.assessment-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lead-form-card {
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
}

.lead-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Social Proof Section */
.social-proof {
    padding: 2rem 5% 5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 1rem;
}
