/* ===== Custom Properties ===== */
:root {
    --blue: #5690d0;
    --blue-hover: #6ba3e0;
    --blue-glow: rgba(86, 144, 208, 0.3);
    --gold: #c9a66b;
    --gold-muted: rgba(201, 166, 107, 0.15);
    --navy: #0a0f1a;
    --navy-mid: #0e1525;
    --navy-light: #121c30;
    --navy-card: #151e33;
    --navy-border: rgba(255, 255, 255, 0.06);
    --text-heading: #eaf0f8;
    --text-body: #94a3b8;
    --text-muted: #5a6a80;
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Outfit", sans-serif;
    --radius: 10px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background: var(--navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
}

/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[style*="--delay: 1"] { transition-delay: 0.12s; }
.reveal[style*="--delay: 2"] { transition-delay: 0.24s; }
.reveal[style*="--delay: 3"] { transition-delay: 0.36s; }
.reveal[style*="--delay: 4"] { transition-delay: 0.48s; }
.reveal[style*="--delay: 5"] { transition-delay: 0.6s; }
.reveal[style*="--delay: 6"] { transition-delay: 0.72s; }
.reveal[style*="--delay: 7"] { transition-delay: 0.84s; }

/* ===== Layout ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Navigation ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
    border-bottom-color: var(--navy-border);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 38px;
    width: 38px;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-left: 10px;
    letter-spacing: -0.01em;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-body);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--blue);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--blue);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background var(--transition), transform var(--transition) !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--blue-hover) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 16px var(--blue-glow);
}

.btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--blue-glow);
}

.btn-primary svg {
    transition: transform var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-body);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    padding: 15px 36px;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Hero ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 360px;
    width: 100%;
    height: auto;
    margin-bottom: 48px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

#hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

#hero h1 em {
    color: var(--blue);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 48px;
    line-height: 1.75;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* ===== Section Shared ===== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-body);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header--light h2 {
    color: #fff;
}

.section-header--light p {
    color: var(--text-body);
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(86, 144, 208, 0.2);
    border-radius: 100px;
    background: rgba(86, 144, 208, 0.08);
}

.section-tag--light {
    color: var(--gold);
    border-color: var(--gold-muted);
    background: rgba(201, 166, 107, 0.08);
}

/* ===== Features ===== */
#features,
#services {
    background: var(--navy-mid);
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 160px 0 120px;
    background: var(--navy);
}

.legal-page-header {
    text-align: center;
    margin-bottom: 64px;
}

.legal-page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}

.legal-content a {
    color: var(--blue);
    transition: color var(--transition);
}

.legal-content a:hover {
    color: var(--blue-hover);
}

.footer-legal {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 12px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: #fff;
}

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

.feature-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 40px 32px 36px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border-color: rgba(86, 144, 208, 0.15);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(86, 144, 208, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.65;
    font-weight: 400;
}

.feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-line {
    transform: scaleX(1);
}

/* ===== How It Works ===== */
#how-it-works {
    background: var(--navy-light);
    overflow: hidden;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    padding: 160px 0;
}

.how-it-works-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(86, 144, 208, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 166, 107, 0.06) 0%, transparent 50%);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}

.step-number-large {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.step-content p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 400;
}

.step-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
    flex-shrink: 0;
    margin-top: 40px;
}

/* ===== About ===== */
#about {
    background: var(--navy-mid);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-tag {
    display: inline-block;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: baseline;
    gap: 20px;
    transition: transform var(--transition);
}

.stat-card:hover {
    transform: translateX(4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    white-space: nowrap;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 500;
}

/* ===== Contact ===== */
#contact {
    background: var(--navy-light);
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
    padding: 180px 0 120px;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(86, 144, 208, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.contact-intro p {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 400px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--navy-card);
    color: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.contact-form textarea {
    resize: vertical;
}

/* ===== Progress Overlay ===== */
.progress-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 15, 26, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-overlay.visible {
    opacity: 1;
}

.progress-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 16px;
    padding: 48px 56px;
    text-align: center;
    min-width: 340px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.progress-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(86, 144, 208, 0.15);
    border-top-color: var(--blue);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.progress-status {
    color: var(--text-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 1.4em;
}

.progress-bar-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-checkmark {
    margin-bottom: 16px;
    animation: checkPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.progress-detail {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ===== SMS Consent Checkbox ===== */
.sms-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
}

.sms-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: var(--navy-card);
    cursor: pointer;
    margin-top: 2px;
    transition: border-color var(--transition), background var(--transition);
}

.sms-consent input[type="checkbox"]:checked {
    background: var(--blue);
    border-color: var(--blue);
}

.sms-consent input[type="checkbox"]:checked::after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin: 2px auto 0;
    transform: rotate(45deg);
}

.sms-consent a {
    color: var(--blue);
    transition: color var(--transition);
}

.sms-consent a:hover {
    color: var(--blue-hover);
}

.contact-page-layout--centered {
    max-width: 860px;
    margin: 0 auto;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: 160px 0 120px;
    background: var(--navy);
}

.contact-page-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-page-header p {
    color: var(--text-body);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 28px;
}

.contact-info-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-header h1 {
        font-size: 2.2rem;
    }
}

/* ===== Footer ===== */
footer {
    background: var(--navy-light);
    color: var(--text-muted);
    padding: 0 0 40px;
}

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

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

.footer-icon {
    height: 32px;
    width: 32px;
}

.footer-brand-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-intro h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-scroll-hint {
        display: none;
    }

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

    #how-it-works {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-divider {
        width: 60px;
        height: 1px;
        margin: 24px 0;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    #contact {
        clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 28px 32px;
        gap: 24px;
        border-bottom: 1px solid var(--navy-border);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        display: flex;
    }

    .footer-layout {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2rem;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 80px 0;
    }

    #how-it-works {
        padding: 120px 0;
    }

    #contact {
        padding: 140px 0 80px;
    }

    .step-number-large {
        font-size: 3.5rem;
    }

    .hero-logo {
        max-width: 260px;
        padding: 18px 24px;
    }
}
