:root {
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-accent: #f1f5f9;
    --accent: #0078d4;
    --accent-hover: #106ebe;
    --text: #323130;
    --text-muted: #605e5c;
    --text-light: #ffffff;
    --border: #e1e5e9;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    min-height: 72px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: inherit;
    text-decoration: none;
}

.logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
}

.brand h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.1;
}

.brand p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
    line-height: 1.1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: calc(100% - 240px);
    overflow-x: auto;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.25rem;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav a i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.main-nav a:hover::after,
.main-nav a.active-link::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active-link {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 1400px;
    min-height: auto;
    margin: 0 auto;
    background: linear-gradient(135deg, #eef7ff 0%, #f6fbff 52%, #ffffff 100%);
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(7, 45, 91, 0.08);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    max-width: 560px;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin: 0;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-page-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(7, 45, 91, 0.15);
}

.hero-page-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
}

.hero-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.75rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    color: #ffd12a;
    font-weight: 600;
}

.hero-card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-card-small {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
}

.hero.hero-services {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2rem 2rem;
    gap: 1.75rem;
    align-items: center;
}

.hero.hero-services .hero-visual {
    justify-content: center;
}

.hero.hero-services .hero-page-image {
    width: 100%;
    max-height: 400px;
    min-height: 360px;
    border-radius: 32px;
    overflow: hidden;
}

.hero.hero-services .hero-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-services .hero-actions {
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero.hero-services .hero-notes {
    margin-top: 1.25rem;
}

.hero.hero-services .hero-note {
    padding: 0.85rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.hero.hero-services .hero-page-image-simple {
    box-shadow: 0 24px 60px rgba(7, 45, 91, 0.12);
}

.hero-notes {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-card-lg {
    margin-top: 0.5rem;
    max-width: 100%;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-page-image img {
        min-height: 420px;
    }
}

@media (max-width: 700px) {
    .hero-content {
        max-width: 100%;
    }

    .hero-card-grid {
        grid-template-columns: 1fr;
    }

    .hero-notes {
        flex-direction: column;
    }
}

.hero.hero-slider {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 560px;
}

.hero-slider-inner {
    position: relative;
    width: 100%;
    min-height: 560px;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 2rem;
    color: #ffffff;
}

.hero-slide[data-slide="0"] {
    background: linear-gradient(135deg, #10284f 0%, #103f72 55%, #0d2751 100%);
    box-shadow: 0 30px 80px rgba(7, 45, 91, 0.12);
}

.hero-slide[data-slide="0"]::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at top center, rgba(255, 209, 42, 0.14), transparent 28%);
    pointer-events: none;
}

.hero-slide[data-slide="1"] {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 55%, #0891b2 100%);
}

.hero-slide[data-slide="1"]::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at top center, rgba(255, 209, 42, 0.12), transparent 28%);
    pointer-events: none;
}

.hero-slide.active {
    display: grid;
}

.hero-slide:not(.active) {
    display: none;
}

