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

:root {
    /* Oxyhelp Brand Colors */
    --oxy-cerulean: #00aeef;
    --oxy-cerulean-dark: #0095d0;
    --oxy-navy: #001d39;
    --oxy-navy-light: #181862;
    --oxy-light-blue: #e3f5fe;
    --oxy-mint: #c4e2f4;

    /* Text */
    --color-text: #181862;
    --color-text-light: #4a5568;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fbfe;
    --color-border: #e2e8f0;

    /* Typography */
    --font-family: 'Fira Sans', 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none;
}

/* Navigation */
.nav {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--oxy-navy);
    text-decoration: none;
}

.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--oxy-cerulean);
    text-decoration: none;
    border: 2px solid var(--oxy-cerulean);
    border-radius: 50px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--oxy-cerulean);
    color: white;
}

/* Nav Links - Desktop */
.nav-links {
    display: none;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--color-text-light);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .nav-links a:hover {
        color: var(--oxy-cerulean);
    }

    .nav-hamburger {
        display: none;
    }
}

/* Mobile Hamburger Menu */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--oxy-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--oxy-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--oxy-cerulean);
}

@media (min-width: 900px) {
    .nav-mobile {
        display: none !important;
    }
}

/* Buttons - Pill shaped like Oxyhelp */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background: var(--oxy-cerulean);
    color: white;
}

.btn-primary:hover {
    background: var(--oxy-cerulean-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--oxy-navy);
    border: 2px solid var(--oxy-navy);
}

.btn-secondary:hover {
    background: var(--oxy-navy);
    color: white;
}

.btn-full {
    width: 100%;
}

/* Hero - Gradient like Oxyhelp */
.hero {
    background: linear-gradient(135deg, var(--oxy-navy) 0%, var(--oxy-navy-light) 50%, #2a3f7a 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 174, 239, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 174, 239, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--oxy-cerulean);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-microcopy {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 16px;
}

.hero-franchise-link {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

.hero-franchise-link a {
    color: var(--oxy-cerulean);
    text-decoration: none;
    font-weight: 500;
}

.hero-franchise-link a:hover {
    text-decoration: underline;
}

/* Benefits Grid (Hvorfor investere) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 29, 57, 0.08);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--oxy-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--oxy-cerulean);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--oxy-navy);
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.research-note {
    background: var(--oxy-light-blue);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
}

.research-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--oxy-navy);
}

.research-note a {
    color: var(--oxy-cerulean);
    text-decoration: none;
    font-weight: 500;
}

.research-note a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hero-content {
    max-width: 100%;
}

.hero-content h1 {
    margin-left: 0;
    margin-right: 0;
}

.hero-content .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Chamber Comparison */
.chamber-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.chamber-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chamber-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.chamber-image {
    background: #f8fbfe;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.chamber-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.chamber-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--oxy-navy);
    padding: 20px 24px 8px;
    margin: 0;
}

.chamber-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    padding: 0 24px 24px;
    margin: 0;
}

@media (max-width: 768px) {
    .chamber-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .chamber-image {
        min-height: 200px;
        padding: 20px;
    }
}

/* Sizes Grid */
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .sizes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.size-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.size-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.size-image {
    height: 220px;
    overflow: hidden;
    background: #f8fbfe;
}

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

.size-info {
    padding: 20px 24px 24px;
}

.size-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--oxy-cerulean);
    background: var(--oxy-light-blue);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.size-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--oxy-navy);
    margin-bottom: 8px;
}

.size-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.sizes-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--oxy-cerulean);
    font-weight: 500;
    margin-top: 24px;
}

/* Custom/Interior Grid */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.custom-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
    .custom-grid,
    .custom-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .custom-grid,
    .custom-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.custom-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.custom-image {
    height: 240px;
    overflow: hidden;
    background: #1a1a1a;
}

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

.custom-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--oxy-navy);
    padding: 20px 24px 8px;
    margin: 0;
}

.custom-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding: 0 24px 24px;
    margin: 0;
    line-height: 1.5;
}

.custom-note {
    background: white;
    border-left: 4px solid var(--oxy-cerulean);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
}

.custom-note p {
    margin: 0;
    color: var(--color-text);
    font-size: 0.95rem;
}

/* Showroom Grid */
.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.showroom-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1,
    .hero-content .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
    }

    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--oxy-light-blue);
}

