/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: #000000;
    background: #fafafa;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 24px;
    }
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 -60px;
}

/* Center logo when header is not scrolled */
.header:not(.scrolled) .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Move logo to left when scrolled */
.header.scrolled .logo {
    position: relative;
    left: 0;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled header state */
.header.scrolled {
    padding: 10px 60px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo-image {
    height: 60px;
}

/* Logo image visibility - show main logo when not scrolled, side logo when scrolled */
.logo-main {
    display: block;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-side {
    display: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo-main {
    display: none;
}

.header.scrolled .logo-side {
    display: block;
}

.header.scrolled .nav a {
    font-size: 0.85rem;
    padding: 6px 0;
}

@media (max-width: 1024px) {
    .header {
        padding: 35px 40px;
        margin: 0 -40px;
    }
    
    .header.scrolled {
        padding: 10px 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 30px 30px;
        margin: 0 -30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 24px;
        margin: 0 -24px;
    }
    
    .header.scrolled {
        padding: 8px 24px;
    }
    
    .header.scrolled .logo-image {
        height: 50px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo h1 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 3px;
    font-style: italic;
}

.logo-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #37383c;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.nav {
    display: flex;
    gap: 50px;
    margin-left: auto;
}

.nav a {
    color: #37383c;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #173452;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
    color: #000000;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    padding: 120px 60px;
    margin: 0 -60px;
    min-height: 90vh;
    background: #ffffff;
}

@media (max-width: 1024px) {
    .hero {
        padding: 120px 40px;
        margin: 0 -40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 30px;
        margin: 0 -30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 24px;
        margin: 0 -24px;
    }
}

.hero-content {
    color: #000000;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #37383c;
    margin-bottom: 24px;
    font-family: 'Lato', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-title {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 32px;
    color: #000000;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #37383c;
    line-height: 1.85;
    font-weight: 300;
    max-width: 560px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: 1px solid #173452;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #173452;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: #173452;
    color: #ffffff;
    border-color: #173452;
}

.btn-primary::before {
    background: #173452;
}

.btn-primary:hover {
    border-color: #173452;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border-color: #173452;
}

.btn-secondary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

.stat-preview {
    text-align: center;
    padding: 36px 32px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.stat-preview:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.stat-preview.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    font-style: italic;
}

.stat-label {
    font-size: 0.75rem;
    color: #37383c;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Sections */
.section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: #000000;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    font-style: italic;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-size: 1.05rem;
    margin-bottom: 60px;
    color: #37383c;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.section-description.animate {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 120px 60px;
    background: #fafafa;
    margin: 0 -60px;
    scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
    .about {
        padding: 120px 40px;
        margin: 0 -40px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 120px 30px;
        margin: 0 -30px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 120px 24px;
        margin: 0 -24px;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.stat {
    text-align: center;
    padding: 50px 30px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat h3 {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 14px;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-style: italic;
}

.stat:hover h3 {
    transform: scale(1.05);
    color: #173452;
}

.stat p {
    font-size: 0.9rem;
    color: #37383c;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    transition: color 0.4s ease;
}

.stat:hover p {
    color: #37383c;
}

/* Features Section */
.features {
    padding: 120px 60px;
    background: #ffffff;
    margin: 0 -60px;
    scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
    .features {
        padding: 120px 40px;
        margin: 0 -40px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 120px 30px;
        margin: 0 -30px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 120px 24px;
        margin: 0 -24px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.feature-card {
    background: #ffffff;
    padding: 48px 40px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(40px) scale(0.98);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.feature-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #000000;
    line-height: 1.3;
    font-style: italic;
}

.feature-card p {
    color: #37383c;
    line-height: 1.85;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Waitlist Section */
.waitlist {
    padding: 120px 60px 60px;
    background: #fafafa;
    margin: 0 -60px;
    scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
    .waitlist {
        padding: 120px 40px 60px;
        margin: 0 -40px;
    }
}

@media (max-width: 768px) {
    .waitlist {
        padding: 120px 30px 60px;
        margin: 0 -30px;
    }
}

@media (max-width: 480px) {
    .waitlist {
        padding: 120px 24px 60px;
        margin: 0 -24px;
    }
}

.waitlist-form-container {
    max-width: 580px;
    margin: 0 auto 60px;
}

/* Role Selector Segmented Button */
.role-selector {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    padding: 4px;
    margin-bottom: 24px;
    gap: 0;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    position: relative;
}

.role-selector::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #173452;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 0;
}

.role-selector.supervisor-active::before {
    transform: translateX(100%);
}

.role-segment {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 32px;
    cursor: pointer;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), font-weight 0.3s ease;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #37383c;
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

.role-segment:hover {
    color: #000000;
}

.role-segment.active {
    color: #ffffff;
    font-weight: 600;
}

.role-segment:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .role-segment {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

.waitlist-form {
    background: #ffffff;
    padding: 56px 48px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-message {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

.form-message-success {
    background: #f0f9f4;
    color: #166534;
    border: 1px solid #86efac;
    border-left: 4px solid #22c55e;
}

.form-message-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.form-row input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Lato', sans-serif;
    background: #ffffff;
    color: #000000;
    font-weight: 300;
}

.form-row input:focus {
    border-color: #173452;
    box-shadow: 0 0 0 1px #173452;
    background: #fafafa;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
    padding: 16px 0;
    display: flex;
    align-items: center;
}

.form-select {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Lato', sans-serif;
    background: #ffffff;
    color: #000000;
    font-weight: 300;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-select:focus {
    border-color: #173452;
    box-shadow: 0 0 0 1px #173452;
    background-color: #fafafa;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.form-group input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Lato', sans-serif;
    background: #ffffff;
    color: #000000;
    font-weight: 300;
}

.form-group .btn {
    white-space: nowrap;
    padding: 16px 32px;
}

.form-group input:focus {
    border-color: #173452;
    box-shadow: 0 0 0 1px #173452;
    background: #fafafa;
}

.form-group input::placeholder {
    color: #b0b0b0;
    font-weight: 300;
}


.form-note {
    font-size: 0.8rem;
    color: #37383c;
    text-align: center;
    line-height: 1.7;
    font-weight: 300;
}

.success-message {
    background: #ffffff;
    padding: 56px 48px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #000000;
    margin: 0 auto 28px;
    stroke-width: 2;
    opacity: 0.8;
}

.success-message h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 14px;
    font-weight: 600;
    font-style: italic;
}

.success-message p {
    color: #37383c;
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.benefit-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

.benefit-description {
    font-size: 0.85rem;
    color: #37383c;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background: #173452;
    padding: 80px 60px 40px;
    margin: 0 -60px;
    color: #e0e0e0;
}

@media (max-width: 1024px) {
    .footer {
        padding: 80px 40px 40px;
        margin: 0 -40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 30px 40px;
        margin: 0 -30px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 80px 24px 40px;
        margin: 0 -24px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo-image {
    height: auto;
    max-width: 200px;
    margin-bottom: 12px;
    display: block;
}

.footer-logo p {
    color: #b0b0b0;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info p {
    color: #b0b0b0;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #37383c;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Smooth Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Parallax effect classes */
.parallax-slow {
    transition: transform 0.3s ease-out;
}

.parallax-fast {
    transition: transform 0.5s ease-out;
}

/* Scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Elegant transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 24px;
    }
    
    /* On mobile portrait, always center logo and nav - override desktop absolute positioning */
    .header:not(.scrolled) .logo,
    .header .logo {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .header.scrolled .logo {
        text-align: center;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .nav {
        gap: 30px;
        margin-left: 0 !important;
        justify-content: center;
        width: 100%;
        order: 2;
    }
    
    .header .logo {
        order: 1;
    }
    
    .header.scrolled {
        padding: 8px 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    /* Keep seeking row horizontal on mobile */
    #seekingRow {
        flex-direction: row;
        align-items: center;
    }
    
    #seekingRow .form-label {
        padding: 0 12px 0 0;
        flex-shrink: 0;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .waitlist-benefits {
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-image {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }
    
    .logo-image {
        height: 80px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-preview {
        padding: 28px 24px;
    }
    
    .feature-card {
        padding: 40px 32px;
    }
    
    .waitlist-form {
        padding: 40px 32px;
    }
}
