/*
 * 1-2-3-jobs.ca Landing Page Styles
 * ImmNet Brand Colors: Primary Red #DB1818, Cream #FFF9F5, Dark #332D2D
 */

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

/* CSS Variables - ImmNet Brand */
:root {
    /* ImmNet Brand Colors */
    --background: hsl(30, 50%, 99%);
    --foreground: hsl(0, 6%, 19%);
    --card: hsl(0, 0%, 100%);
    --primary: hsl(0, 83%, 47%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(0, 80%, 30%);
    --muted: hsl(24, 30%, 95%);
    --muted-foreground: hsl(0, 6%, 40%);
    --accent: hsl(0, 100%, 55%);
    --border: hsl(24, 20%, 88%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(0, 83%, 47%) 0%, hsl(0, 80%, 30%) 100%);
    --gradient-text: linear-gradient(135deg, hsl(0, 83%, 47%) 0%, hsl(0, 80%, 35%) 100%);

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsl(0 6% 19% / 0.1);
    --shadow-card: 0 8px 30px -8px hsl(0 6% 19% / 0.12);
    --shadow-elevated: 0 20px 50px -12px hsl(0 6% 19% / 0.15);

    /* Border Radius */
    --radius: 0.75rem;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Utility Classes */
.hidden { display: none !important; }
.text-left { text-align: left; }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in {
    opacity: 0;
    animation: fade-in 0.6s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ================================
   HEADER
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 252, 250, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-container { height: 5rem; }
}

.logo { display: flex; align-items: center; }
.logo-img { height: 10rem; width: auto; }

@media (min-width: 1024px) {
    .logo-img { height: 12rem; }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover { color: var(--foreground); }

.header-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-cta { display: flex; }
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu {
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.mobile-nav {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--foreground); }

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ================================
   BUTTONS
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn svg {
    transition: transform 0.2s;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
}

.btn-ghost:hover {
    background: var(--muted);
}

.btn-hero {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px -2px rgba(219, 24, 24, 0.4);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px -2px rgba(219, 24, 24, 0.5);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--foreground);
}

.btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero { padding-top: 8rem; }
}

.hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtitle { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Company Logos */
.company-logos {
    text-align: center;
    margin-bottom: 3rem;
}

.logos-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .logos-row { gap: 3rem; }
}

.company-logo {
    height: 2.5rem;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .company-logo { height: 3rem; }
}

.company-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Feature Cards Preview */
.feature-cards-preview {
    display: grid;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature-cards-preview {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.preview-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.preview-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.preview-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.preview-icon {
    font-size: 1.5rem;
}

.preview-card-title span:last-child {
    font-weight: 600;
    color: var(--foreground);
}

.preview-badge {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(219, 24, 24, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.preview-card-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ================================
   FEATURES SECTION
================================ */
.features-section {
    padding: 6rem 0;
    background: var(--muted);
}

@media (min-width: 1024px) {
    .features-section { padding: 8rem 0; }
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 3rem; }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-icon-wrapper svg {
    color: var(--primary-foreground);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ================================
   HOW IT WORKS SECTION
================================ */
.how-it-works-section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .how-it-works-section { padding: 8rem 0; }
}

.steps-wrapper {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.steps-line {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    transform: translateY(-50%);
    opacity: 0.2;
}

@media (min-width: 1024px) {
    .steps-line { display: block; }
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.step-item {
    position: relative;
    text-align: center;
}

.step-circle {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    padding: 4px;
    box-shadow: var(--shadow-elevated);
    transition: transform 0.3s;
}

.step-item:hover .step-circle {
    transform: scale(1.1);
}

.step-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    color: var(--primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Success Stats */
.success-stats {
    margin-top: 5rem;
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (min-width: 640px) {
    .success-stats { grid-template-columns: repeat(3, 1fr); }
}

.stat-item {
    padding: 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-value { font-size: 3rem; }
}

.stat-label {
    color: var(--muted-foreground);
}

/* ================================
   INTERVIEW COACHING SECTION
================================ */
.interview-section {
    padding: 6rem 0;
    background: var(--muted);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .interview-section { padding: 8rem 0; }
}

.interview-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .interview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.interview-content .section-title {
    text-align: left;
}

.interview-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-check {
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Interview Preview Card */
.interview-preview {
    position: relative;
}

.interview-card {
    background: var(--card);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

@media (min-width: 1024px) {
    .interview-card { padding: 2rem; }
}

.current-question {
    background: var(--muted);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.question-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.question-text {
    font-weight: 500;
}

.session-report {
    background: rgba(219, 24, 24, 0.05);
    border: 1px solid rgba(219, 24, 24, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.report-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-icon svg {
    color: var(--primary-foreground);
}

.report-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.report-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.live-feedback {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feedback-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.feedback-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feedback-header {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.feedback-label {
    color: var(--muted-foreground);
}

.feedback-value {
    font-weight: 500;
    color: var(--primary);
}

.feedback-bar {
    flex: 1;
    height: 0.5rem;
    background: var(--muted);
    border-radius: 9999px;
    overflow: hidden;
}

.feedback-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 9999px;
}

.feedback-item {
    flex-direction: column;
    align-items: stretch;
}

/* Floating Feedback */
.floating-feedback {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    color: #16a34a;
}

.floating-title {
    font-weight: 500;
    font-size: 0.875rem;
}

.floating-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Coaching Features */
.coaching-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 5rem;
}

@media (min-width: 640px) {
    .coaching-features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .coaching-features { grid-template-columns: repeat(4, 1fr); }
}

.coaching-card {
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.coaching-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.coaching-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.coaching-card:hover .coaching-icon {
    transform: scale(1.1);
}

.coaching-icon svg {
    color: var(--primary-foreground);
}

.coaching-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coaching-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ================================
   PRICING SECTION
================================ */
.pricing-section {
    padding: 6rem 0;
    background: var(--muted);
}

@media (min-width: 1024px) {
    .pricing-section { padding: 8rem 0; }
}

.pricing-intro {
    text-align: left;
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-point-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.pricing-point-text {
    color: var(--muted-foreground);
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 90rem;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.pricing-card {
    position: relative;
    background: var(--card);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
    .pricing-card.popular { transform: scale(1.05); }
    .pricing-card.popular:hover { transform: scale(1.05) translateY(-4px); }
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-period {
    color: var(--muted-foreground);
}

.plan-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(219, 24, 24, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.check-icon svg {
    color: var(--primary);
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-buttons .btn {
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
}

/* ================================
   TESTIMONIALS SECTION
================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--background);
}

@media (min-width: 1024px) {
    .testimonials-section { padding: 8rem 0; }
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-elevated);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #f59e0b;
}

.testimonial-content {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .cta-section { padding: 8rem 0; }
}

.cta-card {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    background: var(--card);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

@media (min-width: 1024px) {
    .cta-card { padding: 4rem; }
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .cta-title { font-size: 3rem; }
}

.cta-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--muted);
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

@media (min-width: 1024px) {
    .footer { padding: 4rem 0 2rem; }
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr repeat(3, auto); gap: 3rem; }
}

.footer-brand { max-width: 20rem; }

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 3rem;
    width: auto;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-links h4, .footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.footer-canada {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
