﻿/* ===================================
   UNIFIED SITE STYLES - MOTIVATION ALLIANCE
   All pages use this single CSS file
   =================================== */

/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    --primary-color: #057C99;
    --primary-dark: #065a75;
    --secondary-color: #4dd0e1;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 50px;
    --transition: all 0.3s ease;
}

/* ===================================
   BASE RESET & TYPOGRAPHY
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   CONTAINER
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    line-height: normal;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

    .btn-primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

    .btn-secondary:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-nav {
    padding: 12px 28px;
    font-size: 18px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
    display: block;
    vertical-align: middle;
}

.logo {
    display: flex;
    align-items: center;
}

.logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-menu a:not(.btn-primary) {
        text-decoration: none;
        color: #4a5568;
        font-weight: 500;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .nav-menu a:hover:not(.btn-primary) {
        color: #0a7ea4;
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1a202c;
    position: relative;
    transition: all 0.3s ease;
}

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #1a202c;
        transition: all 0.3s ease;
        left: 0;
    }

    .hamburger::before {
        top: -7px;
    }

    .hamburger::after {
        bottom: -7px;
    }

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

    .mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

    .mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    padding: 30px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #a0aec0;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #4dd0e1;
        }

/* ===================================
   HOME PAGE STYLES
   =================================== */

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hero-features li {
        padding: 8px 0;
        padding-left: 28px;
        position: relative;
        color: var(--text-medium);
        font-size: 16px;
    }

        .hero-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

.hero-image {
    position: relative;
}

/* Trust line styling */
.hero-trust {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

    .why-choose h2 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 16px;
        color: var(--text-dark);
    }

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Participant Experience & Admin Tools Sections */
.participant-experience,
.admin-tools {
    padding: 100px 0;
}

.experience-content,
.admin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-text h2,
.admin-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.experience-text p,
.admin-text p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
}

    .trusted-by h2 {
        font-size: 32px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
        color: var(--text-dark);
    }

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 180px;
}

    .logo-item img {
        max-width: 140px;
        height: auto;
        opacity: 0.7;
        transition: var(--transition);
        filter: grayscale(100%);
    }

    .logo-item:hover img {
        opacity: 1;
        filter: grayscale(0%);
    }

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF -50.08%, #E3F0F7 100%);
}

.cta-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

    .cta-content h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 20px;
        margin-bottom: 32px;
        opacity: 0.95;
    }

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

    .faq-section h2 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
        color: var(--text-dark);
    }

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

    .faq-question:hover {
        color: var(--primary-color);
    }

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        background-color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .faq-icon::before {
        top: 50%;
        left: 0;
        width: 24px;
        height: 2px;
        transform: translateY(-50%);
    }

    .faq-icon::after {
        top: 0;
        left: 50%;
        width: 2px;
        height: 24px;
        transform: translateX(-50%);
    }

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

    .faq-answer.open {
        max-height: 300px;
    }

    .faq-answer p {
        padding: 0 0 16px;
        font-size: 16px;
        color: var(--text-medium);
        line-height: 1.7;
    }

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
    overflow: hidden;
}

    .testimonials h2 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
        color: var(--text-dark);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-bubble {
    position: relative;
    padding: 28px 28px 24px;
    border-radius: 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .testimonial-bubble.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .testimonial-bubble::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 32px;
        width: 0;
        height: 0;
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
    }

    .testimonial-bubble:nth-child(2)::after,
    .testimonial-bubble:nth-child(5)::after {
        left: auto;
        right: 32px;
    }

    .testimonial-bubble:nth-child(3)::after,
    .testimonial-bubble:nth-child(6)::after {
        left: 50%;
        transform: translateX(-50%);
    }

.testimonial-dark {
    background-color: #2d3748;
}

    .testimonial-dark::after {
        border-top: 14px solid #2d3748;
    }

.testimonial-primary {
    background-color: var(--primary-color);
}

    .testimonial-primary::after {
        border-top: 14px solid var(--primary-color);
    }

.testimonial-teal {
    background-color: #1a8a7d;
}

    .testimonial-teal::after {
        border-top: 14px solid #1a8a7d;
    }

.bubble-dots {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

    .bubble-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.4);
    }

.testimonial-quote {
    font-size: 16px;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
    font-weight: 400;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.85;
}

