:root {
    /* Brand Colors - Snow/Ski SaaS Vibe (Evening Mode) */
    --color-primary: #3B82F6;
    --gradient-primary: linear-gradient(135deg, #38BDF8 0%, #818CF8 100%);
    /* Lighter Blue -> Purple for dark bg */
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.2) 0%, rgba(129, 140, 248, 0.1) 50%, transparent 100%);

    --color-secondary: #0F172A;
    /* Slate 900 */
    --color-accent: #38BDF8;
    /* Sky Blue */
    --color-accent-blue: #60A5FA;
    --color-accent-red: #F87171;
    --color-accent-green: #34D399;

    /* Backgrounds & Text */
    --color-bg: #0F172A;
    /* Slate 900 */
    --color-bg-subtle: #1E293B;
    /* Slate 800 */
    --color-surface: #FFFFFF;
    /* Keep cards white for contrast, or use glass */

    --color-text-main: #FFFFFF;
    /* High contrast for body */
    --color-text-muted: #CBD5E1;
    /* Light grey for subtext */
    --color-text-inverted: #0F172A;
    /* Dark text for inside white cards */

    --color-border: #334155;
    --color-border-subtle: #1E293B;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-card-hover: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
    --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.3);

    /* Fonts */
    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    /* Fallback / CSS Generated Snow & Mountains */
    background-image:
        /* Snow layer */
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0)),
        /* Mountain Silhouette (Gradient) */
        linear-gradient(to bottom, transparent 0%, transparent 60%, #020617 100%),
        /* Deep Sky */
        linear-gradient(180deg, #0F172A 0%, #172554 100%);
    background-size: 200px 200px, 200px 200px, 200px 200px, 200px 200px, 200px 200px, 100% 100%, 100% 100%;
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--color-accent-blue);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #93C5FD;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

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

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    line-height: 1.25;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 6px -1px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.text-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-accent-blue);
}

.text-link:hover {
    gap: 0.5rem;
    /* Slide arrow effect */
    color: var(--color-white);
}

/* A) Announcement Bar */
.announcement-bar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: var(--color-text-main);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-bar p {
    margin: 0;
}

.login-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.announcement-bar a {
    color: var(--color-accent);
    font-weight: 600;
    margin-left: 0.5rem;
}

.announcement-bar .login-link {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    margin-left: 0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.announcement-bar .school-link {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    margin-left: 0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.announcement-bar .school-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.announcement-bar .login-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

/* B) Hero Section */
.hero {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    position: relative;
    overflow: visible;
    /* Allow glow to spill if needed */
}

/* Hero Glow Effect */
.hero::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -50%;
    left: -20%;
    background: var(--gradient-glow);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

    h1 {
        font-size: 3.75rem;
    }
}

.hero-subhead {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    max-width: 540px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-bullets .material-icons-round {
    color: var(--color-accent-blue);
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    padding: 2px;
    font-size: 1.25rem;
}

/* Mock Card (Hero Visual) */
.hero-visual {
    position: relative;
    /* Center the visual on mobile */
    display: flex;
    justify-content: center;
}

.mock-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-card-hover);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease-out;
    position: relative;
}

