* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-blue: #1E2A38;
    --warm-white: #F9F9F9;
    --accent-blue: #4A7BA7;
    --olive-green: #A3B18A;
    --ink-black: #1B1B1B;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--ink-black);
    background: var(--warm-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--midnight-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(30, 42, 56, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--warm-white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--warm-white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #2A3A4A 100%);
    padding: 6rem 0;
    text-align: center;
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(163, 177, 138, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:not(.secondary) {
    background: var(--accent-blue);
    color: white;
}

.cta-button:not(.secondary):hover {
    background: #3d6a8f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 123, 167, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--warm-white);
    border-color: var(--warm-white);
}

.cta-button.secondary:hover {
    background: var(--warm-white);
    color: var(--midnight-blue);
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    background: white;
}

.content-section.alt {
    background: linear-gradient(135deg, var(--warm-white) 0%, #ffffff 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--midnight-blue);
    letter-spacing: -0.02em;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--ink-black);
    opacity: 0.9;
    line-height: 1.8;
}

/* Features Grid */
.features {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--ink-black);
    opacity: 0.8;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--warm-white) 0%, #ffffff 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step p {
    color: var(--ink-black);
    opacity: 0.8;
    line-height: 1.6;
}

/* Info Boxes */
.info-box {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-blue);
}

.info-box.employer {
    border-left-color: var(--olive-green);
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--midnight-blue);
}

.info-box ul {
    list-style-position: inside;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.info-box p {
    font-style: italic;
    opacity: 0.8;
    margin-top: 1.5rem;
}

.info-box .cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

.info-box.employer .cta-button:not(.secondary) {
    background: var(--olive-green);
}

.info-box.employer .cta-button:not(.secondary):hover {
    background: #8fa072;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-blue);
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    line-height: 1.6;
    color: var(--ink-black);
}

.testimonial-author {
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--ink-black);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #2A3A4A 100%);
    text-align: center;
    color: var(--warm-white);
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.closing-statement {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #3d6a8f;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--midnight-blue);
    color: var(--warm-white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.footer-section p,
.footer-section a {
    color: var(--warm-white);
    text-decoration: none;
    opacity: 0.8;
    line-height: 1.6;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

.beta-notice {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .features-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Form Pages Styles */
.hero-section {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #2A3A4A 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(163, 177, 138, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.main-content {
    padding: 4rem 0;
}

.form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--ink-black);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--midnight-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.help-text {
    font-size: 0.85rem;
    color: var(--ink-black);
    opacity: 0.6;
    margin-top: 0.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.95rem;
    cursor: pointer;
}

.submit-btn {
    background: var(--accent-blue);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: #3d6a8f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 123, 167, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.submit-btn-small {
    max-width: 300px;
    margin: 0 auto;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--midnight-blue);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--ink-black);
    opacity: 0.8;
    line-height: 1.6;
}

/* Selection Buttons */
.selection-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.selection-btn {
    padding: 2rem 3rem;
    font-size: 1.2rem;
    min-width: 250px;
}

.selection-btn small {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.primary-button {
    background: var(--accent-blue);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.primary-button:hover {
    background: #3d6a8f;
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: var(--accent-blue);
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.secondary-button:hover {
    background: var(--accent-blue);
    color: white;
}

/* Form Containers */
.form-container {
    display: none;
}

/* Success Message */
.success-message {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.success-message.show {
    display: block;
}

/* Form Pages Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

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

    .selection-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .selection-btn {
        min-width: auto;
        width: 100%;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}