/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Colorado-inspired palette */
    --sky-blue: #4A90A4;
    --sky-blue-dark: #3A7A8E;
    --sky-blue-light: #E8F4F8;
    --mountain-slate: #2C3E50;
    --sunset-orange: #E67E22;
    --sunset-orange-dark: #D35400;
    --pine-green: #27AE60;
    --pine-green-light: #E8F5EE;
    --earth-warm: #8B7355;
    --snow-white: #FAFBFC;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-light: #718096;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 7rem);
    --container-width: 1140px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--snow-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--mountain-slate);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-orange-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    background: var(--sky-blue-light);
    color: var(--sky-blue-dark);
}

.btn-secondary:hover {
    background: var(--sky-blue);
    color: white;
}

.btn-outline {
    background: transparent;
    border-color: currentColor;
    color: var(--sky-blue);
}

.btn-outline:hover {
    background: var(--sky-blue);
    border-color: var(--sky-blue);
    color: white;
}

.btn-white {
    background: white;
    color: var(--sky-blue-dark);
}

.btn-white:hover {
    background: var(--sky-blue-light);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition-medium);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--sky-blue), var(--pine-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--mountain-slate);
}

.logo-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pine-green);
    font-weight: 600;
}

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

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

.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--mountain-slate);
    transition: color var(--transition-fast);
}

.header-phone:hover {
    color: var(--sky-blue);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--mountain-slate);
    transition: all var(--transition-medium);
    transform-origin: center;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.nav-mobile a {
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sky-blue-light) 0%, var(--snow-white) 50%, var(--pine-green-light) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(74, 144, 164, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pine-green);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--mountain-slate);
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: var(--sky-blue);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--pine-green);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--pine-green);
}

/* ==================== KEY POINTS ==================== */
.key-points {
    padding: var(--section-padding) 0;
    background: white;
}

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

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

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

.point-card {
    text-align: center;
    padding: 1.5rem;
}

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

.point-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 0.5rem;
}

.point-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== SOCIAL PROOF ==================== */
.social-proof {
    padding: var(--section-padding) 0;
    background: var(--mountain-slate);
    color: white;
}

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

@media (min-width: 800px) {
    .proof-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

.proof-quote {
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0;
    color: var(--sunset-orange);
    opacity: 0.5;
    position: absolute;
    top: 2rem;
    left: -0.5rem;
}

.proof-quote p {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
}

.proof-quote cite {
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.8;
}

.proof-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sunset-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--pine-green) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta > p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-cta .btn-primary {
    background: white;
    color: var(--sky-blue-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-outline {
    border-color: white;
    color: white;
}

.final-cta .btn-outline:hover {
    background: white;
    color: var(--sky-blue-dark);
}

.cta-subtext {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-subtext a {
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--mountain-slate);
    color: white;
    padding: 4rem 0 2rem;
}

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

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

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.15);
}

.footer-brand > p {
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--sunset-orange);
}

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

.footer-col a {
    font-size: 0.95rem;
    opacity: 0.75;
    transition: opacity var(--transition-fast);
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ==================== MOBILE CTA BAR ==================== */
.mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem;
    gap: 0.75rem;
    z-index: 999;
}

@media (min-width: 768px) {
    .mobile-cta-bar {
        display: none;
    }
}

.mobile-cta-bar .btn {
    flex: 1;
    padding: 0.875rem;
}

/* ==================== PAGE HEADER (for inner pages) ==================== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--sky-blue-light) 0%, var(--snow-white) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    padding: var(--section-padding) 0;
}

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

.content-section.dark {
    background: var(--mountain-slate);
    color: white;
}

.content-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 800px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-grid.reverse {
        direction: rtl;
    }
    
    .content-grid.reverse > * {
        direction: ltr;
    }
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.content-section.dark .content-text h2 {
    color: white;
}

.content-text h2 span {
    color: var(--sky-blue);
}

.content-text > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-section.dark .content-text > p {
    color: rgba(255, 255, 255, 0.8);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--sky-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.content-section.dark .feature-icon {
    background: rgba(255, 255, 255, 0.1);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mountain-slate);
    margin-bottom: 0.25rem;
}

.content-section.dark .feature-item h4 {
    color: white;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.content-section.dark .feature-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Content Visual */