.hero-slide .hero-content {
    max-width: 620px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hero-slide h2,
.hero-slide h1 {
    color: #ffffff;
}

.hero-slide p {
    color: rgba(255, 255, 255, 0.86);
}

.hero-slide .hero-visual {
    position: relative;
    z-index: 1;
}

.hero-slide .hero-actions .btn-primary {
    background: linear-gradient(135deg, #ffd12a 0%, #f2a400 100%);
    color: #0f172a;
}

.hero-slide .hero-actions .btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
}

.hero-slide .hero-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

.hero-slide-indicators {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-slide-indicator.active {
    background: #ffd12a;
    transform: scale(1.2);
}

.hero-slide .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide .hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 1.5rem;
    }

    .hero-slide {
        position: relative !important;
        inset: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 2rem;
        text-align: center;
        padding: 3rem 1.5rem;
        min-height: 520px;
    }

    .hero-slider,
    .hero-slider-inner {
        min-height: 520px;
    }

    .hero-slide .hero-visual {
        order: 2;
        width: 100%;
    }

    .hero-slide .hero-content {
        width: 100%;
    }

    .hero-slide-indicators {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 520px;
    }

    .hero-slider-inner {
        min-height: 520px;
    }

    .hero-slide {
        position: relative !important;
        inset: auto !important;
        display: flex;
        flex-direction: column;
        min-height: 520px;
        padding: 3rem 1.5rem;
        gap: 2rem;
    }

    .hero-slide .hero-content {
        max-width: 100%;
    }

    .hero-slide .hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }

    .hero-slide p {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-slide-indicators {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .hero-slide .hero-content {
        gap: 0.6rem;
    }

    .hero-slide .hero-content h1 {
        font-size: clamp(1.35rem, 6vw, 2rem);
        line-height: 1.2;
    }

    .hero-slide p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .eyebrow {
        font-size: 0.8rem;
    }

    .hero-slide .hero-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .hero-slide .hero-card h3 {
        font-size: 1.1rem;
    }

    .hero-slide .hero-card p {
        font-size: 0.85rem;
    }

    .hero-slide-indicator {
        width: 10px;
        height: 10px;
    }
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-note {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 120, 212, 0.08);
    border-radius: 18px;
    min-width: 160px;
}

.hero-note strong {
    font-size: 1.1rem;
    color: var(--text);
}

.hero-note span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-visual {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.hero-page-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(24, 74, 134, 0.08);
}

.hero-card {
    padding: 1.75rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(24, 74, 134, 0.08);
}

.hero-card-lg {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.hero-card-badge {
    display: inline-flex;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(0, 120, 212, 0.12);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-card-title {
    margin-top: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
}

.hero-card-lg p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.hero-card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-card-small {
    padding: 1.5rem;
}

.hero-card-small span {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-muted);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
    box-shadow: 0 2px 4px rgba(0, 120, 212, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 120, 212, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: rgba(0, 120, 212, 0.1);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--text-light);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 14px;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.section-slider {
    background: var(--bg-accent);
}

.carousel-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-track {
    display: grid;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.carousel-slide.active {
    display: grid;
}

.slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: var(--bg-accent);
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.slide-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.carousel-arrow {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.carousel-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.carousel-arrow-prev {
    grid-column: 1;
}

.carousel-arrow-next {
    grid-column: 3;
}

.carousel-indicators {
    grid-column: 2;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.indicator:hover {
    background: var(--text-muted);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 209, 42, 0.5);
}

.section-hero-page {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #e8dcc8 0%, #f0e6d8 100%);
}

.page-intro {
    max-width: 720px;
}

.services-page-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.founder-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
}

.founder-title {
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.founder-contact p {
    margin-bottom: 0.75rem;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-item:hover {
    background: rgba(255, 209, 42, 0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h3 {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-item:hover h3 {
    color: var(--accent);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-card p {
    margin: 1rem 0 1.5rem 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--accent);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.95rem 1.8rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.hero-info .card {
    padding: 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    max-width: 400px;
    width: 100%;
}

.hero-info .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.card-title {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-info .card h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-info .card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.25rem 0;
}

.hero-info .card a {
    display: inline-block;
    transition: all 0.2s ease;
}

.hero-info .card a:hover h4 {
    color: var(--accent);
    transform: translateX(2px);
}

.section {
    padding: 5rem 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
}
    margin-bottom: 2rem;
}

.section-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.section h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.about-grid,
.service-grid,
.contact-grid {
    display: grid;
    gap: 1.5rem;
}

.about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.service-card,
.contact-info {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2.5rem 1.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    opacity: 0.9;
}

.about-card:hover,
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.1), rgba(255, 209, 42, 0.08));
    border-color: rgba(255, 209, 42, 0.35);
    box-shadow: 0 12px 32px rgba(255, 209, 42, 0.15);
}

.about-card:hover .about-icon {
    opacity: 1;
    transform: scale(1.1);
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(255, 209, 42, 0.15), 0 0 20px rgba(255, 209, 42, 0.1);
}

.about-card h3,
.service-card h3,
.contact-info h3 {
    margin-bottom: 1rem;
}

.service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 120, 212, 0.25);
    box-shadow: 0 18px 35px rgba(0, 120, 212, 0.12);
}

.service-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 1.35rem;
}

.service-card h3 {
    margin-bottom: 0.85rem;
}

.section-text {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-highlight {
    background: rgba(255, 245, 215, 0.7);
    padding: 6rem 2rem;
}

.section-highlight .section-header {
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.section-highlight .section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
}

.highlight-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.highlight-card {
    background: var(--bg);
    border: 1px solid rgba(23, 43, 77, 0.08);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 18px 40px rgba(23, 43, 77, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 120, 212, 0.3);
    box-shadow: 0 24px 48px rgba(23, 43, 77, 0.12);
}

.highlight-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 30px rgba(23, 43, 77, 0.08);
    display: block;
}

.highlight-card h3 {
    margin: 0 0 1rem;
    color: var(--text);
}

.highlight-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(23, 43, 77, 0.08);
}

.contact-form label {
    font-weight: 600;
    color: var(--text);
}

.alert {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(49, 176, 62, 0.14);
    color: #0f5132;
    border: 1px solid rgba(49, 176, 62, 0.32);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #19202a;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6b7280;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(0, 120, 212, 0.6);
    box-shadow: 0 0 0 4px rgba(0, 120, 212, 0.12);
}

.form-status {
    color: var(--accent);
    min-height: 1.5rem;
}

.site-footer {
    background: #f5f7fa;
    border-top: 2px solid var(--accent);
    padding: 3rem 2rem 1rem;
    color: #333;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-section ul a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #666;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

.developer-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 209, 42, 0.1);
}

.developer-link:hover {
    background: var(--accent);
    color: var(--bg);
    transform: scale(1.05);
}

.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-signup input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 120, 212, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #19202a;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-signup input:focus {
    outline: none;
    border-color: rgba(0, 120, 212, 0.6);
    box-shadow: 0 0 0 4px rgba(0, 120, 212, 0.12);
}

.newsletter-signup input::placeholder {
    color: #9ca3af;
}

