:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary-color: #00f3ff;
    --primary-glow: rgba(0, 243, 255, 0.5);
    --secondary-color: #bc13fe;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --container-width: 1200px;
    --spacing-section: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #00a8ff);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJhoiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI2cpIiBvcGFjaXR5PSIwLjAzIi8+PC9zdmc+');
    pointer-events: none;
    z-index: 0;
}

.glow-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.05), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(188, 19, 254, 0.05), transparent 40%);
    z-index: -1;
}

.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.header-layout {
    grid-template-columns: auto 1fr auto;
}

.logo-stack {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    justify-self: center;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav .btn {
    color: #000;
}

.hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form {
    margin-bottom: 60px;
}

.input-group {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s, box-shadow 0.3s;
    align-items: center;
}

.input-group:focus-within {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.input-icon {
    padding-left: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 15px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
}

.trust-metrics {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
}

.metric-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-icon {
    color: var(--primary-color);
    margin-bottom: 10px;
    opacity: 0.8;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
    align-self: center;
}

/* Animation Section */
.demo-animation {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.animation-stage {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    padding-bottom: 60px;
}

.animation-left,
.animation-right {
    flex: 0 0 auto;
    width: 500px;
}

.terminal-view {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    color: #0f0;
    width: 100%;
    min-height: 280px;
    box-shadow: 0 8px 32px rgba(0, 243, 255, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #1a1a1a;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.terminal-body {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    min-height: 100px;
    flex-wrap: wrap;
}

#typed-text {
    transition: color 0.3s, opacity 0.5s;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.6;
}

.cursor {
    animation: blink-cursor 1s infinite;
    margin-left: 2px;
    color: #0f0;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.lock-icon-container {
    margin-left: 15px;
    opacity: 0;
    transition: opacity 0.4s;
    cursor: pointer;
    color: #00f3ff;
    display: inline-flex;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6));
}

.mouse-cursor {
    position: absolute;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.4));
    z-index: 20;
    opacity: 1;
    color: #fff;
}

.fragment {
    position: absolute;
    bottom: 20px;
    transform: scale(0.8);
    opacity: 0;
    font-family: 'Courier New', monospace;
    color: #00f3ff;
    font-size: 0.85rem;
    padding: 6px 12px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 6px;
    transition: all 0.4s ease;
    z-index: 5;
}

#fragment-1 {
    left: 20px;
}

#fragment-2 {
    left: 50%;
    transform: translateX(-50%) scale(0.8);
}

#fragment-3 {
    right: 20px;
}

.map-view {
    position: relative;
    width: 500px;
    height: 500px;
}

.world-map {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.glow-path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0;
    transition: opacity 0.5s ease, stroke-dashoffset 2.5s ease;
    filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.8)) drop-shadow(0 0 24px rgba(0, 243, 255, 0.4));
    stroke-linecap: round;
}

.map-node {
    fill: var(--primary-color);
    stroke: rgba(0, 243, 255, 0.5);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.8));
    transition: all 0.3s ease;
}

.map-node.active {
    animation: pulse-node 2s ease-in-out infinite;
}

@keyframes pulse-node {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.8));
    }

    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 16px rgba(0, 243, 255, 1));
    }
}

.packet {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    opacity: 0;
    z-index: 12;
}

.magnifier {
    position: absolute;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.5));
    z-index: 20;
    pointer-events: none;
    transform: translate(-20px, -20px);
}

.zoom-bubble {
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    z-index: 25;
    transform: translate(-50%, 0);
}

.animation-message {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    text-align: left;
    max-width: 500px;
    line-height: 1.6;
}

.animation-message .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.security-message {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    opacity: 0;
    transition: all 0.6s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.security-message .sec-icon {
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4));
    flex-shrink: 0;
}

.security-message strong {
    color: var(--primary-color);
}

.problems-section {
    padding: var(--spacing-section) 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.problem-card {
    padding: 30px;
    text-align: left;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card li {
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-muted);
    position: relative;
    font-size: 0.95rem;
}

.problem-card li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff5f56;
    font-weight: bold;
}