.testimonial-bubble.animate-in:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Accolades Section */
.accolades {
    padding: 80px 0;
    background-color: var(--bg-light);
}

    .accolades h2 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 50px;
        color: var(--text-dark);
    }

.accolades-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.accolade-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .accolade-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .accolade-item img {
        max-width: 300px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .accolade-item.animate-in:hover img {
        transform: scale(1.05);
    }

/* How We Work Section */
.how-we-work {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

    .how-we-work h2 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 16px;
        color: var(--text-dark);
    }

.steps-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 3px;
    background-color: var(--border-color);
    z-index: 0;
}

.steps-line-fill {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    transition: width 1s ease;
}

    .steps-line-fill.animate-in {
        width: 100%;
    }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.step-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .step-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.step-item:hover .step-number {
    background-color: var(--primary-color);
    color: #ffffff;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.65;
}

.how-we-work-cta {
    text-align: center;
    margin-top: 50px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a3d4f 0%, #057C99 50%, #0a6e5c 100%);
    color: #ffffff;
}

    .stats-section h2 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
        color: #ffffff;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .stat-item.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.stat-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    color: #ffffff;
}

.stat-item h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.stat-item p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
    margin: 0 auto;
}

.stat-item:not(:last-child) {
    position: relative;
}

    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -24px;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }

/* Solutions Section (Homepage 3-card layout) */
.solutions {
    padding: 100px 0;
}

    .solutions h2 {
        font-size: 40px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 16px;
        color: var(--text-dark);
    }

.solutions-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 60px auto 0;
    align-items: stretch;
}

.solution-card-home {
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .solution-card-home:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.solution-card-featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(5, 124, 153, 0.2);
}

.solution-header {
    padding: 32px 28px 28px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.solution-card-featured .solution-header {
    background-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.solution-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.solution-card-featured .solution-header h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.solution-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 20px;
}

.solution-features-home {
    list-style: none;
    padding: 32px 28px;
    margin: 0;
    flex: 1;
}

    .solution-features-home li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 14px 0;
        font-size: 16px;
        color: var(--text-dark);
        line-height: 1.5;
    }

.solution-checks {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e6f7f0;
    color: #0d9f6e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.solution-footer {
    padding: 20px 28px 32px;
    text-align: center;
}

    .solution-footer .btn {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 600;
    }

.solution-card-featured .solution-footer .btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.solution-card-home:not(.solution-card-featured) .solution-footer .btn {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: none;
}

    .solution-card-home:not(.solution-card-featured) .solution-footer .btn:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

.solutions-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}

/* ===================================
   CONTENT PAGES (Solutions, Pricing, Partners, About, Contact)
   =================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 80px 0 60px;
    text-align: center;
}

    .page-hero h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #1a202c;
    }

    .page-hero .hero-subtitle {
        font-size: 20px;
        color: #4a5568;
        max-width: 700px;
        margin: 0 auto;
    }

/* Content Sections */
.content-section,
.solutions-section,
.pricing-section,
.partners-section,
.about-section,
.contact-section {
    padding: 80px 0;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #2d3748;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

    .solution-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.solution-icon {
    color: #0a7ea4;
    margin-bottom: 24px;
}

.solution-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
}

.solution-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .solution-features li {
        padding: 8px 0;
        padding-left: 28px;
        position: relative;
        color: #2d3748;
        font-size: 15px;
    }

        .solution-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0a7ea4;
            font-weight: bold;
        }

/* Features Overview */
.features-overview {
    background: #f7fafc;
    padding: 80px 0;
}

    .features-overview h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 16px;
    }

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item-small {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
}

    .feature-item-small h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #1a202c;
    }

    .feature-item-small p {
        font-size: 14px;
        color: #4a5568;
        line-height: 1.6;
    }

/* Pricing Section */
.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

    .pricing-intro h2 {
        font-size: 36px;
        margin-bottom: 16px;
    }

.pricing-structure {
    max-width: 700px;
    margin: 0 auto 80px;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 48px;
}

    .pricing-card.featured {
        border-color: #0a7ea4;
        box-shadow: 0 10px 25px rgba(10, 126, 164, 0.1);
    }

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

    .pricing-header h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
    }

.pricing-subtitle {
    font-size: 16px;
    color: #4a5568;
}