.newsletter-signup button {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--accent), #0066cc);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.25);
}

.newsletter-signup button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 120, 212, 0.35);
}

.newsletter-signup button:active {
    transform: translateY(0);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
}

.social-link i {
    font-size: 1.1rem;
}

/* ===== Johannesburg Supply Page Styles ===== */

.section-hero-minimal {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 81, 163, 0.9) 0%, rgba(7, 26, 63, 1) 80%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.section-hero-minimal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 209, 42, 0.18), transparent 35%);
    pointer-events: none;
}

.hero-minimal-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-minimal-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 1.5rem 0 1rem;
    color: #ffffff;
}

.hero-minimal-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
}

.hero-minimal-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-hero-minimal .btn-primary {
    background: linear-gradient(135deg, #ffd12a 0%, #ffb400 100%);
    color: #0b2d5b;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(255, 209, 42, 0.24);
}

.section-hero-minimal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(255, 209, 42, 0.3);
}

.section-hero-minimal .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.section-hero-minimal .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 1);
}

.section-hero-minimal .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.section-stats {
    background: rgba(255, 209, 42, 0.04);
    padding: 3rem 2rem;
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 209, 42, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 209, 42, 0.08);
    border-color: rgba(255, 209, 42, 0.3);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0 0;
}

.section-products {
    padding: 4rem 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 209, 42, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 209, 42, 0.1);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(255, 209, 42, 0.15);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 209, 42, 0.15);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--text-muted);
}

.section-coverage {
    background: linear-gradient(180deg, #10294d 0%, #1f3a63 100%);
    padding: 4rem 2rem;
}

.section-coverage .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.section-coverage .section-header h2 {
    color: #ffffff;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-card-alt {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.coverage-card-alt:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.coverage-card-alt h3 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.coverage-card-alt p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.5rem;
}

.coverage-card-alt .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.coverage-card-alt .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.section-advantages {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 209, 42, 0.04) 100%);
}

.advantages-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.advantage-item:hover {
    background: rgba(255, 209, 42, 0.08);
    transform: translateX(8px);
}

.advantage-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    margin-bottom: 0.75rem;
}

.advantage-item p {
    color: var(--text-muted);
    margin: 0;
}

.section-partnership {
    background: rgba(255, 209, 42, 0.08);
    padding: 4rem 2rem;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.partnership-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.partnership-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.partnership-list li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnership-box-large {
    background: linear-gradient(135deg, rgba(255, 209, 42, 0.15) 0%, rgba(255, 209, 42, 0.05) 100%);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    min-width: 300px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(255, 209, 42, 0.1);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .advantages-flex {
        grid-template-columns: 1fr;
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-grid,
    .about-grid,
    .service-grid,
    .contact-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .founder-card {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0 1rem;
        height: 64px;
    }

    .brand h1 {
        font-size: 1.25rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .main-nav a {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1rem;
        text-align: center;
    }

    .hero h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-info .card {
        max-width: 100%;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .carousel-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .carousel-arrow-prev,
    .carousel-arrow-next {
        grid-column: 1;
        grid-row: 2;
    }

    .carousel-arrow-prev {
        justify-self: start;
    }

    .carousel-arrow-next {
        justify-self: end;
    }
}

/* ===== New Homepage Sections ===== */

/* Statistics Section */
.section-stats {
    background: #FFEEEE;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #DDEFBB, #FFEEEE);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #DDEFBB, #FFEEEE); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 5rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 209, 42, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 209, 42, 0.08);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 209, 42, 0.15);
    border-color: rgba(255, 209, 42, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Process Section */
.section-process {
    background: #DCFFBD;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #CC86D1, #DCFFBD);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #CC86D1, #DCFFBD); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 5rem 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 120, 212, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 120, 212, 0.12);
    border-color: rgba(0, 120, 212, 0.3);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #0066cc 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Blog Preview Section */
.section-blog-preview {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 5rem 2rem;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.blog-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 420px;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.blog-preview-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.blog-preview-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-preview-card:hover .blog-preview-img {
    transform: scale(1.05);
}

.blog-preview-content {
    padding: 1.2rem;
}

.blog-preview-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
}

.blog-preview-content h3 {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-preview-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-preview-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-preview-link:hover {
    color: #0066cc;
}

.blog-preview-cta {
    text-align: center;
}

/* FAQ Section */
.section-faq {
    background: #799F0C;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ACBB78, #799F0C);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ACBB78, #799F0C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.faq-question:hover {
    background: rgba(0, 120, 212, 0.05);
}

.faq-question h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 700;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    background: rgba(248, 250, 252, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    padding: 1rem 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #0066cc 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--accent);
    border-color: white;
}

.cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .section-stats,
    .section-process,
    .section-blog-preview,
    .section-faq {
        padding: 3rem 1rem;
    }

    .stat-card,
    .process-step {
        padding: 2rem 1.5rem;
    }

    .section-cta {
        padding: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }

    .carousel-indicators {
        grid-column: 1;
        margin-top: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
        margin: 0;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a::after {
        display: none;
    }
}





