* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*:root {
    --primary: #79b401;
    --primary-dark: #547e00;
    --secondary: #c7f766;
    --accent: #d3f78c;
    --dark: #18181b;
    --darker: #0f0f1a;
    --light: #ffffff;
    --gray: #52525b;
    --star: #fbbf24;
    --primary-rgb: 121, 180, 1;
    --primary-dark-rgb: 84, 126, 0;
    --secondary-rgb: 199, 247, 102;
    --accent-rgb: 211, 247, 140;
    --dark-rgb: 24, 24, 27;
    --darker-rgb: 15, 15, 26;
}*/

html {
    scroll-behavior: smooth;
}

body {    
    font-family: 'Poppins-Regular';
    background: var(--body-bg,
        radial-gradient(at 40% 20%, rgba(var(--primary-rgb), 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(var(--accent-rgb), 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(var(--secondary-rgb), 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(var(--primary-rgb), 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(var(--accent-rgb), 0.15) 0px, transparent 50%),
        #ffffff
    );
    background-attachment: fixed;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Animated Background - Subtle gradient mesh on light bg */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 20% -20%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 0%, rgba(var(--secondary-rgb), 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%),
        #ffffff;
}

.floating-orb {
    display: none;
}

.orb-1,
.orb-2 {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(5deg); }
    50% { transform: translate(0, 100px) rotate(0deg); }
    75% { transform: translate(-50px, 50px) rotate(-5deg); }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 5% 4rem;
    position: relative;
    text-align: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-top: 0;
    font-family: 'Poppins-Bold';
}

.hero h1 .gradient-text {
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-family: 'Poppins-Regular';
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Poppins-Regular';
}

.hero-image-wrapper {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.4);
    color: white;
}

.btn-secondary {
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.1);
}

/* WordPress Block Buttons */
.wp-block-search__button,
.wp-element-button,
.wp-block-button__link {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.3);
}

.wp-block-search__button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.4);
    color: white !important;
}

.wp-block-search {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wp-block-search__input {
    background: #f4f4f5;
    border: 1px solid var(--glass-border);
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

.wp-block-search__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.wp-block-search__input::placeholder {
    color: var(--gray);
}

/* Stats Section (in hero) */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Stats Section (standalone) */
.stats-section {
    padding: 60px 5%;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-section .stat-item {
    text-align: center;
}

.stats-section .stat-item h3 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
    font-family: "Poppins-Bold";
}

.stats-section .stat-item p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 3rem 5%;
    position: relative;
    text-align: center;
}

.section-header {
    text-align: center;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: block;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Poppins-SemiBold';
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #f4f4f5;
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.1);
    background: white;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-icon svg {
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card:hover .service-icon svg {
    stroke: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    color: var(--dark);
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* About Section */
.about {
    padding: 5rem 5%;
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15)), #f4f4f5;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    display: none;
}

.about-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-badge {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.about-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-badge-text {
    display: flex;
    flex-direction: column;
}

.about-badge-text strong {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.about-badge-text span {
    font-size: 0.8rem;
    color: var(--gray);
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
    font-family: 'Poppins-SemiBold';
}

.about-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
    color: var(--dark);
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.08);
}

.testimonial-stars {
    color: var(--star);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.9rem;
}


/* FAQ Section */
.faq {
    padding: 5rem 5%;
    position: relative;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.06);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question:focus {
    outline: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 5rem 5%;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--dark);
    font-family: "Poppins-SemiBold";
}

.cta p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Logos Section */
.logos-section {
    padding: 60px 0 80px 0;
    overflow: hidden;
}

.logos-title {
    text-align: center;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.logos-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.logos-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
    padding: 0 80px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.5);
}

.chat-button-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    animation: chatPulse 2s ease-out infinite;
}

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.chat-button svg {
    position: relative;
    z-index: 1;
}

.chat-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(var(--primary-rgb), 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-popup-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.chat-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: #f4f4f5;
    border: none;
    border-radius: 50%;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-popup-close:hover {
    background: var(--glass-border);
    color: var(--dark);
}

.chat-popup h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.chat-popup p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.chat-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--dark);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chat-download-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.chat-download-btn svg {
    transition: transform 0.3s ease;
}

.chat-download-btn:hover svg {
    transform: translateX(4px);
}