.pricing-details {
    margin: 32px 0;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
}

    .pricing-feature:last-child {
        border-bottom: none;
    }

    .pricing-feature.highlight {
        background: #e6fffa;
        padding: 16px;
        border-radius: 8px;
        border: none;
        margin-top: 16px;
    }

.feature-icon {
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

    .feature-text strong {
        color: #1a202c;
        display: block;
        margin-bottom: 4px;
    }

.pricing-cta {
    text-align: center;
    margin-top: 32px;
}

.pricing-note {
    font-size: 14px;
    color: #718096;
    margin-top: 16px;
}

/* What's Included */
.whats-included {
    margin: 80px 0;
}

    .whats-included h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 16px;
    }

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.included-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a7ea4;
}

.included-category ul {
    list-style: none;
    padding: 0;
}

.included-category li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #2d3748;
}

    .included-category li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #48bb78;
        font-weight: bold;
    }

/* No Hidden Fees */
.no-hidden-fees {
    background: #f7fafc;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin: 80px 0;
}

    .no-hidden-fees h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .no-hidden-fees > p {
        font-size: 18px;
        color: #4a5568;
        margin-bottom: 40px;
    }

.fee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fee-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 8px;
}

.fee-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

    .fee-icon.green {
        color: #48bb78;
    }

.fee-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fee-card p {
    font-size: 14px;
    color: #4a5568;
}

/* Custom Solutions */
.custom-solutions {
    text-align: center;
    margin: 80px 0;
}

    .custom-solutions h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

.custom-features {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
}

.custom-item {
    padding: 16px;
    background: #f7fafc;
    border-left: 4px solid #0a7ea4;
    margin-bottom: 16px;
}

/* FAQ Section - Content Pages Grid */
.faq-section-grid {
    background: #f7fafc;
    padding: 80px 0;
}

    .faq-section-grid h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 60px;
    }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.faq-grid-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

    .faq-grid-item h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #1a202c;
    }

    .faq-grid-item p {
        color: #4a5568;
        line-height: 1.7;
    }

/* Partners Section */
.partner-category {
    margin: 80px 0;
}

    .partner-category h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

.category-description {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.partner-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

    .partner-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .partner-card.featured {
        border-color: #0a7ea4;
    }

.partner-logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .partner-logo-container img {
        max-width: 180px;
        max-height: 60px;
        height: auto;
    }

.partner-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.partner-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e6fffa;
    color: #0a7ea4;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.supported-devices {
    list-style: none;
    padding: 0;
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .supported-devices li {
        font-size: 14px;
        color: #4a5568;
        padding: 4px 12px;
        background: #f7fafc;
        border-radius: 4px;
    }

/* Integration Capabilities */
.integration-capabilities {
    background: #f7fafc;
    padding: 80px 0;
}

    .integration-capabilities h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 16px;
    }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.capability-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.capability-icon {
    color: #0a7ea4;
    margin-bottom: 16px;
}

.capability-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.capability-card p {
    color: #4a5568;
    font-size: 15px;
}

/* Become a Partner */
.become-partner {
    text-align: center;
    padding: 80px 0;
}

    .become-partner h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .become-partner p {
        font-size: 18px;
        color: #4a5568;
        max-width: 600px;
        margin: 0 auto 32px;
    }

/* About Page */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

    .about-intro h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }

.story-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 24px;
}

/* Differentiators */
.differentiators {
    margin: 80px 0;
}

    .differentiators h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 60px;
    }

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.diff-card {
    background: #f7fafc;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.diff-number {
    font-size: 48px;
    font-weight: 700;
    color: #0a7ea4;
    margin-bottom: 16px;
}

.diff-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.diff-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.diff-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Who We Serve */
.who-we-serve {
    margin: 80px 0;
}

    .who-we-serve h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 16px;
    }

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.serve-item {
    padding: 24px;
    background: #ffffff;
    border-left: 4px solid #0a7ea4;
}

    .serve-item h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .serve-item p {
        color: #4a5568;
        line-height: 1.7;
        font-size: 15px;
    }

/* Commitment */
.commitment-section {
    margin: 80px 0;
}

    .commitment-section h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 60px;
    }

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.commitment-card {
    background: #f7fafc;
    padding: 32px;
    border-radius: 8px;
}

    .commitment-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #0a7ea4;
    }

    .commitment-card p {
        color: #4a5568;
        line-height: 1.7;
    }

