/*!
Theme Name: Business AI
Author: Asyntai
Author URI: https://asyntai.com
Description: A modern, light business WordPress theme with smooth animations and a professional layout. Every section, text, and color is fully customizable through the WordPress Customizer with live preview — no coding required. Built with AI-powered businesses in mind. This is the full version of the theme. Perfect for SaaS companies, agencies, startups, and all kinds of businesses.
Version: 1.0.1
Requires at least: 5.9
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: business-ai
Domain Path: /languages
Tags: one-column, custom-menu, custom-logo, custom-background, featured-images, theme-options, translation-ready, custom-colors, editor-style, threaded-comments, rtl-language-support, wide-blocks, block-styles, full-width-template, grid-layout, sticky-post, blog
*/

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

:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --secondary: #8b5cf6;
    --accent: #a78bfa;
    --dark: #18181b;
    --darker: #0f0f1a;
    --light: #ffffff;
    --gray: #52525b;
    --star: #fbbf24;
    --primary-rgb: 124, 58, 237;
    --primary-dark-rgb: 91, 33, 182;
    --secondary-rgb: 139, 92, 246;
    --accent-rgb: 167, 139, 250;
    --dark-rgb: 24, 24, 27;
    --darker-rgb: 15, 15, 26;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: #e4e4e7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    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); }
}

/* Navigation - Floating pill-shaped bar */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 64px);
    max-width: 1200px;
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 16px 32px;
    transition: border-radius 0.3s ease;
}

.nav-wrapper:has(.mobile-nav.active) {
    border-radius: 24px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.mobile-nav {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 16px;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-align: center;
}

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

.mobile-nav-buttons {
    text-align: center;
    padding: 0.5rem 0;
}

.mobile-nav-buttons .nav-cta {
    display: inline-block;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img,
.custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.site-logo a {
    display: block;
    line-height: 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

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

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

.nav-links a:focus {
    color: var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-cta:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Global focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

.site-header.toggled .nav-wrapper {
    border-radius: 24px;
}

/* 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);
}

.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;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.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;
}

.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: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--dark);
}

.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-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::before {
    opacity: 1;
}

.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 .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: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.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;
}

/* Pricing Section */
.pricing {
    padding: 5rem 5%;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 2px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pricing-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-card.featured .pricing-amount,
.pricing-card.featured .pricing-currency {
    color: var(--primary);
}

.pricing-period {
    color: var(--gray);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray);
}

.pricing-features li svg {
    flex-shrink: 0;
}

.pricing-features li.included {
    color: var(--dark);
}

.pricing-features li.included svg {
    color: var(--primary);
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn-primary,
.pricing-cta .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* 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: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: var(--dark);
}

.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);
}

/* Footer */
.site-footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
    background: #fafafa;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--dark);
}

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

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

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    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);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* WordPress Specific */
.site-main {
    position: relative;
    z-index: 1;
    padding: 8rem 5% 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Homepage should not have max-width constraint */
.home .site-main,
.front-page .site-main,
body.home .site-main {
    max-width: none;
    padding: 0;
}

/* Blog/Post Styling */
.site-main article {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sticky {
    border-left: 4px solid var(--primary);
}

.site-main .entry-header {
    margin-bottom: 2rem;
}

.site-main .entry-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.site-main .entry-title a {
    color: var(--dark);
    text-decoration: none;
}

.site-main .entry-title a:hover {
    color: var(--primary);
}

.site-main .entry-meta {
    color: var(--gray);
    font-size: 0.9rem;
}

.site-main .entry-meta a {
    color: var(--primary);
    text-decoration: none;
}

.site-main .entry-content {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.site-main .entry-content h2,
.site-main .entry-content h3,
.site-main .entry-content h4 {
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.site-main .entry-content p {
    margin-bottom: 1.5rem;
}

.site-main .entry-content img,
.entry-content img {
    max-width: 100%;
    height: auto;
}

/* WordPress Image Alignment */
.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
    clear: both;
}

.alignnone {
    display: block;
    margin: 1.5rem 0;
}

img.alignleft,
img.alignright,
img.aligncenter,
img.alignnone {
    max-width: 100%;
    height: auto;
}

/* WordPress Captions */
.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
    background: #f4f4f5;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.5rem;
}

.wp-caption.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.wp-caption.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.wp-caption.aligncenter {
    display: block;
    margin: 1.5rem auto;
    clear: both;
}

.wp-caption img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
    padding: 0.5rem 0.5rem 0;
    margin: 0;
}

/* Clear floats after content */
.entry-content::after {
    content: "";
    display: table;
    clear: both;
}

/* WordPress Block Editor Image Alignments */
.wp-block-image.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.wp-block-image.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.wp-block-image.aligncenter {
    margin: 1.5rem auto;
    text-align: center;
}

.wp-block-image figcaption {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
    margin-top: 0.5rem;
}

.site-main .entry-content a,
.site-main article a,
.entry-content a,
article.post a,
article.page a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(var(--primary-rgb), 0.3);
    transition: all 0.2s ease;
}

