/* Global Styles */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF7F50;
    --primary-orange-hover: #E66B3C;
    --dark-blue: #0F172A;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-cream: #FFFBF0;
    --white: #FFFFFF;
    --accent-green: #34D399;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-btn {
    background: var(--primary-orange);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-orange-hover);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 20px 100px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cta-button:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--dark-blue);
    border: 1px solid #E2E8F0;
}

.cta-button.secondary:hover {
    border-color: var(--dark-blue);
    background: var(--white);
}

.cta-button.outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.cta-button.outline:hover {
    border-color: var(--text-dark);
    background: rgba(15, 23, 42, 0.02);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 12px;
    /* Background removed, using img tag */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Key Offerings */
.offerings {
    padding: 100px 20px;
    background: var(--white);
}

.offerings-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.offering-card {
    text-align: left;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.offering-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 12px;
    background: #FFF7ED;
    border-radius: 12px;
}

.offering-card h3 {
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

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

/* Section Styles */
section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
#about {
    background: var(--light-gray);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Solutions Section */
#solutions {
    background: var(--white);
}

.solutions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.solution-card h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.solution-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Impact Section */
#impact {
    background: var(--dark-blue);
    color: var(--white);
}

#impact .section-header h2,
#impact .section-header p {
    color: var(--white);
}

.impact-cards {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

.impact-card p {
    line-height: 1.8;
    opacity: 0.9;
    color: #E2E8F0;
}

.impact-cta {
    text-align: center;
    margin-top: 60px;
}

.impact-cta a {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.impact-cta a:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    padding: 100px 20px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intake-button {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(239, 127, 99, 0.3);
}

.intake-button:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239, 127, 99, 0.4);
}

.contact-footer {
    margin-top: 30px;
    color: var(--text-light);
    font-size: 1rem;
}

.contact-footer a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 80px 20px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: left;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.footer-links-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #9CA3AF;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary-orange);
}

.copyright {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: auto;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll animations for cards */
.service-item,
.promise-icon-card,
.team-card,
.approach-card,
.serve-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-item {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item:nth-child(4) {
    animation-delay: 0.15s;
}

.service-item:nth-child(5) {
    animation-delay: 0.25s;
}

.service-item:nth-child(6) {
    animation-delay: 0.35s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu {
        display: flex;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

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

    .nav-container {
        padding: 20px;
    }
}

/* Before/After Slider Section */
.transformation-section {
    background: var(--bg-light);
    padding: 100px 20px;
}

.slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    cursor: col-resize;
    user-select: none;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Zoom out the dashboard image for better viewability */
.after-image img {
    object-fit: contain;
    object-position: right;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1318 100%);
}

.before-image {
    width: 50%;
    /* Initial position */
    z-index: 2;
    border-right: 2px solid var(--white);
}

.before-image img {
    width: 1000px;
    /* Match container width to prevent squishing */
    max-width: none;
}

/* Adjust image width on resize via JS or media query if fixed width */
@media (max-width: 1040px) {
    .before-image img {
        width: calc(100vw - 80px);
        /* Approximate width minus padding */
    }
}

.label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 3;
}

.before-label {
    left: 20px;
}

.after-label {
    right: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--white);
    z-index: 10;
    cursor: col-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    pointer-events: none;
    /* Let clicks pass through to container */
}

.handle-circle {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease;
}

.slider-container:hover .handle-circle {
    transform: scale(1.1);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
}

/* Problem Section - Redesigned */
.problem-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Pain Points Grid */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.pain-point-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pain-point-card h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* Problem Stats */
.problem-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 50px 40px;
    background: var(--dark-blue);
    border-radius: 16px;
    color: var(--white);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 30px;
}

/* Solution CTA */
.problem-solution-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.problem-solution-cta h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 800;
}

.problem-solution-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.problem-solution-cta .cta-button {
    display: inline-block;
}