@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .about-visual .about-image {
        height: 350px;
        width: 100%;
    }

    .about-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 75px 5% 2rem;
        min-height: auto;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        margin-top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq {
        padding-top: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .about,
    .testimonials,
    .pricing,
    .faq,
    .cta {
        padding: 3rem 5%;
    }

    .stats-section {
        padding: 2.5rem 5%;
    }

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-section .stat-item h3 {
        font-size: 2rem;
    }

    .stats-section .stat-item p {
        font-size: 0.85rem;
    }

    .logos-section {
        padding: 2.5rem 0 3rem;
    }

    .logos-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .logo-item {
        padding: 0 40px;
        font-size: 1rem;
    }

    .latest-posts {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-popup {
        width: 260px;
        right: -5px;
    }

   
    .about-badges {
        flex-direction: column;
        align-items: center;
    }

    .about-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about {
        padding: 3rem 5%;
    }

    .about-visual .about-image {
        height: 250px;
        border-radius: 20px;
    }

    .about-features {
        justify-content: center;
    }

    .about-feature {
        justify-content: center;
    }

    .section-header h2 {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stats-section .stat-item h3 {
        font-size: 1.75rem;
    }

    .stats-section .stat-item p {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .logo-item {
        padding: 0 24px;
        font-size: 0.9rem;
    }

    .services,
    .about,
    .testimonials,
    .pricing,
    .faq,
    .cta {
        padding: 2.5rem 5%;
    }

    .latest-posts {
        padding: 2.5rem 1rem;
    }
}

@media (max-width: 400px) {
    .stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-section .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .stats-section .stat-item h3 {
        font-size: 1.75rem;
        margin-bottom: 0;
        min-width: fit-content;
    }

    .stats-section .stat-item p {
        font-size: 0.85rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        font-size: 0.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .section-badge {
        font-size: 0.75rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .chat-popup {
        width: 240px;
    }

    .logo-item {
        padding: 0 16px;
        font-size: 0.85rem;
    }

    .logos-section {
        padding: 2rem 0;
    }

    .logos-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ========================================
   PAGE TEMPLATES
   ======================================== */

/* Common Template Styles */
.template-pricing,
.template-about,
.template-contact {
    padding: 80px 0 0 0;
    max-width: none;
}

/* Hero Sections */
.pricing-hero,
.about-hero,
.contact-hero {
    padding: 3rem 5% 2rem;
    text-align: center;
}

.pricing-hero-title,
.about-hero-title,
.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.pricing-hero-subtitle,
.about-hero-subtitle,
.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}


/* ========================================
   ABOUT PAGE TEMPLATE
   ======================================== */

/* Scoped container for about template (avoids conflict with homepage .about-container) */
.template-about .tpl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Story Section */
.template-about .about-story {
    padding: 3rem 0 5rem;
}

.template-about .about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.template-about .about-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.template-about .about-section-title-center {
    text-align: center;
    margin-bottom: 0;
}

.template-about .about-story-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.template-about .about-story-content p:last-child {
    margin-bottom: 0;
}

.template-about .about-story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.template-about .about-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.template-about .about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.08));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray);
}

/* Stats Section */
.template-about .about-stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--secondary-rgb), 0.03));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.template-about .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.template-about .stat-item {
    padding: 1rem;
}

.template-about .stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.template-about .stat-label {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Values Section */
.template-about .about-values {
    padding: 5rem 0 6rem;
}

.template-about .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.template-about .value-card {
    background: #f4f4f5;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.template-about .value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.3);
    background: white;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.08);
}

.template-about .value-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.template-about .value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.template-about .value-description {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team Section */
.template-about .about-team {
    padding: 5rem 0 6rem;
    background: #f9f9f9;
    border-top: 1px solid var(--glass-border);
}

.template-about .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.template-about .team-member {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.template-about .team-member:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.08);
}

.template-about .team-member-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
    overflow: hidden;
}

.template-about .team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.template-about .team-member-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.template-about .team-member-role {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* About Additional Content */
.template-about .about-additional-content {
    padding: 4rem 0;
}

.template-about .about-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Template Responsive */
@media (max-width: 992px) {
    .template-about .tpl-container {
        padding: 0 1.5rem;
    }

    .template-about .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .template-about .about-story-image {
        order: -1;
    }

    .template-about .about-image-placeholder {
        max-width: 500px;
        margin: 0 auto;
    }

    .template-about .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .template-about .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .template-about .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .template-about .tpl-container {
        padding: 0 1rem;
    }

    .template-about .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .template-about .stat-number {
        font-size: 2rem;
    }

    .template-about .stat-label {
        font-size: 0.9rem;
    }

    .template-about .values-grid {
        grid-template-columns: 1fr;
    }

    .template-about .team-grid {
        grid-template-columns: 1fr;
    }

    .template-about .team-member-avatar {
        width: 100px;
        height: 100px;
        font-size: 1.75rem;
    }
}

/* ========================================
   CONTACT PAGE TEMPLATE
   ======================================== */

.contact-main {
    padding: 2rem 0 6rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.contact-info {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--secondary-rgb), 0.04));
    padding: 3rem;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.contact-info-subtitle {
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    color: var(--dark);
    font-weight: 500;
}

.contact-social {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-social-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: #f4f4f5;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--dark);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
    text-align: center;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.25rem;
}

.contact-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
}

.contact-social-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.contact-social-center .contact-social-label {
    margin-bottom: 1rem;
}

.contact-social-center .contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-chatbot-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--secondary-rgb), 0.04));
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: 20px;
}

.contact-chatbot-banner-icon {
    width: 56px;
    height: 56px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-chatbot-banner-content {
    flex: 1;
}

.contact-chatbot-banner-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-chatbot-banner-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.contact-chatbot-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-chatbot-banner-btn:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-chatbot-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

.contact-admin-notice {
    margin-top: 1.5rem;
    text-align: center;
}

.contact-admin-notice p {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--primary-rgb), 0.06);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.contact-form-content {
    min-height: 300px;
}

.contact-form-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 350px;
    padding: 2rem;
}

.contact-form-placeholder .placeholder-icon {
    color: var(--gray);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.contact-form-placeholder h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.contact-form-placeholder p {
    color: var(--gray);
    max-width: 300px;
    line-height: 1.6;
}

.contact-chatbot-promo {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.contact-chatbot-promo .promo-divider {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-chatbot-promo .promo-text {
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    max-width: none;
}

.chatbot-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.chatbot-promo-btn:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}
