/* ============================================
   OPPORTUNITY GATEWAY - MAIN STYLES
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #F6F7F9;
    --bg-dark: #111214;
    --accent: #4B6DFF;
    --accent-hover: #3a5ce8;
    --text-primary: #111214;
    --text-secondary: #6B6F7A;
    --text-light: #ffffff;
    --border: rgba(17, 18, 20, 0.08);
    --shadow: 0 18px 50px rgba(17, 18, 20, 0.10);
    --shadow-hover: 0 22px 60px rgba(17, 18, 20, 0.14);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--text-light);
}

.section-title.center {
    text-align: center;
}

.accent {
    color: var(--accent);
}

.font-mono {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    mix-blend-mode: multiply;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(17, 18, 20, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.nav.scrolled .logo-icon {
    background: var(--accent);
}

.logo-text {
    font-weight: 600;
    color: white;
    font-size: 16px;
}

.nav.scrolled .logo-text {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

.nav.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav.scrolled .nav-link:hover {
    color: var(--accent);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav.scrolled .nav-cta {
    background: var(--accent);
}

.nav.scrolled .nav-cta:hover {
    background: var(--accent-hover);
}

.mobile-menu-btn {
    display: none;
    padding: 8px;
    color: white;
    border-radius: 8px;
}

.nav.scrolled .mobile-menu-btn {
    color: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: white;
    padding: 100px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-nav-link {
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 12px;
    transition: background 0.3s;
}

.mobile-nav-link:hover {
    background: var(--bg-primary);
}

.mobile-nav-cta {
    margin-top: auto;
    padding: 16px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 12px;
    transition: background 0.3s;
}

.mobile-nav-cta:hover {
    background: var(--accent-hover);
}

/* ============================================
   HERO SECTION
   ============================================ */

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('hero_background.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 18, 20, 0.35), rgba(17, 18, 20, 0.55));
}

.trust-bar {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    z-index: 10;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(75, 109, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--accent);
    font-weight: 700;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(32px, 5vw, 64px);
    color: white;
    max-width: 600px;
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero-subheadline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.hero-image-card {
    position: absolute;
    right: 6vw;
    top: 50%;
    transform: translateY(-50%);
    width: 34vw;
    max-width: 500px;
    aspect-ratio: 4/5;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(17, 18, 20, 0.15);
    z-index: 10;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-chip {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   PROGRAM SUMMARY
   ============================================ */

.program-summary {
    padding: 100px 0;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.program-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(17, 18, 20, 0.04);
    transition: box-shadow 0.3s;
}

.benefit-item:hover {
    box-shadow: 0 4px 16px rgba(17, 18, 20, 0.08);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(75, 109, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-item span:nth-child(2) {
    flex: 1;
    font-weight: 500;
}

.program-note {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-secondary);
}

/* ============================================
   ELIGIBILITY
   ============================================ */

.eligibility {
    padding: 40px 0;
}

.eligibility-band {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    margin: 0 20px;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.eligibility-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.criteria-check {
    width: 24px;
    height: 24px;
    background: rgba(75, 109, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.eligibility-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    transition: color 0.3s;
}

.eligibility-link:hover {
    color: #6b8cff;
}

/* ============================================
   REGISTRATION FORM
   ============================================ */

.registration {
    padding: 100px 0;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-primary);
    background: white;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(75, 109, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6F7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-submit {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 24px;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.registration-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.registration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(75, 109, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.testimonial-display {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-portrait {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.testimonial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-left: -60px;
    position: relative;
    z-index: 10;
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(75, 109, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}

.testimonial-quote-card blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

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

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.location-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-primary);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
}

.location-chip svg {
    color: var(--accent);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--bg-primary);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(107, 111, 122, 0.3);
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 5px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(17, 18, 20, 0.06);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(246, 247, 249, 0.5);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    padding: 100px 0;
}

.cta-card {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 80px 48px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-links a::after {
    content: '';
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.6;
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--accent);
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--accent-hover);
}

.footer-trust {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-trust p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-image-card {
        display: none;
    }
    
    .program-grid,
    .eligibility-grid,
    .registration-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-image {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-display {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-quote-card {
        margin-left: 0;
    }
    
    .testimonial-portrait {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .trust-bar {
        padding: 16px 20px;
        top: 90px;
    }
    
    .trust-logos {
        gap: 16px;
    }
    
    .trust-logo {
        font-size: 12px;
    }
    
    .hero {
        padding-top: 180px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .eligibility-band {
        padding: 48px 24px;
        margin: 0 12px;
    }
    
    .form-card {
        padding: 32px 24px;
    }
    
    .testimonial-quote-card {
        padding: 32px 24px;
    }
    
    .cta-card {
        padding: 48px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
        height: 64px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .step-card {
        padding: 24px;
    }
    
    .step-title {
        font-size: 20px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Selection */
::selection {
    background-color: rgba(75, 109, 255, 0.2);
    color: var(--text-primary);
}

/* Focus */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-primary);
}