.section-no-padding {
    padding: 0;
}

/* Configurator Section (1-2-3 steps) */
.configurator-section {
    background: var(--oxy-light-blue);
    padding: 80px 0;
}

.configurator-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--oxy-navy);
    margin-bottom: 24px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-title:first-of-type {
    margin-top: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--oxy-cerulean);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50%;
}

/* Section CTA - centered buttons */
.section-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 16px;
}

.section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--oxy-navy);
}

.section-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 900px;
}

.section-intro-centered {
    margin-left: auto;
    margin-right: auto;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 29, 57, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--oxy-light-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--oxy-cerulean);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--oxy-navy);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--oxy-light-blue) 0%, var(--oxy-mint) 100%);
    border: none;
    border-radius: 16px;
    padding: 28px;
}

.info-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--oxy-navy);
}

.info-box p {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Clinic Grid - 3x2 */
.clinic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .clinic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clinic-grid {
        grid-template-columns: 1fr;
    }
}

.clinic-card {
    background: var(--color-bg);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.clinic-card:hover {
    border-color: var(--oxy-cerulean);
}

.clinic-card-featured {
    background: var(--color-bg);
    border: 1px solid rgba(0, 174, 239, 0.2);
    position: relative;
}

.clinic-card-featured::before {
    content: 'Populært';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--oxy-cerulean);
    background: var(--oxy-light-blue);
    padding: 4px 10px;
    border-radius: 20px;
}

.clinic-card-featured h3 {
    color: var(--oxy-navy);
}

.clinic-card-featured p {
    color: var(--color-text-light);
}

.clinic-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--oxy-navy);
}

.clinic-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.emphasis-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--oxy-navy);
    text-align: center;
    padding: 24px;
    background: var(--color-bg);
    border-radius: 12px;
    border: 2px solid var(--oxy-cerulean);
}

/* Business Grid */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.business-card {
    background: var(--color-bg-alt);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
}

.business-icon {
    width: 56px;
    height: 56px;
    background: var(--oxy-light-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.business-icon svg {
    width: 28px;
    height: 28px;
    color: var(--oxy-cerulean);
}

.business-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--oxy-navy);
}

.business-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.trust-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--oxy-light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--oxy-cerulean);
}

.trust-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--oxy-navy);
}

.trust-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.trust-note {
    background: var(--color-bg);
    border-left: 4px solid var(--oxy-cerulean);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
}

.trust-note p {
    font-size: 0.9375rem;
    color: var(--color-text);
    margin: 0;
}

/* Purchase Process Grid */
.purchase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.purchase-step {
    text-align: center;
    padding: 24px 16px;
    background: var(--color-bg-alt);
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.purchase-number {
    width: 48px;
    height: 48px;
    background: var(--oxy-cerulean);
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.purchase-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--oxy-navy);
}

.purchase-step p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .purchase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .purchase-grid {
        grid-template-columns: 1fr;
    }
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
}

.process-number {
    width: 56px;
    height: 56px;
    background: var(--oxy-cerulean);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--oxy-navy);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Reference Card */
.reference-card {
    background: var(--color-bg);
    border-radius: 16px;
    padding: 36px;
    max-width: 700px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(0, 29, 57, 0.06);
}

.reference-card-centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.reference-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--oxy-navy);
}

.reference-card p {
    margin-bottom: 24px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0, 29, 57, 0.06);
}

.contact-form-centered {
    margin-left: auto;
    margin-right: auto;
}

.contact-form-centered .form-group {
    text-align: left;
}

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

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--oxy-navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: var(--color-bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--oxy-cerulean);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: var(--color-bg);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--oxy-cerulean);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

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

.form-note a {
    color: var(--oxy-cerulean);
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Thank You Page */
.thank-you-hero {
    padding: 80px 0;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    color: #4ade80;
}

.next-steps {
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.next-step:last-child {
    border-bottom: none;
}

.next-step-number {
    width: 40px;
    height: 40px;
    background: var(--oxy-light-blue);
    color: var(--oxy-cerulean);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.next-step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--oxy-navy);
}

.next-step-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.back-link {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--oxy-navy);
    color: white;
    padding: 48px 0;
    text-align: center;
}

.footer-note {
    font-size: 0.9375rem;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copy {
    font-size: 0.8125rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0;
    }

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

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

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 1.75rem;
    }

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

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }
}