.solution-highlight {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solution-highlight h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.security-quote {
    background: rgba(0, 243, 255, 0.05);
    border: 2px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.security-quote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
}

.security-quote strong {
    color: var(--primary-color);
    font-weight: 700;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    text-align: left;
}

.solution-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.solution-item ul {
    list-style: none;
    padding: 0;
}

.solution-item li {
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-muted);
    position: relative;
    font-size: 1rem;
}

.solution-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s;
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.how-it-works {
    padding: var(--spacing-section) 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.4;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--primary-glow);
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.step-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
    margin-top: 40px;
}

.final-cta {
    padding: var(--spacing-section) 0;
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.05);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-trust {
    color: var(--text-muted);
    margin: 10px;
    text-align: center;
    font-size: 14px;
}

.application-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 14px;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.support-section {
    padding: var(--spacing-section) 0;
    position: relative;
    background: rgba(5, 5, 5, 0.6);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.support-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 243, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 243, 255, 0.25);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 243, 255, 0.08);
}

.support-card:hover::before {
    opacity: 1;
}

.support-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    background: rgba(0, 243, 255, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(0, 243, 255, 0.15);
    transition: all 0.3s ease;
}

.support-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4));
}

.support-card:hover .support-icon {
    background: rgba(0, 243, 255, 0.12);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.support-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -0.3px;
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-section {
    padding: var(--spacing-section) 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.8));
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(188, 19, 254, 0.5), transparent);
    opacity: 0.4;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 500;
    display: block;
    cursor: default;
    backdrop-filter: blur(8px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(0, 243, 255, 0.2);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(0, 243, 255, 0.05);
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    max-height: 500px;
    opacity: 1;
}

.faq-body {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    animation: fadeIn 0.4s ease forwards;
}

.faq-question {
    text-align: left;
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.faq-chevron {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(0, 243, 255, 0.3));
}

.faq-item:hover .faq-chevron {
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6));
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-body ul {
    padding-left: 20px;
    display: grid;
    gap: 8px;
    list-style: disc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.faq-cta .btn-secondary {
    background: transparent;
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--primary-color);
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-cta .btn-secondary:hover {
    background: rgba(0, 243, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
    transform: translateY(-2px);
}

.faq-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.faq-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.faq-modal {
    width: min(720px, 100%);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: 20px;
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 243, 255, 0.05);
    padding: 32px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.faq-modal h3 {
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #fff;
}

.faq-modal h3 {
    margin-bottom: 14px;
}

.faq-modal .close-button {
    position: absolute;
    top: 14px;
    right: 14px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.faq-modal .close-button:focus-visible {
    outline: 2px solid var(--primary-color);
    border-radius: 6px;
}

.faq-page {
    padding-top: 140px;
}

.faq-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.eyebrow {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.site-footer {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .animation-stage {
        flex-direction: column;
        gap: 40px;
    }

    .animation-left,
    .animation-right {
        width: 100%;
    }

    .map-view {
        width: 100%;
        height: 400px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-line {
        display: none;
    }

    .trust-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .metric-divider {
        display: none;
    }

    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav a {
        font-size: 1.5rem;
        display: block;
    }

    .hamburger-btn {
        display: flex;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Support/FAQ responsive */
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-card {
        padding: 20px;
    }

    .faq-item {
        padding: 14px 16px;
    }

    /* Hero animation container */
    #animation-container {
        max-width: 100%;
        aspect-ratio: 1/1;
    }

    .globe-container {
        width: 14rem;
        height: 14rem;
    }

    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links a {
        margin-left: 0;
    }

    /* CTA section */
    .cta-card {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    /* Hero buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Enterprise grid */
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .enterprise-card {
        padding: 1.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-item h3 {
        font-size: 1.1rem;
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .metric-label {
        font-size: 0.8rem;
    }

    .globe-container {
        width: 12rem;
        height: 12rem;
    }

    .terminal-box {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .faq-modal {
        padding: 20px;
    }

    .faq-modal h3 {
        font-size: 1rem;
    }
}

/* Extra small phones */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }
}

/* Hamburger button styles */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 8px;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}