/* Recognition */
.recognition-section {
    background: #f7fafc;
    padding: 60px;
    border-radius: 12px;
    margin: 80px 0;
}

    .recognition-section h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 16px;
    }

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.award-item {
    text-align: center;
}

    .award-item img {
        max-width: 150px;
        height: auto;
        margin-bottom: 16px;
    }

    .award-item p {
        font-size: 14px;
        color: #4a5568;
    }

/* Location */
.location-section {
    text-align: center;
    margin: 80px 0;
}

    .location-section h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .location-section p {
        font-size: 16px;
        color: #4a5568;
        line-height: 1.8;
    }

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-form-container > p {
    color: #4a5568;
    margin-bottom: 32px;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
        color: #2d3748;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #cbd5e0;
        border-radius: 6px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0a7ea4;
        }

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    margin-top: 4px;
}

.form-message {
    padding: 16px;
    border-radius: 6px;
    margin-top: 24px;
    text-align: center;
}

    .form-message.success {
        background: #c6f6d5;
        color: #22543d;
    }

    .form-message.error {
        background: #fed7d7;
        color: #742a2a;
    }

/* Contact Info */
.contact-info h2 {
    font-size: 24px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

    .contact-method:last-of-type {
        border-bottom: none;
    }

.method-icon {
    color: #0a7ea4;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-content p {
    color: #4a5568;
    margin-bottom: 4px;
}

.method-content a {
    color: #0a7ea4;
    text-decoration: none;
}

    .method-content a:hover {
        text-decoration: underline;
    }

.method-description {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

.quick-links,
.existing-clients {
    margin-top: 40px;
}

    .quick-links h3,
    .existing-clients h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .quick-links ul,
    .existing-clients ul {
        list-style: none;
        padding: 0;
    }

    .quick-links li,
    .existing-clients li {
        margin-bottom: 8px;
    }

    .quick-links a {
        color: #0a7ea4;
        text-decoration: none;
    }

        .quick-links a:hover {
            text-decoration: underline;
        }

.contact-faq {
    background: #f7fafc;
    padding: 80px 0;
}

    .contact-faq h2 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 60px;
    }

/* Privacy Page */
.privacy-section {
    padding: 80px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    margin-bottom: 60px;
}

    .privacy-intro p {
        font-size: 18px;
        line-height: 1.8;
        color: var(--text-medium);
        margin-bottom: 16px;
    }

.privacy-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 16px;
}

.privacy-toc {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 60px;
}

    .privacy-toc h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
        color: var(--text-dark);
    }

    .privacy-toc ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .privacy-toc li {
        margin-bottom: 12px;
    }

    .privacy-toc a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s ease;
    }

        .privacy-toc a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

.privacy-section-block {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

    .privacy-section-block:last-child {
        margin-bottom: 0;
    }

    .privacy-section-block h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--border-color);
    }

    .privacy-section-block h3 {
        font-size: 24px;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 32px;
        margin-bottom: 16px;
    }

    .privacy-section-block h4 {
        font-size: 20px;
        font-weight: 600;
        color: var(--text-dark);
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .privacy-section-block p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-medium);
        margin-bottom: 16px;
    }

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

    .privacy-list li {
        padding: 12px 0 12px 32px;
        position: relative;
        font-size: 16px;
        line-height: 1.7;
        color: var(--text-medium);
    }

        .privacy-list li::before {
            content: "•";
            position: absolute;
            left: 12px;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 20px;
        }

    .privacy-list strong {
        color: var(--text-dark);
        font-weight: 600;
    }

.privacy-definitions {
    margin-top: 32px;
}

