/* CSS Reset & Variables */
:root {
    --bg-color: #0b0b0d;
    --text-primary: #ffffff;
    --text-secondary: #888890;
    --text-muted: #55555c;
    --accent-glow: rgba(255, 255, 255, 0.08);
    --font-family: 'Inter', sans-serif;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-font-smoothing: antialiased;
}

html {
    font-size: 20px;
    /* Globally increases all rem font sizes by 12.5% */
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 100vh;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

html::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    overflow: hidden;
}

/* Three.js Background Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Center Crosshairs Grid */
.crosshair-v {
    position: fixed;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100vh;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.04) 30%,
            rgba(255, 255, 255, 0.04) 70%,
            rgba(255, 255, 255, 0.0) 100%);
    z-index: 1;
    pointer-events: none;
}

.crosshair-h {
    position: fixed;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100vw;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.04) 30%,
            rgba(255, 255, 255, 0.04) 70%,
            rgba(255, 255, 255, 0.0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Ambient Center Glow */
.ambient-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.04) 0%,
            rgba(255, 255, 255, 0.01) 30%,
            transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(50px);
}

/* SVG Grain Noise Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.045;
    pointer-events: none;
    z-index: 9999;
}

/* Dynamic Fixed Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

/* Wrapper elements to hold dynamic transitions */
.logo-wrapper,
.nav-links-wrapper,
.nav-action-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    height: 30px;
    width: 150px;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo-dot {
    color: var(--text-secondary);
}

.nav-links-wrapper {
    height: 30px;
    min-width: 420px;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    white-space: nowrap;
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

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

.nav-action-wrapper {
    height: 40px;
    min-width: 140px;
    justify-content: flex-end;
}

.signup-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 10px 28px;
    border-radius: 2px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    white-space: nowrap;
    /* Prevents text from breaking into two lines */
}

.signup-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

/* Sections Containers */
.sections-container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.section {
    width: 100vw;
    height: 100vh;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}

