/*!
Theme Name: Nova Business
Author: Asyntai
Author URI: https://asyntai.com
Description: A modern, dark-themed business WordPress theme with glassmorphism effects, animated backgrounds, and a sleek professional design. Perfect for tech companies, agencies, and startups.
Version: 1.0.8
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: nova-business
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, translation-ready, custom-colors, editor-style, threaded-comments, rtl-language-support, blog
*/

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

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #14b8a6;
    --accent: #06b6d4;
    --dark: #0f0f23;
    --darker: #080815;
    --light: #f8fafc;
    --gray: #94a3b8;
    --star: #fbbf24;
    --primary-rgb: 16, 185, 129;
    --primary-dark-rgb: 5, 150, 105;
    --secondary-rgb: 20, 184, 166;
    --accent-rgb: 6, 182, 212;
    --dark-rgb: 15, 15, 35;
    --darker-rgb: 8, 8, 21;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: var(--darker);
    color: var(--light);
    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 */
.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.25) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 0%, rgba(var(--secondary-rgb), 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(var(--accent-rgb), 0.15) 0%, transparent 50%),
        var(--darker);
}

.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 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(var(--darker-rgb), 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    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: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:focus {
    color: var(--light);
    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: 50px;
    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.4);
}

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

/* Hide mobile CTA on desktop */
.mobile-cta-item {
    display: none;
}

/* 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(--light);
    transition: all 0.3s ease;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--light);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.5);
    color: white;
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--light);
}

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

.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.5);
    color: white !important;
}

.wp-block-search {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wp-block-search__input {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    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 */
.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(--light);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* 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-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    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(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.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.3), rgba(var(--secondary-rgb), 0.3)), var(--glass);
    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: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

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

/* 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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.3);
}

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

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

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

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    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;
}

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

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

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

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

.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: var(--glass);
    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);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--light);
    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: var(--glass);
    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-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 32px;
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-dark-rgb), 0.5) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta .btn-light {
    background: white;
    color: var(--primary-dark);
    padding: 1.1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta .btn-light:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

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

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

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

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    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 {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    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(--light);
}

/* 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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    backdrop-filter: blur(20px);
}

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

.site-main .entry-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--light);
    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(--light);
    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(--light);
    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: var(--glass);
    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.1);
    color: #a5b4fc;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

.site-main .entry-content pre {
    background: var(--dark-bg);
    color: var(--light);
    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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

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

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

/* Comments */
.comments-area {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

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

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

.comment-body {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.comment-author {
    color: var(--light);
    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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    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(--light);
    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: var(--dark-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--light);
    margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* 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(--light);
    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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.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.2), rgba(var(--secondary-rgb), 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-card-image.no-thumbnail::after {
    content: '';
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 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(255,255,255,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(--light);
    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: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    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);
}

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

.no-posts h2 {
    color: var(--light);
    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(--light);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
    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-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

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

.widget {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.widget-title {
    color: var(--light);
    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: 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: 6.5rem 5% 2rem;
        min-height: auto;
    }

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

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-cta-item {
        display: block;
    }

    /* Mobile menu toggled state */
    .site-header.toggled .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker);
        border-top: 1px solid var(--glass-border);
        padding: 0.5rem 0;
    }

    .site-header.toggled .nav-links li {
        width: 100%;
        text-align: center;
    }

    .site-header.toggled .nav-links a {
        display: block;
        padding: 0.4rem 1rem;
    }

    .site-header.toggled .mobile-cta {
        display: inline-block;
        background: var(--primary);
        color: white !important;
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        margin: 0.25rem 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;
    }

    .cta-container {
        padding: 3rem 2rem;
    }

    .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;
        padding-top: 2.5rem;
    }

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

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

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

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

/* 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(--light);
    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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    border-color: var(--primary);
    transform: scale(1.05);
}

.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(--light);
    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(--light);
    line-height: 1;
}

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

.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: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: rgba(var(--primary-rgb), 0.1);
    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(--light);
    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.3);
}

.template-about .about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
    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.05), rgba(var(--secondary-rgb), 0.05));
    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: var(--glass);
    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: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.05));
}

.template-about .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15));
    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(--light);
    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: var(--glass);
    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: rgba(var(--primary-rgb), 0.05);
}

.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(--light);
    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: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
}

.contact-info {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.1));
    padding: 3rem;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--light);
    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(--light);
    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: var(--glass);
    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(--light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--light);
    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: rgba(var(--primary-rgb), 0.05);
}

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}