.content-visual {
    position: relative;
}

.content-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--pine-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    padding: 2rem;
    text-align: center;
}

/* ==================== CARDS ==================== */
.cards-grid {
    display: grid;
    gap: 2rem;
}

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

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

.card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--sky-blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 0.75rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== PRICING CARDS ==================== */
.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

@media (min-width: 1000px) {
    .pricing-grid[style*="grid-template-columns: repeat(3"] {
        max-width: 1100px;
    }
}

.pricing-card {
    background: var(--sky-blue-light);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--sky-blue), var(--sky-blue-dark));
    color: white;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--sunset-orange);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.pricing-card.featured .pricing-card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card .subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.pricing-card .specs {
    margin-bottom: 2rem;
}

.pricing-card .specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
}

.pricing-card.featured .specs li {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card .price {
    margin-bottom: 1.5rem;
}

.pricing-card .price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-card .price-note {
    font-size: 0.85rem;
    opacity: 0.75;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card.featured .btn {
    background: white;
    color: var(--sky-blue-dark);
}

/* ==================== VIDEO GRID ==================== */
.video-grid {
    display: grid;
    gap: 2rem;
}

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

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--mountain-slate);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
}

.video-placeholder svg {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mountain-slate);
    margin-bottom: 0.5rem;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================== FAQ ==================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mountain-slate);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-medium);
    color: var(--sky-blue);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== ARTICLE CONTENT ==================== */
.article-content {
    max-width: 750px;
    margin: 0 auto;
    padding: var(--section-padding) 1.5rem;
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin: 2.5rem 0 1rem;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin: 2rem 0 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content strong {
    color: var(--text-primary);
}

.article-content blockquote {
    border-left: 4px solid var(--sky-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.article-content th,
.article-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-content th {
    font-weight: 600;
    color: var(--mountain-slate);
    background: var(--sky-blue-light);
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--sky-blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-blue);
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mountain-slate);
    margin-bottom: 0.25rem;
}

.contact-method a,
.contact-method p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-method a:hover {
    color: var(--sky-blue);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mountain-slate);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

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

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

/* ==================== TWO PATHS SECTION ==================== */
.two-paths {
    padding: var(--section-padding) 0;
    background: var(--sky-blue-light);
}

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

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

.path-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.path-card.no-ac::before {
    background: linear-gradient(90deg, var(--sunset-orange), #f39c12);
}

.path-card.has-ac::before {
    background: linear-gradient(90deg, var(--sky-blue), var(--pine-green));
}

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

.path-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 1rem;
}

.path-card > p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.path-benefits {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.path-benefits li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== BEFORE SUMMER SECTION ==================== */
.before-summer {
    padding: var(--section-padding) 0;
    background: var(--mountain-slate);
    color: white;
}

.before-summer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.before-summer h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.before-summer-text > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.timeline-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
}

.timeline-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.before-summer-cta {
    font-size: 1.15rem;
    margin: 2rem 0 1.5rem;
}

/* ==================== ABOUT PAGE STORY ==================== */
.about-story {
    max-width: 800px;
    margin: 0 auto;
}

.story-chapter {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.story-chapter:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 700px) {
    .story-chapter {
        grid-template-columns: 120px 1fr;
        gap: 3rem;
    }
}

.chapter-year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sunset-orange);
    padding: 0.5rem 1rem;
    background: var(--sky-blue-light);
    border-radius: 8px;
    text-align: center;
    height: fit-content;
}

.chapter-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 1rem;
}

.chapter-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.chapter-content p:last-child {
    margin-bottom: 0;
}

/* ==================== FOUNDER'S STORY SECTION ==================== */
.founders-story {
    padding: var(--section-padding) 0;
    background: white;
    position: relative;
}

.founders-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--pine-green), var(--sunset-orange));
}

.story-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.founders-story h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--mountain-slate);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text {
    text-align: left;
    margin-bottom: 2rem;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-promise {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, var(--sky-blue-light), var(--pine-green-light));
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    margin-top: 2rem;
}

.promise-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.promise-text {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.promise-text strong {
    color: var(--mountain-slate);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add padding to body for mobile CTA bar */
@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
}

/* ==================== SCROLL TO TOP BUTTON ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--sky-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--sky-blue-dark);
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
    }
}
