:root {
    --bg: #050a14;
    --bg-elevated: #0f1825;
    --surface: #131d2f;
    --surface-strong: #1a2844;
    --text: #f8fafc;
    --muted: #a8b5c8;
    --primary: #4f7dff;
    --primary-strong: #3a5be8;
    --primary-light: #7e9eff;
    --accent: #ff6b35;
    --border: #2d3e52;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --ring: rgba(79, 125, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        radial-gradient(circle at 8% -5%, rgba(79, 125, 255, 0.15), transparent 35%),
        radial-gradient(circle at 92% 8%, rgba(79, 125, 255, 0.1), transparent 35%),
        linear-gradient(180deg, #050a14 0%, #0a0f1a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

a {
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    width: min(1180px, 93%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, var(--border), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.section-alt {
    background: linear-gradient(180deg, rgba(15, 24, 37, 0.8), rgba(10, 16, 27, 0.6));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #182849;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 300;
    text-decoration: none;
}

.skip-link:focus {
    left: 14px;
    top: 14px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(12px);
    background: rgba(5, 10, 20, 0.92);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: translateY(-2px);
}

.brand-logo-wrap {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.25), rgba(79, 125, 255, 0.05));
    border: 1.5px solid rgba(79, 125, 255, 0.4);
    border-radius: 14px;
    box-shadow: 
        0 8px 24px rgba(79, 125, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.brand-logo-wrap:hover {
    border-color: rgba(79, 125, 255, 0.6);
    box-shadow: 
        0 12px 32px rgba(79, 125, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-logo-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(79, 125, 255, 0.1));
}

.brand-text {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.brand-text strong {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #f8fafc, #a8b5c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text small {
    font-size: 0.65rem;
    color: #7a8ba3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

nav {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

h1,
h2,
h3 {
    line-height: 1.2;
    color: #f8fafc;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 20px;
    max-width: 16ch;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    color: var(--muted);
    font-size: 1rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
}

.lead {
    max-width: 70ch;
    font-size: 1.1rem;
    color: #d1dce8;
}

.section-head {
    margin-bottom: 32px;
}

.hero-grid,
.product-grid,
.leadership-grid,
.contact-shell {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 22px;
    align-items: start;
}

.hero-copy {
    padding-top: 10px;
}

.hero-actions,
.email-links,
.social-links,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-actions {
    margin-top: 22px;
}

.hero-list {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.hero-list li {
    color: #d6dff6;
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.hero-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    position: absolute;
    left: 0;
    top: 0.57em;
    box-shadow: 0 0 12px rgba(79, 125, 255, 0.3);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 12px 24px;
    border: 1.5px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(79, 125, 255, 0.25);
    cursor: pointer;
    border: none;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(79, 125, 255, 0.35);
    background: linear-gradient(135deg, var(--primary-strong), var(--primary));
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: #d1dce8;
    box-shadow: none;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(79, 125, 255, 0.1);
    box-shadow: 0 8px 20px rgba(79, 125, 255, 0.15);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.card {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.8), rgba(15, 24, 39, 0.6));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 125, 255, 0.1), transparent);
    pointer-events: none;
}

.card:hover {
    border-color: rgba(79, 125, 255, 0.3);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.brand-seal {
    width: 94px;
    height: 94px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1.5px solid rgba(79, 125, 255, 0.3);
    background: linear-gradient(135deg, rgba(30, 45, 75, 0.8), rgba(20, 35, 55, 0.6));
    box-shadow: 
        0 12px 30px rgba(79, 125, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.brand-seal img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(79, 125, 255, 0.2));
}

.hero-panel ul,
.feature-points,
.service-card ul {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.hero-panel li,
.feature-points li,
.service-card li {
    color: #d3def6;
    font-size: 0.93rem;
}

.trust-line {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.trust-line span,
.chip-row span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(98, 128, 196, 0.55);
    background: rgba(27, 43, 76, 0.65);
    color: #d8e3ff;
    border-radius: 999px;
    font-size: 0.79rem;
    font-weight: 600;
    padding: 5px 10px;
}

.trust-strip {
    padding: 24px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trust-items p {
    text-align: center;
    font-size: 0.86rem;
    color: #d8e3fb;
    border: 1px solid rgba(89, 114, 175, 0.4);
    border-radius: 10px;
    background: rgba(15, 25, 43, 0.82);
    padding: 9px 10px;
}

.grid-3,
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.timeline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card span {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    color: #a8beff;
    font-weight: 800;
}

.role {
    color: #a6baff;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 800;
    text-transform: uppercase;
}

.founder-photo {
    width: 100%;
    max-width: 210px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(108, 136, 199, 0.45);
    box-shadow: 0 14px 28px rgba(2, 9, 22, 0.35);
    margin-bottom: 14px;
}

.coming-soon-card {
    max-width: 720px;
}

.leader-card a,
.social-links a,
.footer-links a,
.legal-wrap a {
    color: var(--text);
    text-decoration: none;
}

.leader-card a,
.social-links a,
.footer-links a {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 11px;
    font-size: 0.87rem;
    color: var(--muted);
}

.leader-card a:hover,
.social-links a:hover,
.footer-links a:hover {
    color: var(--text);
    border-color: var(--primary);
}

.contact-shell {
    grid-template-columns: 0.96fr 1.04fr;
}

.contact-note {
    margin-top: 9px;
    color: #d2dcf4;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 12px;
}

.form-panel {
    display: grid;
    gap: 10px;
}

.flash-stack {
    display: grid;
    gap: 8px;
}

.flash-message {
    border-radius: 10px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.flash-message.success {
    border-color: var(--success);
    background: rgba(60, 169, 127, 0.18);
    color: #dcfbed;
}

.flash-message.error {
    border-color: var(--danger);
    background: rgba(208, 103, 103, 0.2);
    color: #ffe3e3;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    display: grid;
    gap: 6px;
}

.contact-form span {
    color: #d3ddf6;
    font-size: 0.84rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(8, 13, 25, 0.6));
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(168, 181, 200, 0.5);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(79, 125, 255, 0.4);
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.9), rgba(8, 13, 25, 0.7));
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.95), rgba(8, 13, 25, 0.8));
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    box-shadow: 0 0 20px rgba(79, 125, 255, 0.1);
}

.hidden-field {
    display: none;
}

footer {
    border-top: 1px solid rgba(72, 99, 163, 0.35);
    background: rgba(6, 11, 22, 0.94);
    padding: 25px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.legal-wrap {
    max-width: 860px;
}

.legal-wrap h1 {
    margin-bottom: 14px;
    max-width: none;
}

.legal-wrap h3 {
    margin-top: 18px;
    margin-bottom: 7px;
}

.legal-wrap p {
    max-width: 74ch;
}

/* ====== New Professional Sections ====== */

.stats-section {
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.08), rgba(79, 125, 255, 0.03));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.7), rgba(15, 24, 39, 0.5));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    border-color: rgba(79, 125, 255, 0.4);
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.9), rgba(15, 24, 39, 0.7));
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(79, 125, 255, 0.15);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.8), rgba(15, 24, 39, 0.6));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: rgba(79, 125, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d1dce8;
    font-style: italic;
    margin: 0;
}

