:root {
    --primary-color: #0d253f;
    /* Deep Navy Blue - Keeping for text/brand consistency unless asked to change */
    --primary-light: #1a3c61;
    --accent-color: #DA6D07;
    /* New Orange Accent */
    --accent-hover: #b85b06;
    --text-color: #1a202c;
    --text-light: #4a5568;
    --bg-light: #7A7A7A17;
    /* New Semi-transparent Gray Background */
    --bg-dark-section: #54595F;
    /* New Dark Background for sections */
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #2f855a;

    --font-main: 'Inter', sans-serif;

    --container-width: 1200px;
    --header-height: 90px;
    /* Slight increase for logo */
    --border-radius: 4px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark-section);
    color: white;
}

.text-white {
    color: white !important;
}

.text-center {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary-inverse {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

.btn-secondary-inverse:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: var(--border-radius);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav a {
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

.nav a:hover {
    color: var(--primary-color);
}

.header-cta {
    margin-left: 2rem;
}

/* Hero */
.hero {
    position: relative;
    /* Removed static gradient background in favor of video/overlay */
    color: white;
    padding: 8rem 0;
    /* Increased padding suitable for video backgrounds */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 37, 63, 0.75);
    /* Navy overlay with opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Put content above video and overlay */
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 600px;
}

.trust-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-bullets {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}

.hero-bullets li {
    margin-bottom: 0.8rem;
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

.hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Sections & Cards */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.basic-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.scenario-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.scenario-card p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: #ebf8ff;
    color: #2b6cb0;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Features (Why CVS) */
.features-grid {
    text-align: center;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    gap: 1rem;
}

.step {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Visa Pathways */
.visa-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.visa-card .card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.visa-card .card-body {
    padding: 2rem;
}

.visa-card .card-body p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Case Studies */
.case-study h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.case-study .meta {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study p strong {
    color: var(--primary-color);
}

/* Lead Magnet */
.lead-magnet-section {
    background-color: var(--primary-color);
    color: white;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.magnet-text {
    flex: 1;
}

.magnet-text h2 {
    color: white;
    font-size: 2.225rem;
}

.magnet-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.magnet-form-wrapper {
    flex: 1;
    max-width: 450px;
}

.magnet-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.magnet-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.privacy {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 1rem;
    color: #718096;
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.faq-item p {
    font-size: 0.95rem;
}

/* CTA Strip */
.cta-strip h2 {
    margin-bottom: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    background-color: #f7fafc;
    border-top: 1px solid var(--border-color);
    color: #718096;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .magnet-form-wrapper {
        width: 100%;
        max-width: none;
    }

    .nav {
        display: none;
        /* Simplification for prototype */
    }
}

@media (max-width: 768px) {

    .grid-3,
    .grid-4,
    .process-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .step {
        margin-bottom: 2rem;
    }

    .hero {
        padding: 4rem 0;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-bullets {
        padding-left: 0;
        text-align: left;
        display: inline-block;
    }

    .btn-secondary,
    .btn-secondary-inverse {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}