/* Solutions / Pillars Section */
.solutions-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.pillars-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pillar-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.pillar-header {
    padding: 40px 40px 20px;
    background: linear-gradient(to bottom, #FFF7ED, #FFFFFF);
    border-bottom: 1px solid var(--border-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: var(--primary-orange);
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.pillar-subtitle {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pillar-content {
    padding: 30px 40px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pillar-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Mini Grid for Pillar 1 */
.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mini-card {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.mini-card:hover {
    border-color: var(--primary-orange);
    background: #FFF7ED;
}

.mini-card h4 {
    font-size: 0.95rem;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.mini-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.3;
}

/* Check List for Pillar 2 & 3 */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 20px;
    background: var(--dark-blue);
    color: var(--white);
}

.why-us-section .section-header h2,
.why-us-section .section-header p {
    color: var(--white);
}

.why-us-content {
    max-width: 1000px;
    margin: 0 auto;
}

.why-us-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.differentiator-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.differentiator-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.why-us-footer {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Who We Serve Section */
.who-we-serve-section {
    padding: 100px 20px;
    background: var(--white);
}

.segments-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.segment-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.segment-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.segment-card h3 {
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.segment-range {
    display: inline-block;
    background: #FFF7ED;
    color: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.segment-quote {
    font-style: italic;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-blue);
}

/* Transformation Stats */
.transformation-stats {
    max-width: 1000px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.stat-column.before h3 {
    color: #EF4444;
}

.stat-column.after h3 {
    color: #10B981;
}

.stat-column ul {
    list-style: none;
    padding: 0;
}

.stat-column li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.stat-column.before li::before {
    content: "✕";
    color: #EF4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.stat-column.after li::before {
    content: "✓";
    color: #10B981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-orange);
}

.pricing-card h3 {
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.pricing-footer {
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-tagline {
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

/* Privacy Policy Section */
.privacy-section {
    padding: 120px 20px 60px;
    background: var(--white);
    min-height: 80vh;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content {
    margin-top: 40px;
    color: var(--text-dark);
    line-height: 1.8;
}

.privacy-content h2 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.privacy-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.privacy-content a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* About Page Styles */

/* About Hero - Split Screen */
.about-hero-split {
    padding: 120px 20px 60px;
    background: #FFFBF0;
}

.hero-split-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-split-content {
    text-align: left;
}

.hero-split-content h1 {
    font-size: 0.9rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-split-content h2 {
    font-size: 2.75rem;
    color: var(--dark-blue);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-split-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-split-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    height: 500px;
}

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

/* Trust Bar */
.trust-bar {
    padding: 40px 20px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.trust-logo {
    color: #9CA3AF;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.trust-logo:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 100px 20px;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mv-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-orange);
    display: inline-block;
    padding-bottom: 5px;
}

.mv-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Why We Exist */
.why-exist-section {
    padding: 120px 20px;
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.why-exist-section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.why-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 50px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
}

.feature-list li {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.15);
}

.feature-list .icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.why-closer {
    font-size: 1.1rem;
    margin-top: 40px;
    opacity: 0.9;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* What We Do */
.what-we-do-section {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    text-align: center;
}

.what-we-do-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.what-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #FFF7ED;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-orange);
}

.service-item h4 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-footer {
    margin-top: 40px;
    text-align: center;
}

.text-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--primary-orange-hover);
    text-decoration: underline;
}

/* Our Approach */
.approach-section {
    padding: 120px 20px;
    background: var(--bg-light);
    text-align: center;
}

.approach-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 800;
}

.approach-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
    font-weight: 500;
}

.approach-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.approach-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.approach-card .number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.approach-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.approach-headline {
    font-size: 0.95rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.approach-card p:not(.approach-headline) {
    color: var(--text-light);
    line-height: 1.6;
}

/* Meet the Team */
.team-section {
    padding: 120px 20px;
    background: var(--white);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.team-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.team-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo.placeholder {
    background: #FFF7ED;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.team-card h3 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.team-title {
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.team-bio {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
    margin-bottom: 20px;
}

.team-story {
    font-size: 0.95rem;
    color: var(--primary-orange);
    font-style: italic;
    line-height: 1.6;
    text-align: left;
    border-left: 3px solid var(--primary-orange);
    padding-left: 16px;
    margin-top: 20px;
}

/* Philosophy */
.philosophy-section {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 24px;
    font-weight: 800;
}

.philosophy-section h3 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.philosophy-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* Who We Serve */
.who-serve-section {
    padding: 100px 20px;
    background: var(--dark-blue);
    color: var(--white);
}

.who-serve-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.serve-grid {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.serve-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.serve-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.serve-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 16px;
    font-weight: bold;
}

.serve-card h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.serve-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.serve-footer {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Promise - Redesigned */
.promise-section-redesign {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #ffffff, #FFFBF0);
    text-align: center;
}

.promise-section-redesign h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 800;
}

.promise-section-redesign h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 400;
}

.promise-icon-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.promise-icon-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.promise-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.promise-icon {
    width: 80px;
    height: 80px;
    background: #FFF7ED;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-orange);
}

.promise-icon-card h4 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 700;
}

.promise-metric {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.promise-icon-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.promise-footer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-light);
}

/* About CTA */
.about-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.about-cta h3 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-trust {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 24px;
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Blog Hero */
.blog-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
    text-align: center;
}

.blog-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.blog-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Blog Container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Post */
.blog-featured {
    padding: 60px 20px;
    background: var(--white);
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.featured-image {
    position: relative;
    height: 400px;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-content {
    padding: 50px 50px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

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

/* Post Meta */
.post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.post-category {
    background: #FFF7ED;
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.post-date,
.post-read-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
}

/* Blog Posts Grid */
.blog-posts-section {
    padding: 60px 20px 100px;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-content h3 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Load More */
.blog-load-more {
    text-align: center;
}

/* Newsletter Section */
.blog-newsletter {
    padding: 80px 20px;
    background: var(--dark-blue);
}

.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.newsletter-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   BLOG ARTICLE STYLES
   ======================================== */

/* Article Header */
.article-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.back-to-blog {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--primary-orange-hover);
}

.article-header h1 {
    font-size: 2.75rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--dark-blue);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Featured Image */
.article-featured-image {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-featured-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Article Container */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

/* Article Content */
.article-content {
    max-width: 750px;
}

.article-content .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 1.75rem;
    color: var(--dark-blue);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.article-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-orange);
    padding: 30px 35px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
}

.article-content blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.article-content blockquote cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid var(--border-color);
}

.article-cta h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    margin-top: 0;
}

.article-cta p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.toc-list,
.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li,
.related-list li {
    margin-bottom: 12px;
}

.toc-list a,
.related-list a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.5;
}

.toc-list a:hover,
.related-list a:hover {
    color: var(--primary-orange);
}

.newsletter-sidebar p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.newsletter-sidebar .newsletter-input {
    width: 100%;
    margin-bottom: 12px;
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.newsletter-sidebar .newsletter-input::placeholder {
    color: var(--text-light);
}

.newsletter-sidebar .cta-button {
    width: 100%;
}

/* More Articles */
.more-articles {
    padding: 100px 20px;
    background: var(--bg-light);
}

.more-articles h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero */
.contact-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
    text-align: center;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-icon {
    width: 100px;
    height: 100px;
    background: #FFF7ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-orange);
}

.contact-hero h1 {
    font-size: 2.75rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Action Buttons Section */
.contact-actions {
    padding: 40px 20px;
    background: var(--white);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Google Form Section */
.contact-form-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 800;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-embed {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.form-embed iframe {
    display: block;
    border-radius: 8px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 20px;
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #FFF7ED;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-orange);
}

.info-item h4 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-orange-hover);
    text-decoration: underline;
}

/* Trust Strip */
.contact-trust-section {
    padding: 60px 20px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Micro-FAQ Section */
.contact-faq-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.contact-faq-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 60px;
    font-weight: 800;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 40px 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-orange);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Final CTA Section */
.contact-final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-final-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CAREERS PAGE STYLES
   ======================================== */

/* Careers Hero */
.careers-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFFFFF 100%);
}

.careers-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.careers-hero-content h1 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.careers-hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.careers-hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    height: 500px;
}

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

/* Careers Container */
.careers-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mission & Growth Section */
.careers-mission-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.careers-mission-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 60px;
    font-weight: 800;
}

.mission-growth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mission-growth-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mission-growth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.mission-growth-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-growth-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-weight: 700;
}

.mission-growth-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Culture & Values Section */
.culture-values-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.culture-values-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 60px;
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #FFF7ED;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-orange);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Future Roles Section */
.future-roles-section {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.future-roles-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.roles-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.role-card {
    background: var(--bg-light);
    padding: 40px 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.role-category {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.role-card h3 {
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.role-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.roles-footer-muted {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
}

/* What It's Like Section */
.work-life-section {
    padding: 100px 20px;
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.work-life-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.work-life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.work-life-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.work-life-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.work-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.work-life-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--white);
}

.work-life-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Team Stories Placeholder */
.team-stories-placeholder {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    padding: 40px 20px;
}

/* Talent Network CTA Section */
.talent-network-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFFFFF 100%);
    text-align: center;
}

.talent-network-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.network-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.network-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.network-microcopy {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* About Hero Split */
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-split-content {
        text-align: center;
    }

    .hero-split-content h2 {
        font-size: 2rem;
    }

    .hero-split-image {
        height: 300px;
    }

    /* Trust Bar */
    .trust-logos {
        gap: 24px;
    }

    .trust-logo {
        font-size: 0.95rem;
    }

    /* Promise Grid */
    .promise-icon-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promise-icon-card {
        padding: 40px 30px;
    }

    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Who We Serve Grid */
    .serve-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    /* Feature List Icons */
    .feature-list li {
        font-size: 1rem;
        padding: 20px 24px;
    }

    .feature-list .icon {
        font-size: 1.5rem;
    }

    .pain-points-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .problem-stats {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .problem-solution-cta {
        padding: 50px 30px;
    }

    .problem-solution-cta h3 {
        font-size: 1.75rem;
    }

    .contact-card {
        padding: 40px 20px;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .intake-button {
        padding: 16px 30px;
        font-size: 1.1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
    /* Tablet adjustments */
    .promise-icon-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .hero-split-container {
        gap: 50px;
    }

    /* Careers Tablet */
    .careers-hero-container {
        gap: 50px;
    }

    .mission-growth-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .work-life-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Problem Section Tablet */
    .pain-points-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact Page Tablet */
    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Blog Tablet */
    .featured-post-card {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 300px;
    }

    .featured-content {
        padding: 40px;
    }

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

    .article-container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .sidebar-card {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-split-content h2 {
        font-size: 1.75rem;
    }

    .hero-split-content p {
        font-size: 1rem;
    }

    .hero-split-image {
        height: 250px;
    }

    .cta-buttons-container {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pain-point-card {
        padding: 30px 25px;
    }

    .problem-stats {
        padding: 35px 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .problem-solution-cta {
        padding: 40px 25px;
    }

    .problem-solution-cta h3 {
        font-size: 1.5rem;
    }

    .pillar-card {
        width: 100%;
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }

    .team-card {
        padding: 40px 24px;
    }

    .promise-icon-card {
        padding: 30px 24px;
    }

    .promise-metric {
        font-size: 1.5rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-buttons .cta-button {
        width: 100%;
    }

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

    .trust-logos {
        gap: 32px;
    }

    /* Careers Page Mobile */
    .careers-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .careers-hero-image {
        height: 300px;
    }

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

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

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

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

    .team-stories-placeholder {
        padding: 30px 20px;
    }

    .network-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .network-cta-buttons .cta-button {
        width: 100%;
    }

    /* Contact Page Mobile */
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero-icon {
        width: 80px;
        height: 80px;
    }

    .contact-hero-icon svg {
        width: 60px;
        height: 60px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .action-buttons .cta-button {
        width: 100%;
    }

    .form-embed {
        padding: 15px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-item {
        padding: 35px 25px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-item {
        padding: 30px 25px;
    }

    .contact-final-cta h2 {
        font-size: 1.75rem;
    }

    /* Blog Mobile */
    .blog-hero h1 {
        font-size: 2rem;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }

    .featured-content {
        padding: 30px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-excerpt {
        font-size: 1.1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-cta {
        padding: 35px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links-column {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}