.site-main .entry-content a:hover,
.site-main article a:hover,
.entry-content a:hover,
article.post a:hover,
article.page a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary);
}

.site-main .entry-content ul,
.site-main .entry-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.site-main .entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray);
}

.site-main img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

.site-main .post-thumbnail {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.site-main .entry-content code {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-dark);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

.site-main .entry-content pre {
    background: var(--dark);
    color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.site-main .entry-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 0.9rem;
}

.site-main .entry-footer a {
    color: var(--primary);
    text-decoration: none;
}

/* Search Results Grid */
.search-results .site-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
}

.search-results .page-header {
    grid-column: 1 / -1;
}

.search-results .posts-navigation {
    grid-column: 1 / -1;
}

.search-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    overflow: hidden;
    max-width: 100%;
}

.search-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin: -3rem -3rem 1.5rem -3rem;
    width: calc(100% + 6rem);
}

.search-card-image a {
    display: block;
    height: 100%;
}

.search-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

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

.search-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    max-width: 100%;
}

.search-card .entry-header {
    margin-bottom: 1rem;
}

.search-card .entry-title {
    font-size: 1.3rem;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.search-card .entry-summary {
    flex: 1;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.search-card .entry-summary p {
    margin: 0;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

.read-more-btn svg {
    transition: transform 0.3s ease;
}

.read-more-btn:hover svg {
    transform: translateX(3px);
}

/* Post Navigation */
.post-navigation {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.post-navigation a:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.1);
}

.post-navigation .nav-subtitle {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.post-navigation .nav-title {
    color: var(--dark);
    font-weight: 600;
}

/* Comments */
.comments-area {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.comments-title {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f4f4f5;
    border-radius: 12px;
}

.comment-author {
    color: var(--dark);
    font-weight: 600;
}

.comment-metadata {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.comment-metadata a {
    color: var(--gray);
    text-decoration: none;
}

.comment-content {
    color: var(--gray);
    line-height: 1.7;
}

.comment-reply-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.comment-respond {
    margin-top: 3rem;
    background: #f4f4f5;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.comment-reply-title small {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.logged-in-as {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: block;
}

.logged-in-as a {
    color: var(--primary);
}

.comment-notes,
.required-note {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: block;
}

.comment-form-comment {
    margin-bottom: 1.5rem;
}

.comment-form label {
    color: var(--dark);
    display: block;
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--dark);
    margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}

.comment-form .submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: var(--primary-dark);
}

/* Archive/Search Pages */
.archive-page {
    padding: 8rem 5% 3rem;
    max-width: 1200px;
}

.archive-container {
    max-width: 1200px;
    margin: 0 auto;
}

.archive-header {
    text-align: center;
    margin-bottom: 3rem;
}

.archive-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.archive-description {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.latest-posts {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

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

.post-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.post-card-image.no-thumbnail {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-card-image.no-thumbnail::after {
    content: '';
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(124,58,237,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
}

.post-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card-meta {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.post-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.post-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--primary);
}

.post-card-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.post-card-link:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

.post-card-link svg {
    transition: transform 0.3s ease;
}

.post-card-link:hover svg {
    transform: translateX(3px);
}

.archive-navigation {
    margin-top: 3rem;
    text-align: center;
}

.archive-navigation .nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.archive-navigation .nav-links a {
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.archive-navigation .nav-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h2 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--gray);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* 404 Page */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.error-404-content {
    text-align: center;
    max-width: 500px;
}

.error-404-icon {
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.error-404-title {
    font-size: 8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.error-404-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.error-404-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-404-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(var(--primary-rgb), 0.3);
    color: white;
}

/* Sidebar/Widgets */
.widget-area {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.widget {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.widget-title {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--gray);
    text-decoration: none;
}

.widget a:hover {
    color: var(--primary);
}

.skip-link.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link.screen-reader-text:focus {
    background-color: var(--primary);
    clip: auto !important;
    clip-path: none;
    color: white;
    display: block;
    font-size: 1rem;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Responsive */
@media (max-width: 1100px) {
    .site-header {
        width: calc(100% - 40px);
    }
}

@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;
    }

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .nav-wrapper {
        padding: 12px 20px;
        border-radius: 24px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-nav {
        padding: 16px 0 0;
    }

    .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;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    .footer-column {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .footer-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .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;
}

/* ========================================
   PRICING PAGE TEMPLATE
   ======================================== */

.pricing-plans {
    padding: 2rem 5% 6rem;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border: 2px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.1);
}

.pricing-card-featured {
    background: white;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-plan-description {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.price-currency {
    font-size: 1.5rem;
    color: var(--gray);
    vertical-align: top;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.pricing-card-featured .price-amount {
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.feature-included {
    color: var(--dark);
}

.feature-included svg {
    color: var(--primary);
}

.feature-excluded {
    color: var(--gray);
    opacity: 0.6;
}

.feature-excluded svg {
    color: var(--gray);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    background: white;
    border: 1px solid var(--glass-border);
    color: var(--dark);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.pricing-button-featured {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pricing-button-featured:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.pricing-additional-content,
.about-additional-content,
.contact-additional-content {
    padding: 4rem 5%;
}

.pricing-content-container,
.about-content-container,
.contact-content-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card-featured {
        transform: none;
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
}

/* ========================================
   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);
}

.footer-top { 
	display: none;
}

footer {
	/** display: none; **/
}

a > svg {
	display: none;
}

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

.about-features {
	grid-template-columns: 1fr;
}

/* 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;
    }
}

@media (max-width: 768px) {
	.testimonial-avatar {
		display: none;
	}
	.faq-answer {
		overflow: auto;
	}
	.about-features > .about-feature > span {
		text-align: left;
	}
	.about-features > .about-feature {
		justify-content: left;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.logo {
		font-size: 1.5rem;
	}
}

.footer-legal > a:nth-child(odd) {
	text-indent: -9999px;
    line-height: initial;
}

.footer-legal > a:nth-child(odd):after {
	content: 'Impressum';
	text-indent: 0px;
    line-height: initial;
    display: block;
}

.footer-legal > a:nth-child(even) {
	text-indent: -9999px;
    line-height: initial;
}

.footer-legal > a:nth-child(even):after {
	content: 'Datenschutz';
	text-indent: 0px;
    line-height: initial;
    display: block;
}

.hero-image {
	content: url('https://simon-coach-bnhlxymtff.live-website.com/wp-content/uploads/2026/04/IMG_4435-scaled.jpg');
}

#services > div > div.services-grid > div:nth-child(1) > .service-icon {
	content: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="163.000000pt" height="164.000000pt" viewBox="0 0 163.000000 164.000000" preserveAspectRatio="xMidYMid meet"><g transform="translate(0.000000,164.000000) scale(0.100000,-0.100000)" fill="%23000000" stroke="none"><path d="M467 1216 c-74 -27 -107 -76 -107 -158 0 -102 65 -168 165 -168 94 0 155 62 155 159 0 123 -106 206 -213 167z m108 -30 c47 -20 75 -69 75 -131 0 -62 -15 -93 -59 -122 -56 -38 -116 -27 -171 31 -36 39 -41 139 -9 180 41 52 102 67 164 42z"/><path d="M740 1120 c0 -6 99 -10 277 -10 l276 0 -6 -201 c-4 -110 -9 -205 -12 -210 -4 -5 -102 -9 -226 -9 -139 0 -219 -4 -219 -10 0 -6 83 -10 228 -10 l227 0 28 -44 c15 -24 27 -46 27 -50 0 -3 -106 -6 -236 -6 -184 0 -235 -3 -232 -12 6 -16 496 -24 511 -9 5 5 -8 36 -33 75 l-42 67 9 212 c5 116 7 215 5 220 -5 11 -582 9 -582 -3z"/><path d="M969 1055 c-56 -30 -64 -129 -14 -173 l26 -22 -26 -10 c-14 -6 -30 -10 -34 -10 -5 0 -20 -9 -35 -21 -19 -15 -26 -30 -26 -56 0 -42 23 -41 30 3 7 39 57 64 131 64 95 0 139 -25 139 -79 0 -12 6 -21 16 -21 12 0 14 7 9 33 -8 41 -44 73 -98 88 -35 10 -39 13 -22 19 64 24 69 132 8 180 -30 23 -67 25 -104 5z m101 -37 c28 -31 26 -83 -5 -113 -30 -31 -56 -32 -90 -2 -33 28 -38 86 -10 117 25 27 78 27 105 -2z"/><path d="M351 841 c-29 -10 -64 -29 -77 -42 -29 -30 -46 -112 -42 -204 5 -104 22 -82 30 36 3 59 11 117 18 129 6 12 37 34 68 48 47 21 71 26 147 26 107 0 195 -23 223 -58 10 -13 31 -72 46 -130 27 -100 47 -139 60 -117 9 14 -59 239 -80 263 -39 43 -101 61 -224 65 -94 3 -125 0 -169 -16z"/></g></svg>');
}

#services > div > div.services-grid > div:nth-child(2) > .service-icon {
	content: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="164.000000pt" height="164.000000pt" viewBox="0 0 164.000000 164.000000" preserveAspectRatio="xMidYMid meet"><g transform="translate(0.000000,164.000000) scale(0.100000,-0.100000)" fill="%23000000" stroke="none"><path d="M1223 1240 c-40 -9 -60 -24 -79 -61 -28 -54 -10 -129 38 -163 28 -20 90 -21 127 -1 52 27 75 108 47 164 -27 51 -75 73 -133 61z m88 -49 c42 -42 40 -92 -5 -137 -43 -43 -77 -44 -117 -5 -23 23 -29 38 -29 71 0 33 6 48 29 71 40 39 82 39 122 0z"/><path d="M321 1214 c-55 -46 -54 -123 4 -181 28 -28 40 -33 82 -33 41 0 54 5 77 29 51 53 45 147 -12 191 -38 30 -112 27 -151 -6z m140 -23 c41 -42 41 -101 -1 -143 -26 -25 -36 -29 -63 -24 -80 15 -113 111 -58 167 40 39 82 39 122 0z"/><path d="M285 958 l-27 -21 4 -131 c8 -195 17 -206 178 -206 l99 0 10 -37 c5 -21 16 -62 23 -92 7 -30 19 -56 26 -59 16 -5 15 7 -11 118 l-22 95 -115 3 c-85 2 -118 7 -131 18 -20 18 -28 68 -31 188 -1 83 0 90 23 109 18 14 33 18 62 14 73 -10 91 -34 126 -173 11 -40 11 -40 75 -53 36 -7 71 -20 79 -29 10 -11 19 -62 27 -142 12 -118 21 -152 36 -137 4 4 1 66 -6 138 -15 157 -24 172 -115 191 l-59 13 -21 70 c-11 39 -26 80 -32 91 -30 53 -147 72 -198 32z"/><path d="M1213 965 c-41 -17 -59 -46 -76 -122 -8 -34 -17 -66 -21 -71 -3 -5 -33 -15 -66 -21 -99 -20 -94 -8 -123 -305 -3 -28 20 -31 26 -4 3 13 9 61 12 108 4 47 11 102 16 122 10 39 18 44 123 65 l40 8 20 84 c23 94 43 117 109 128 26 4 44 1 63 -12 l27 -17 -5 -130 c-7 -171 -5 -168 -154 -168 -71 0 -115 -4 -120 -11 -7 -12 -44 -175 -44 -197 0 -7 6 -12 12 -10 7 3 22 45 33 94 l20 89 117 5 c93 4 121 9 134 22 21 21 32 93 33 216 1 86 -1 95 -24 117 -19 20 -34 25 -72 25 -26 -1 -62 -7 -80 -15z"/><path d="M166 871 c-11 -17 42 -302 59 -321 14 -16 16 -30 10 -81 -6 -49 -5 -61 6 -57 8 3 18 31 24 64 l10 59 110 2 c69 0 111 5 113 12 3 8 -33 11 -115 11 -65 0 -124 4 -132 9 -18 11 -63 271 -50 286 5 5 9 13 9 17 0 11 -37 10 -44 -1z"/><path d="M1430 872 c0 -4 5 -13 11 -19 15 -15 -16 -237 -37 -270 -14 -22 -21 -23 -139 -23 -77 0 -125 -4 -125 -10 0 -12 -2 -12 121 -10 109 1 113 -1 123 -72 7 -44 20 -67 32 -55 3 3 1 30 -5 61 -9 51 -8 59 9 76 10 10 21 34 25 52 22 130 41 269 37 273 -9 8 -52 6 -52 -3z"/><path d="M390 813 c0 -16 37 -104 48 -115 23 -23 24 2 1 61 -13 34 -30 61 -36 61 -7 0 -13 -3 -13 -7z"/><path d="M1230 795 c-5 -14 -13 -37 -16 -51 -3 -13 -10 -27 -15 -30 -14 -9 -10 -24 7 -24 15 0 40 49 51 101 7 37 -13 40 -27 4z"/></g></svg>');
}

#services > div > div.services-grid > div:nth-child(3) > .service-icon {
	content: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="164.000000pt" height="164.000000pt" viewBox="0 0 164.000000 164.000000" preserveAspectRatio="xMidYMid meet"><g transform="translate(0.000000,164.000000) scale(0.100000,-0.100000)" fill="%23000000" stroke="none"><path d="M551 1342 c-113 -18 -140 -194 -36 -238 78 -32 155 -4 176 65 30 102 -39 188 -140 173z m90 -51 c74 -74 3 -204 -95 -171 -44 14 -66 48 -66 100 0 90 99 133 161 71z"/><path d="M1042 1306 c-34 -32 -37 -39 -37 -90 0 -49 4 -59 33 -88 29 -30 38 -33 93 -33 56 0 63 3 90 33 25 27 29 41 29 88 0 50 -3 59 -34 90 -30 30 -40 34 -85 34 -44 0 -56 -5 -89 -34z m144 -1 c82 -57 31 -207 -65 -191 -72 11 -112 92 -77 155 26 47 100 66 142 36z"/><path d="M430 1058 c-63 -43 -110 -163 -110 -280 0 -52 3 -60 24 -69 36 -17 65 3 72 52 8 48 24 62 24 19 0 -17 6 -46 14 -65 13 -30 13 -39 -1 -77 -9 -24 -43 -80 -75 -126 -38 -55 -57 -90 -53 -101 5 -16 -3 -19 -53 -24 -74 -8 -119 -24 -105 -38 6 -6 19 -6 37 1 15 5 58 13 96 16 54 5 73 3 91 -10 29 -20 59 -21 85 -2 13 10 34 13 69 9 35 -4 47 -2 40 5 -5 6 -32 12 -60 14 -37 2 -51 7 -53 20 -3 17 66 118 81 118 4 0 28 -43 53 -95 25 -52 48 -96 52 -99 4 -2 42 7 85 21 69 21 78 27 75 46 -2 16 -13 24 -40 31 -35 9 -38 13 -81 117 -42 103 -44 109 -34 163 10 53 27 71 42 46 11 -18 64 -11 75 9 14 27 15 25 -39 84 -32 37 -51 67 -56 93 -19 102 -49 129 -156 140 -57 5 -68 3 -99 -18z m165 -22 c45 -19 55 -42 55 -129 0 -143 -17 -237 -33 -177 -5 21 -27 28 -27 9 0 -14 120 -311 132 -326 5 -6 22 -13 36 -15 l27 -4 -25 -11 c-14 -6 -39 -13 -55 -17 -30 -6 -31 -5 -88 106 -31 62 -77 151 -103 197 -45 83 -45 85 -42 165 2 45 7 89 12 99 6 12 4 17 -5 17 -19 0 -68 -95 -83 -160 -9 -39 -18 -56 -31 -59 -17 -3 -18 3 -13 76 7 90 49 199 89 227 29 20 107 21 154 2z m130 -213 c40 -44 43 -53 14 -53 -39 0 -59 19 -59 55 0 19 2 35 5 35 3 0 20 -17 40 -37z m -195 -255 c0 -9 -23 -47 -51 -85 -42 -55 -49 -70 -40 -85 24 -39 -25 -31 -62 10 -18 20 -17 22 36 100 30 43 57 92 61 108 l8 29 24 -30 c13 -16 24 -38 24 -47z"/><path d="M991 1063 c-61 -30 -108 -145 -113 -273 -3 -73 -2 -74 24 -84 34 -12 68 14 68 53 0 47 17 57 24 14 4 -21 11 -50 17 -64 14 -36 -16 -107 -86 -205 -30 -43 -54 -82 -52 -88 7 -22 89 -76 115 -76 46 0 57 13 43 48 -12 29 -10 33 29 84 23 29 45 54 49 56 4 1 29 -43 55 -98 33 -68 54 -100 65 -100 32 0 143 42 148 57 8 19 -9 34 -47 42 -29 6 -35 14 -75 108 -39 90 -43 109 -38 152 8 68 15 78 48 63 38 -17 63 -15 75 7 14 28 15 27 -39 84 -37 39 -53 67 -66 112 -22 76 -45 101 -107 114 -67 15 -97 13 -137 -6z m151 -23 c57 -16 63 -36 60 -185 -2 -123 -15 -179 -28 -127 -4 12 -13 22 -20 22 -8 0 -14 -2 -14 -4 0 -10 132 -322 140 -330 4 -4 20 -8 34 -8 14 0 26 -4 26 -8 0 -9 -99 -45 -104 -39 -2 2 -18 33 -36 69 -18 36 -64 121 -104 190 l-71 124 0 81 c1 44 4 90 9 103 5 14 5 22 -2 22 -18 0 -69 -102 -83 -163 -9 -44 -16 -57 -28 -55 -13 3 -15 16 -13 73 5 90 51 209 91 230 31 17 92 19 143 5z m144 -222 c30 -34 35 -44 22 -46 -9 -2 -30 4 -47 13 -24 12 -31 22 -31 45 0 17 4 30 9 30 5 0 26 -19 47 -42z m -216 -213 l22 -36 -26 -37 c-15 -20 -41 -56 -58 -80 -25 -33 -29 -45 -20 -54 37 -37 -8 -37 -49 0 l-31 28 51 73 c28 40 55 89 61 107 7 19 15 34 20 34 5 0 18 -16 30 -35z"/></g></svg>');
}