.mock-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* Mock Graphics - Text inside mock card should be dark */
.mock-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.mock-avatar {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
    border-radius: 50%;
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.mock-line {
    height: 0.75rem;
    background: #E2E8F0;
    /* Hardcoded light grey for inner card */
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}

.mock-line.short {
    width: 40%;
    background: #CBD5E1;
}

.mock-line.long {
    width: 80%;
}

.mock-body {
    background: #F8FAFC;
    /* Slate 50 */
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.mock-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    align-items: flex-end;
}

.mock-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
    /* Inverted Text Muted */
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.mock-val {
    font-weight: 700;
    font-size: 1.125rem;
    color: #0F172A;
    /* Inverted Text Main */
}

.mock-badge {
    background: #DCFCE7;
    color: #15803D;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mock-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 80px;
}

.mock-bar {
    flex: 1;
    background: #E2E8F0;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.mock-bar.active {
    background: var(--gradient-primary);
    box-shadow: 0 4px 10px rgba(129, 140, 248, 0.3);
}

.mock-btn {
    width: 100%;
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem;
    background: #F8FAFC;
    border-radius: 0.75rem;
    border: 1px solid #E2E8F0;
}

/* C) Pain/Solution */
.executive-trigger {
    background: rgba(255, 255, 255, 0.02);
    /* Very subtle overlay */
    position: relative;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.split-layout {
    display: grid;
    gap: 4rem;
}

@media (min-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.pain-column h3,
.solution-column h3 {
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.pain-column h3 {
    color: var(--color-accent-red);
}

.solution-column h3 {
    color: var(--color-accent-green);
}

.pain-list li,
.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.pain-list .material-icons-round {
    color: var(--color-accent-red);
}

.solution-list .material-icons-round {
    color: var(--color-accent-green);
}


/* D) Features Grid (Winter Decor) */
.features {
    padding: var(--spacing-xl) 0;
    background: transparent;
    /* Allow body bg to show */
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Feature cards need inverted text (dark on white) */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
    border-color: var(--color-accent-blue);
    background: #FFFFFF;
}

/* Force dark text inside feature cards */
.feature-card h4 {
    color: #0F172A;
    text-shadow: none;
}

.feature-card p {
    color: #475569;
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.icon-box span {
    font-size: 1.75rem;
}


/* E) Executive Section (Dark) */
.executive-value {
    padding: var(--spacing-xl) 0;
    background: rgba(0, 0, 0, 0.3);
    /* Darken slightly */
    position: relative;
}

.executive-value h2 {
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.executive-value p {
    color: #CBD5E1;
}

.value-pillars {
    display: grid;
    gap: 2rem;
    margin: 4rem 0;
}

@media (min-width: 900px) {
    .value-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.ltv-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 auto 3rem;
    max-width: 700px;
    backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
    .ltv-box {
        flex-direction: row;
        text-align: left;
    }
}

.ltv-icon {
    font-size: 2.5rem;
    color: #FBBF24;
    /* Amber */
    background: rgba(251, 191, 36, 0.1);
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.ltv-text {
    font-size: 1.125rem;
    color: #E2E8F0;
    margin-bottom: 0px;
}

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

/* F) Instructor & G) Audience */
.instructor-value,
.student-value {
    padding: var(--spacing-xl) 0;
}

.split-layout.reversed {
    grid-template-columns: 1fr 1fr;
}

@media(max-width: 900px) {
    .split-layout.reversed {
        display: flex;
        flex-direction: column-reverse;
    }

    .split-layout {
        display: flex;
        flex-direction: column;
    }
}

blockquote {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-main);
    border-left: 4px solid var(--color-accent-blue);
    padding-left: 2rem;
    margin-top: 2rem;
}

cite {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-muted);
}

cite::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--color-border);
}

.audience-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Audience cards need inverted text */
.audience-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    background: #fff;
}

.audience-card h4 {
    color: #0F172A;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.audience-card p {
    color: #475569;
}

/* H) Timeline */
.process {
    padding: var(--spacing-xl) 0;
    background: transparent;
}

.timeline {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .timeline {
        flex-direction: row;
        gap: 1rem;
    }

    .timeline::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, var(--color-accent-blue) 50%, rgba(255, 255, 255, 0.1) 100%);
        z-index: 0;
    }
}

.step {
    position: relative;
    z-index: 1;
    background: transparent;
    /* No mask needed if text contrast is good, or use partial bg */
    padding: 0 1rem;
    flex: 1;
    text-align: center;
}

.step-num {
    width: 5rem;
    height: 5rem;
    background: rgba(15, 23, 42, 0.8);
    /* Dark bg */
    border: 4px solid var(--color-accent-blue);
    color: var(--color-accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step h4 {
    color: var(--color-white);
}

.step p {
    color: var(--color-text-muted);
}


/* I) FAQ */
.faq-section {
    background: rgba(0, 0, 0, 0.1);
    padding: var(--spacing-xl) 0;
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 0 2rem 1.5rem;
    color: var(--color-text-muted);
}

.accordion-header[aria-expanded="true"] {
    background: rgba(56, 189, 248, 0.1);
    color: var(--color-accent-blue);
}

.accordion-header[aria-expanded="true"] .material-icons-round {
    transform: rotate(180deg);
}


/* J) Final CTA */
.final-cta {
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: 6rem 0;
}

.final-cta h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: none;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.final-cta p.no-disruption {
    color: rgba(255, 255, 255, 0.7);
}

.final-cta .btn-secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.final-cta .btn-primary {
    background: #FFFFFF;
    color: var(--color-primary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* K) Footer */
footer {
    padding: 3rem 0;
    background: #020617;
    /* Very dark */
    color: #64748B;
    text-align: center;
    border-top: 1px solid #1E293B;
}

.footer-links a {
    color: #94A3B8;
    margin: 0 1rem;
    transition: color 0.2s;
}

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


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    /* Slate 900 + opacity */
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #FFFFFF;
    /* Modal always white */
    padding: 2.5rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 520px;
    position: relative;
    box-shadow: var(--shadow-card-hover);
    margin: 2rem;
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #0F172A;
}

.modal-content h3 {
    color: #0F172A;
    text-shadow: none;
}

.modal-content p {
    color: #64748B;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    background: #F1F5F9;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0F172A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: #F8FAFC;
    border-color: #E2E8F0;
    border-radius: 0.75rem;
    transition: all 0.2s;
    border-width: 1px;
    border-style: solid;
    font-family: inherit;
    font-size: 1rem;
    color: #0F172A;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.full-width {
    width: 100%;
}