.definition-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid var(--primary-color);
}

    .definition-item strong {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .definition-item p {
        margin-bottom: 0;
        font-size: 15px;
        line-height: 1.7;
    }

.privacy-highlight {
    background: #e6f7f0;
    border-left: 4px solid #0d9f6e;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

    .privacy-highlight p {
        color: var(--text-dark);
        margin-bottom: 12px;
    }

        .privacy-highlight p:last-child {
            margin-bottom: 0;
        }

    .privacy-highlight strong {
        color: var(--text-dark);
        font-weight: 700;
    }

    .privacy-highlight ul {
        list-style: none;
        padding: 0;
        margin: 16px 0;
    }

    .privacy-highlight li {
        padding: 8px 0 8px 28px;
        position: relative;
        font-size: 16px;
        line-height: 1.7;
    }

        .privacy-highlight li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0d9f6e;
            font-weight: bold;
        }

.privacy-contact {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

    .privacy-contact p {
        margin-bottom: 0;
        font-size: 16px;
    }

    .privacy-contact a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }

        .privacy-contact a:hover {
            text-decoration: underline;
        }

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .hero-content,
    .experience-content,
    .admin-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid-home {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .solution-card-featured {
        order: -1;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }

    .steps-line {
        display: none;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-number {
        font-size: 52px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 102px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #ffffff;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

        .nav-menu.active {
            transform: translateX(0);
        }

        .nav-menu li {
            width: 100%;
        }

        .nav-menu a {
            display: block;
            padding: 12px 0;
        }

    .btn-nav {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        row-gap: 0px;
    }

    .hero-image {
        order: -1;
        margin-bottom: 32px;
    }

    .hero-text {
        order: 1;
    }


    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    /* Page adjustments */
    .page-hero {
        padding: 60px 0 40px;
    }

        .page-hero h1 {
            font-size: 32px;
        }

    .hero-text h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .why-choose,
    .participant-experience,
    .admin-tools,
    .trusted-by,
    .cta-section {
        padding: 60px 0;
    }

        .why-choose h2,
        .cta-content h2 {
            font-size: 32px;
        }

    .experience-text h2,
    .admin-text h2 {
        font-size: 28px;
    }

    .trusted-by h2 {
        font-size: 28px;
    }

    .testimonials {
        padding: 60px 0;
    }

        .testimonials h2 {
            font-size: 32px;
            margin-bottom: 40px;
        }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .accolades {
        padding: 60px 0;
    }

        .accolades h2 {
            font-size: 32px;
            margin-bottom: 40px;
        }

    .accolades-grid {
        gap: 40px;
    }

    .how-we-work {
        padding: 60px 0;
    }

        .how-we-work h2 {
            font-size: 32px;
        }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 40px;
    }

    .stats-section {
        padding: 60px 0;
    }

        .stats-section h2 {
            font-size: 32px;
            margin-bottom: 40px;
        }

    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 48px;
    }

    .stat-number {
        font-size: 56px;
    }

    .solutions {
        padding: 60px 0;
    }

        .solutions h2 {
            font-size: 32px;
        }

    .faq-section h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .navbar {
        padding: 16px 0;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #0a7ea4;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0a7ea4;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

    .skip-to-main:focus {
        top: 0;
    }

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ---------- Blog Page ---------- */

.hero--blog .hero-content {
    align-items: center;
}

.blog-hero-card {
    border-radius: 20px;
}

.blog-hero-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.blog-hero-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.blog-section {
    padding: 48px 0 72px;
}

.blog-head {
    text-align: center;
    margin-bottom: 24px;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-post-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.blog-post-link {
    display: block;
}

.blog-post-image {
    height: 190px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-post-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-post-meta {
    font-size: 0.9rem;
    opacity: 0.75;
}

.blog-post-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
}

.blog-post-opening {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.blog-post-actions {
    margin-top: auto;
    padding-top: 10px;
}

.blog-side-card {
    border-radius: 20px;
    overflow: hidden;
}

.blog-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.blog-search-input {
    width: 100%;
}

.blog-search-btn {
    white-space: nowrap;
}

/* Pills */
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.06s ease, box-shadow 0.15s ease;
}

    .pill:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    }

/* List reset */
.clean-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .clean-list li {
        margin: 8px 0;
    }

/* Pagination */
.blog-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.pagination {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    text-decoration: none;
    padding: 0 12px;
}

.page-item.is-active .page-link {
    font-weight: 800;
    border-color: rgba(0,0,0,0.22);
}


.clients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.clients-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.client-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .client-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(5, 124, 153, 0.25);
    }

.client-logo-wrap {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .client-logo-wrap img {
        max-width: 120px;
        max-height: 70px;
        height: auto;
        width: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: var(--transition);
    }

        .client-logo-wrap img[src$=".svg"] {
            min-height: 50px;
            min-width: 80px;
        }

.client-card:hover .client-logo-wrap img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.client-card:hover .client-name {
    color: var(--text-medium);
}

/* Responsive */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .client-card {
        padding: 24px 16px 20px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr 1fr;
    }
}