/* SECTION 1: SOLVANA HERO */
.hero-container {
    position: absolute;
    bottom: 8%;
    left: 6%;
    right: 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

.hero-left {
    max-width: 480px;
    padding: 24px 30px;
    position: relative;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-right {
    padding: 24px 30px;
    position: relative;
}

.journey-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 15px 32px;
    border-radius: 2px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.journey-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
}

.btn-icon {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* SECTION 2: MODULAR DESIGN */
.floating-badge {
    position: absolute;
    left: 18%;
    top: 32%;
    width: 110px;
    height: 110px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.floating-badge svg {
    width: 100%;
    height: 100%;
}

.floating-badge text {
    fill: rgba(255, 255, 255, 0.45);
    font-family: var(--font-family);
    font-weight: 300;
    text-transform: uppercase;
}

.badge-center {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
}

@keyframes rotate-badge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modular-container {
    position: absolute;
    top: 32%;
    right: 12%;
    width: 48%;
    max-width: 580px;
    z-index: 10;
}

.modular-title {
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.modular-title .underline {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

.modular-actions {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.solutions-link {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.solutions-link:hover {
    border-color: var(--text-primary);
}

.dots-indicator {
    display: flex;
    gap: 8px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--text-primary);
}

.modular-footer {
    position: absolute;
    bottom: 5%;
    left: 6%;
    right: 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    font-size: 0.72rem;
    color: var(--text-secondary);
    z-index: 10;
}

.footer-left,
.footer-right {
    display: flex;
    gap: 50px;
    align-items: center;
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-left .num {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-primary);
}

.footer-desc {
    max-width: 480px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-secondary);
    text-align: left;
}

.footer-credit {
    font-family: var(--font-family);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: 400;
}

/* Technical Bracket Corners */
.bracket-indicator {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(255, 255, 255, 0.15);
    border-style: solid;
    pointer-events: none;
}

.bracket-indicator.top-left {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.bracket-indicator.bottom-left {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.bracket-indicator.top-right {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.bracket-indicator.bottom-right {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

/* SECTION 3: GLOBAL SPEND (EARTH) */
.global-container {
    position: absolute;
    top: 22%;
    left: 8%;
    width: 44%;
    max-width: 530px;
    z-index: 10;
}

.global-title {
    font-size: 2.15rem;
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.global-desc {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.global-link {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s;
    margin-bottom: 48px;
}

.global-link:hover {
    border-color: var(--text-primary);
}

.global-link .arrow {
    transition: transform 0.3s;
}

.global-link:hover .arrow {
    transform: translateX(4px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.stat-lbl {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-secondary);
}

/* SECTION 4: HELP / SERVICES CARDS */
.help-container {
    position: absolute;
    top: 18%;
    left: 8%;
    right: 8%;
    bottom: 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 10;
}

.help-header {
    margin-bottom: 44px;
    text-align: left;
}

.help-title {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.help-subtitle {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.help-card {
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    min-height: 380px;
}

.help-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.025);
    transform: translateY(-5px);
}

/* Card Active (Highlighted) State with Premium Blue-Grey Gradient */
.help-card.active {
    background: linear-gradient(135deg, rgba(148, 201, 255, 0.11) 0%, rgba(20, 30, 48, 0.35) 60%, rgba(255, 255, 255, 0.0) 100%);
    border-color: rgba(148, 201, 255, 0.22);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.help-card.active:hover {
    background: linear-gradient(135deg, rgba(148, 201, 255, 0.14) 0%, rgba(20, 30, 48, 0.40) 60%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(148, 201, 255, 0.30);
}

.card-icon {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    transition: color 0.4s;
}

.help-card.active .card-icon,
.help-card:hover .card-icon {
    color: #94c9ff;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.card-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    width: 100%;
}

.help-card.active .card-divider {
    background: rgba(148, 201, 255, 0.22);
}

.card-desc {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
}

.card-arrow {
    position: absolute;
    bottom: 36px;
    right: 36px;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-card:hover .card-arrow {
    transform: translate(4px, 4px);
    color: var(--text-primary);
}

.help-card.active .card-arrow {
    color: #94c9ff;
}

/* SECTION 5: FAQ ACCORDIONS */
.faq-container {
    position: absolute;
    top: 18%;
    left: 8%;
    right: 8%;
    bottom: 8%;
    display: flex;
    gap: 60px;
    z-index: 10;
}

.faq-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.faq-section-title {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faq-section-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
}

.faq-right {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) transparent;
}

.faq-right::-webkit-scrollbar {
    width: 4px;
}

.faq-right::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 300;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #94c9ff;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}

.faq-item.active .faq-question {
    color: #94c9ff;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #94c9ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.answer-content {
    padding: 0 0 20px 0;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* SECTION 6: CTA EMAIL INPUT */
.cta-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    z-index: 10;
}

.cta-title {
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.015em;
}

.cta-desc {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.cta-form {
    display: flex;
    gap: 16px;
    width: 100%;
}

.input-wrapper {
    position: relative;
    flex-grow: 1;
    text-align: left;
}

.cta-input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-input:focus {
    outline: none;
    border-color: rgba(148, 201, 255, 0.35);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 10px 30px rgba(148, 201, 255, 0.05);
}

.floating-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-input:focus~.floating-label,
.cta-input:not(:placeholder-shown)~.floating-label {
    top: -8px;
    left: 16px;
    font-size: 0.72rem;
    color: #94c9ff;
    background: #0b0b0d;
    padding: 2px 8px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.cta-submit-btn {
    padding: 0 36px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 450;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-submit-btn:hover {
    background: #94c9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(148, 201, 255, 0.25);
}

.cta-submit-btn:active {
    transform: translateY(0);
}

/* SECTION 7: FOOTER SCREEN */
.footer-container {
    position: absolute;
    bottom: 6%;
    left: 8%;
    right: 8%;
    top: 18%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    width: 100%;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icon:hover {
    color: #94c9ff;
    border-color: rgba(148, 201, 255, 0.3);
    background: rgba(148, 201, 255, 0.05);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #94c9ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copyright {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.footer-hud {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .navbar {
        padding: 30px 40px;
    }

    .modular-container {
        width: 55%;
        right: 8%;
    }

    .floating-badge {
        left: 10%;
    }

    .global-container {
        width: 50%;
    }

    .help-container {
        top: 14%;
        bottom: 6%;
    }

    .faq-container {
        top: 14%;
        bottom: 6%;
        gap: 40px;
    }

    .footer-container {
        top: 14%;
        bottom: 4%;
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    html {
        font-size: 15px;
        /* scale font size down significantly on tablets/mobiles for alignment */
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        bottom: 6%;
    }

    .hero-left,
    .hero-right {
        padding: 20px 24px;
        width: 100%;
        max-width: 100%;
    }

    .floating-badge {
        display: none;
    }

    .modular-container {
        width: 84%;
        right: 8%;
        left: 8%;
        top: 25%;
    }

    .global-container {
        width: 84%;
        left: 8%;
        right: 8%;
        top: 15%;
    }

    .help-container {
        top: 12%;
        bottom: 4%;
        position: relative;
        left: 0;
        right: 0;
        padding: 0 8%;
        height: auto;
        display: block;
        overflow-y: visible;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .help-card {
        min-height: auto;
        padding: 36px 28px;
    }

    .faq-container {
        top: 12%;
        bottom: 4%;
        position: relative;
        left: 0;
        right: 0;
        padding: 0 8%;
        height: auto;
        display: block;
        overflow-y: visible;
    }

    .faq-left,
    .faq-right {
        width: 100%;
    }

    .faq-left {
        margin-bottom: 24px;
    }

    .cta-form {
        flex-direction: column;
        gap: 16px;
    }

    .cta-submit-btn {
        padding: 18px 0;
        justify-content: center;
    }

    .footer-container {
        top: 10%;
        bottom: 4%;
        height: auto;
        position: relative;
        left: 0;
        right: 0;
        padding: 0 8%;
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 40px;
    }

    .footer-brand-col {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding-bottom: 40px;
    }

    .modular-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 20px;
    }

    .nav-links-wrapper {
        display: none;
    }

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

    .modular-title {
        font-size: 1.3rem;
    }

    .global-title {
        font-size: 1.65rem;
    }

    .stat-val {
        font-size: 1.5rem;
    }

    .stats-grid {
        gap: 24px 16px;
    }

    .help-title,
    .faq-section-title {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .card-title {
        font-size: 1.15rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}