.testimonial-footer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.testimonial-author {
    color: var(--text);
    font-weight: 600;
    font-size: 0.98rem;
    margin-bottom: 2px !important;
}

.testimonial-role {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 !important;
}

.faq-section {
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.05), rgba(79, 125, 255, 0.02));
}

.faq-container {
    max-width: 900px;
}

.faq-grid {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.7), rgba(15, 24, 39, 0.5));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(79, 125, 255, 0.3);
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.85), rgba(15, 24, 39, 0.65));
}

.faq-item summary {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    outline: none;
}

.faq-item summary::after {
    content: "▼";
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 16px;
    flex-shrink: 0;
    color: var(--primary);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin-top: 16px;
    color: #d1dce8;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.1), rgba(79, 125, 255, 0.05));
}

.cta-container {
    text-align: center;
}

.cta-content {
    margin-bottom: 32px;
}

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

.trust-badges-section {
    background: linear-gradient(135deg, rgba(79, 125, 255, 0.08), rgba(79, 125, 255, 0.03));
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.badge-item {
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.7), rgba(15, 24, 39, 0.5));
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.badge-item:hover {
    border-color: rgba(79, 125, 255, 0.3);
    background: linear-gradient(135deg, rgba(20, 30, 48, 0.85), rgba(15, 24, 39, 0.65));
    transform: translateY(-4px);
}

.badge-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 12px;
}

.badge-item p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #d1dce8;
}

@media (max-width: 1024px) {
    .hero-grid,
    .product-grid,
    .leadership-grid,
    .contact-shell,
    .grid-3,
    .timeline-grid,
    .trust-items,
    .stats-grid,
    .testimonial-grid,
    .badges-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .nav-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    nav {
        width: 100%;
        justify-content: flex-start;
    }

    .brand-text small {
        display: none;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 66px 0;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
