/**
 * WorldReach Dark Theme - Custom Styles
 * Modern, dark design with blue gradient accents
 */

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 6px 0;
    transition: var(--transition-medium);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 0;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-header {
    padding: 12px 24px;
    font-size: 0.9375rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-darker);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 24px;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
}

.mobile-nav-menu li {
    margin-bottom: 16px;
}

.mobile-nav-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.hero-glow-1 {
    top: -200px;
    right: -200px;
    background: var(--primary);
}

.hero-glow-2 {
    bottom: -300px;
    left: -200px;
    background: var(--accent);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 76, 120, 0.1);
    border: 1px solid rgba(14, 76, 120, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.hero-trust {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.trust-logo:hover {
    opacity: 1;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .trust-logos {
        gap: 24px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    padding: 80px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(14, 76, 120, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

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

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: var(--bg-darker);
    overflow: visible;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(14, 76, 120, 0.2);
}

.service-featured {
    background: linear-gradient(180deg, rgba(14, 76, 120, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(14, 76, 120, 0.3);
    transform: scale(1.05);
}

.service-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(14, 76, 120, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.service-list li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-featured {
        transform: none;
    }

    .service-featured:hover {
        transform: translateY(-4px);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: var(--bg-dark);
    position: relative;
}

.features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(14, 76, 120, 0.2);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(14, 76, 120, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.feature-list li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

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

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    background: var(--bg-darker);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 100px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   CLIENTS SECTION
   ============================================ */

.clients {
    background: var(--bg-dark);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
}

.client-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
}

.client-logo:hover {
    border-color: rgba(14, 76, 120, 0.3);
    background: var(--bg-card-hover);
}

.client-logo:hover span {
    color: var(--text-primary);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

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

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.cta-glow {
    position: absolute;
    width: 100%;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(14, 76, 120, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-content > p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 48px;
}

.cta-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(14, 76, 120, 0.05);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-form select option {
    background: var(--bg-darker);
    color: var(--text-primary);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background: var(--bg-darker);
    padding: 80px 0 40px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(14, 76, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9375rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

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

.footer-address {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   UTILITY OVERRIDES
   ============================================ */

.wp-block-button__link {
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    padding: 16px 32px;
    font-weight: 600;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection color */
::selection {
    background: rgba(14, 76, 120, 0.3);
    color: white;
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */

.page-hero {
    padding: 180px 0 80px;
    background: var(--bg-darker);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(14, 76, 120, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin: 0;
}

/* Content Section */
.content-section,
.page-content,
.single-content {
    padding: 80px 0;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 76, 120, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-content {
    padding: 24px;
}

.post-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.post-category a {
    color: var(--primary);
}

.post-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
}

.post-title a {
    color: var(--text-primary);
    transition: var(--transition-fast);
}

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

.post-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    gap: 12px;
}

/* 404 Page */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.error-code {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 24px;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.error-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

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

/* ============================================
   BLOG & ARTICLE STYLES
   ============================================ */

.page-article,
.single-article {
    max-width: 800px;
    margin: 0 auto;
}

.page-body,
.single-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-body h2,
.single-body h2 {
    font-size: 1.75rem;
    margin: 48px 0 24px;
    color: var(--text-primary);
}

.page-body h3,
.single-body h3 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.page-body p,
.single-body p {
    margin-bottom: 24px;
}

.page-body a,
.single-body a {
    color: var(--accent);
    text-decoration: underline;
}

.page-body ul,
.page-body ol,
.single-body ul,
.single-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.page-body li,
.single-body li {
    margin-bottom: 8px;
}

.page-body blockquote,
.single-body blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 4px solid var(--primary);
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.page-body pre,
.single-body pre {
    background: var(--bg-darker);
    padding: 24px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 24px;
}

.page-body code,
.single-body code {
    background: var(--bg-card);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ============================================
   HOMEPAGE NEW SECTIONS
   ============================================ */

/* 3-Column Features Grid */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Websites Section */
.websites-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

.websites-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.websites-text h2 {
    margin-bottom: 24px;
}

.websites-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.website-sample {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sample-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sample-site {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.sample-site:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

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

/* Benefits Grid */
.why-us {
    background: var(--bg-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition-medium);
}

.benefit-card:hover {
    border-color: rgba(14, 76, 120, 0.3);
    transform: translateY(-4px);
}

.benefit-card .benefit-icon {
    margin-bottom: 20px;
    color: var(--accent);
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    border-color: rgba(14, 76, 120, 0.3);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-rating .stars {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-rating .rating-value {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-quote {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

/* FAQ Section */
.faq-section {
    background: var(--bg-darker);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   TEAM PAGE STYLES
   ============================================ */

.team-hero {
    padding: 120px 0 80px;
    background: var(--bg-darker);
    text-align: center;
}

.team-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 24px;
}

.title-line {
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 0 auto 24px;
}

.page-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Team Photos Grid */
.team-photos {
    padding: 60px 0;
    background: var(--bg-dark);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.photo-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.photo-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Expert SEOs Section */
.expert-seos {
    padding: 100px 0;
    background: var(--bg-darker);
}

.expert-description {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.expert-description p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Team Members */
.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.team-member-card {
    background: var(--bg-card);
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
}

.member-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 24px;
}

.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.linkedin-icon:hover {
    color: var(--accent);
}

.member-name {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--accent);
}

.member-role {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.member-cta {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.member-cta:hover {
    color: var(--accent);
}

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

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

.pricing-hero {
    padding: 180px 0 60px;
    background: var(--bg-darker);
    text-align: center;
}

.pricing-intro {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 40px;
    border-radius: var(--radius-xl);
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-intro h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pricing-intro p:last-child {
    margin-bottom: 0;
}

.pricing-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    background: var(--primary);
    color: white;
    padding: 24px;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .currency {
    font-size: 1.25rem;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
}

.price .period {
    font-size: 0.875rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 16px 24px;
    text-align: center;
    color: #333;
    border-bottom: 1px solid #eee;
}

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

.pricing-card .btn {
    margin: 24px;
    width: calc(100% - 48px);
}

.pricing-card .btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pricing-card .btn-outline:hover {
    background: var(--primary);
    color: white;
}

.pricing-card .btn-primary {
    background: var(--primary);
    color: white;
}

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

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background: var(--bg-darker);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

.comparison-table th:first-child {
    background: var(--accent);
    text-align: left;
}

.comparison-table td:first-child {
    color: var(--primary);
    font-weight: 600;
    text-align: left;
}

.comparison-table .check {
    color: var(--accent);
    font-size: 1.25rem;
}

.comparison-table .dash {
    color: #999;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.benefits-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item .benefit-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-value {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

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

/* Pricing Testimonials */
.pricing-testimonials {
    padding: 80px 0;
    background: var(--bg-darker);
}

.testimonials-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.pricing-cta {
    background: linear-gradient(145deg, var(--primary), var(--accent));
}

.pricing-cta .cta-content {
    max-width: 800px;
}

.pricing-cta h2 {
    color: white;
}

.pricing-cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   HERO SPLIT LAYOUT WITH MARKETPLACE PREVIEW
   ============================================ */

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.hero-content {
    max-width: 600px;
}

.excellence-badge {
    margin-bottom: 24px;
}

.excellence-badge img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(14, 76, 120, 0.3));
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketplace-preview {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.marketplace-preview img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
                0 10px 30px rgba(14, 76, 120, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.marketplace-preview .preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(122, 179, 206, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .excellence-badge {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-split {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .excellence-badge img {
        height: 60px;
    }

    .marketplace-preview img {
        border-radius: var(--radius-lg);
    }
}

/* ============================================
   REDESIGNED TEAM PAGE STYLES
   ============================================ */

/* Team Hero */
.team-hero {
    position: relative;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.team-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.team-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 76, 120, 0.2);
    border: 1px solid rgba(122, 179, 206, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.team-hero .page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Team Stats */
.team-stats {
    padding: 60px 0;
    background: rgba(14, 76, 120, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-box .stat-number {
        font-size: 2rem;
    }
}

/* Team Gallery */
.team-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition-medium);
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

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

    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }
}

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

    .gallery-item.gallery-large {
        grid-column: span 2;
    }
}

/* Expert Section */
.expert-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 76, 120, 0.05) 100%);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(122, 179, 206, 0.1);
    border: 1px solid rgba(122, 179, 206, 0.2);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.expert-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.intro-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.intro-lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.intro-lead strong {
    color: var(--accent);
}

.intro-content p {
    margin-bottom: 16px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

.intro-feature .feature-icon {
    color: var(--accent);
    display: flex;
}

/* Team Members Grid */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-medium);
}

.team-member:hover {
    border-color: rgba(122, 179, 206, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.member-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: white;
}

.member-info {
    padding: 24px;
}

.member-name {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.member-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.member-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.member-cta:hover {
    color: var(--text-primary);
    gap: 12px;
}

@media (max-width: 768px) {
    .expert-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Team Benefits */
.team-benefits {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-box {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-medium);
}

.benefit-box:hover {
    border-color: rgba(122, 179, 206, 0.3);
    background: rgba(14, 76, 120, 0.1);
}

.benefit-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.2));
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    color: var(--accent);
}

.benefit-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-box p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

/* Team CTA */
.team-cta {
    margin-top: 0;
}

.team-cta .cta-content {
    max-width: 700px;
}

/* ============================================
   AI SAFETY SECTION
   ============================================ */

.ai-safety-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.ai-safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(122, 179, 206, 0.3), transparent);
}

.ai-safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-safety-text .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 76, 120, 0.2);
    border: 1px solid rgba(122, 179, 206, 0.3);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.ai-safety-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.ai-safety-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-feature {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-medium);
}

.ai-feature:hover {
    border-color: rgba(122, 179, 206, 0.3);
    background: rgba(14, 76, 120, 0.1);
}

.ai-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.2));
    border-radius: var(--radius-md);
    color: var(--accent);
    flex-shrink: 0;
}

.ai-feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.ai-feature-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* AI Monitor Visual */
.ai-safety-visual {
    display: flex;
    justify-content: center;
}

.ai-monitor {
    width: 100%;
    max-width: 450px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(14, 76, 120, 0.2);
}

.monitor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.monitor-dot.red { background: #ff5f56; }
.monitor-dot.yellow { background: #ffbd2e; }
.monitor-dot.green { background: #27ca40; }

.monitor-title {
    margin-left: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.monitor-content {
    padding: 24px;
}

.scan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.scan-item:last-of-type {
    border-bottom: none;
}

.scan-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.scan-status {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.scan-status.passed {
    background: rgba(39, 202, 64, 0.15);
    color: #27ca40;
}

.scan-progress {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.progress-text {
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .ai-safety-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ai-safety-text .section-title {
        text-align: center;
    }

    .ai-safety-text .section-badge {
        display: block;
        text-align: center;
    }

    .ai-safety-intro {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .ai-feature {
        flex-direction: column;
        text-align: center;
    }

    .ai-feature-icon {
        margin: 0 auto;
    }
}

/* ============================================
   FIXED TESTIMONIALS GRID
   ============================================ */

.testimonials-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.testimonials-section .section-header {
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-card {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: var(--radius-xl) !important;
    padding: 32px !important;
    transition: var(--transition-medium) !important;
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-card:hover {
    border-color: rgba(122, 179, 206, 0.3) !important;
    transform: translateY(-4px) !important;
}

.testimonial-rating {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.testimonial-rating .stars {
    color: #fbbf24 !important;
    font-size: 1.125rem !important;
    letter-spacing: 2px !important;
}

.testimonial-rating .rating-value {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
}

.testimonial-quote {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: var(--text-secondary) !important;
    margin-bottom: 24px !important;
    flex-grow: 1 !important;
}

.testimonial-author {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.author-avatar {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    color: white !important;
}

.author-info {
    display: flex !important;
    flex-direction: column !important;
}

.author-name {
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: var(--text-primary) !important;
}

.author-date {
    font-size: 0.8125rem !important;
    color: var(--text-muted) !important;
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
}

/* ============================================
   BENEFITS GRID FIX
   ============================================ */

.benefits-grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

.benefits-grid-3 .benefit-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-medium);
}

.benefits-grid-3 .benefit-card:hover {
    border-color: rgba(122, 179, 206, 0.3);
    transform: translateY(-4px);
}

.benefits-grid-3 .benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.2));
    border-radius: var(--radius-lg);
    margin: 0 auto 24px;
    color: var(--accent);
}

.benefits-grid-3 .benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefits-grid-3 .benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .benefits-grid-3 {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* ============================================
   HERO FIXES - SPOTLIGHT AND SPACING
   ============================================ */

/* Remove old hero glows and add corner spotlight */
.hero .hero-bg .hero-glow-1,
.hero .hero-bg .hero-glow-2,
.hero .hero-bg .hero-grid {
    display: none !important;
}

/* Corner spotlight on marketplace image */
.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 76, 120, 0.5) 0%, rgba(122, 179, 206, 0.2) 40%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.marketplace-preview .preview-glow {
    display: none !important;
}

/* Add spacing between trust section and image */
.hero-trust {
    margin-top: 40px !important;
    padding-top: 32px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-label {
    display: block;
    margin-bottom: 20px !important;
}

.trust-logos {
    margin-top: 16px;
}

/* Hero split alignment fix */
.hero-split {
    align-items: flex-start !important;
    padding-top: 40px;
}

.hero-content {
    padding-top: 60px;
}

/* ============================================
   EXCELLENCE BADGE AFTER TESTIMONIALS
   ============================================ */

.excellence-badge-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
}

.excellence-badge-section img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 30px rgba(14, 76, 120, 0.4));
    transition: var(--transition-medium);
}

.excellence-badge-section img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 40px rgba(122, 179, 206, 0.5));
}

@media (max-width: 768px) {
    .excellence-badge-section img {
        height: 80px;
    }

    .hero-image::before {
        width: 200px;
        height: 200px;
        bottom: -20px;
        right: -20px;
    }
}

/* ============================================
   REDESIGNED AI SAFETY SECTION - MODERN BOXES
   ============================================ */

.ai-safety-section {
    padding: 120px 0 !important;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%) !important;
}

.ai-safety-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ai-safety-section .section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.15));
    border: 1px solid rgba(122, 179, 206, 0.3);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.ai-safety-section .section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* AI Feature Boxes Grid */
.ai-boxes-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 50px;
}

.ai-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 40px 28px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.ai-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-box:hover {
    border-color: rgba(122, 179, 206, 0.4) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(14, 76, 120, 0.15) !important;
}

.ai-box:hover::before {
    opacity: 1;
}

.ai-box-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.4), rgba(122, 179, 206, 0.25));
    border-radius: 20px;
    margin: 0 auto 20px;
    color: var(--accent);
}

.ai-box-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.1;
}

.ai-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ai-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Scanner Status Cards */
.scanner-cards {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 16px !important;
}

.scanner-card {
    background: rgba(39, 202, 64, 0.08) !important;
    border: 1px solid rgba(39, 202, 64, 0.2) !important;
    border-radius: 16px !important;
    padding: 20px 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    transition: all 0.3s ease !important;
}

.scanner-card:hover {
    background: rgba(39, 202, 64, 0.12) !important;
    border-color: rgba(39, 202, 64, 0.4) !important;
    transform: translateY(-2px) !important;
}

.scanner-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.scanner-icon.green {
    background: rgba(39, 202, 64, 0.2);
    color: #27ca40;
}

.scanner-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.scanner-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.scanner-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #27ca40;
}

@media (max-width: 1200px) {
    .ai-boxes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .scanner-cards {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .ai-boxes-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .scanner-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .scanner-cards {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   TESTIMONIALS FIX - FORCE DISPLAY ALL
   ============================================ */

.testimonials-section .testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonials-section .testimonials-grid .testimonial-card {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Make sure all 5 cards show - last 2 in second row */
.testimonials-section .testimonials-grid .testimonial-card:nth-child(4),
.testimonials-section .testimonials-grid .testimonial-card:nth-child(5) {
    display: flex !important;
}

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

@media (max-width: 640px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   EXCELLENCE BADGE - CENTERED
   ============================================ */

.excellence-badge-section {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 60px !important;
    padding-top: 40px !important;
    text-align: center !important;
}

.excellence-badge-section img {
    display: block !important;
    height: 120px !important;
    width: auto !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 4px 30px rgba(14, 76, 120, 0.4));
}

/* ============================================
   AI BOXES - ENHANCED ANIMATIONS
   ============================================ */

.ai-box {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.ai-box:nth-child(1) { animation-delay: 0.1s; }
.ai-box:nth-child(2) { animation-delay: 0.2s; }
.ai-box:nth-child(3) { animation-delay: 0.3s; }
.ai-box:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for icons */
.ai-box-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

.ai-box:nth-child(1) .ai-box-icon { animation-delay: 0s; }
.ai-box:nth-child(2) .ai-box-icon { animation-delay: 0.5s; }
.ai-box:nth-child(3) .ai-box-icon { animation-delay: 1s; }
.ai-box:nth-child(4) .ai-box-icon { animation-delay: 1.5s; }

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(122, 179, 206, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(122, 179, 206, 0.2);
    }
}

/* Number counter animation */
.ai-box-number {
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    from {
        text-shadow: 0 0 10px rgba(14, 76, 120, 0.3);
    }
    to {
        text-shadow: 0 0 25px rgba(122, 179, 206, 0.5);
    }
}

/* Scanner cards animation */
.scanner-card {
    animation: scannerFadeIn 0.5s ease forwards;
    opacity: 0;
}

.scanner-card:nth-child(1) { animation-delay: 0.6s; }
.scanner-card:nth-child(2) { animation-delay: 0.7s; }
.scanner-card:nth-child(3) { animation-delay: 0.8s; }
.scanner-card:nth-child(4) { animation-delay: 0.9s; }
.scanner-card:nth-child(5) { animation-delay: 1.0s; }
.scanner-card:nth-child(6) { animation-delay: 1.1s; }

@keyframes scannerFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scanner icon pulse */
.scanner-icon.green {
    animation: greenPulse 2s ease-in-out infinite;
}

@keyframes greenPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(39, 202, 64, 0.4);
    }
    50% {
        box-shadow: 0 0 15px 3px rgba(39, 202, 64, 0.3);
    }
}

/* ============================================
   TESTIMONIALS - FORCE VISIBLE + ANIMATIONS
   ============================================ */

.testimonials-section .testimonials-grid,
.testimonials-section .testimonials-grid .testimonial-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.testimonial-card {
    animation: testimonialFadeIn 0.6s ease forwards !important;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s !important; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s !important; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s !important; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s !important; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s !important; }

@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TEAM PAGE - COMPLETE REDESIGN
   ============================================ */

/* Team Hero - Modern gradient background */
.team-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(14, 76, 120, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(122, 179, 206, 0.2) 0%, transparent 50%),
        var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    display: none;
}

.team-hero .hero-bg {
    display: none;
}

.team-hero button,
.team-hero .btn,
.team-hero a.btn {
    position: relative;
    z-index: 10;
}

.team-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.team-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.4), rgba(122, 179, 206, 0.2));
    border: 1px solid rgba(122, 179, 206, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.team-hero .page-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.team-hero .hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-hero .hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Team Stats - Animated counters */
.team-stats {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(14, 76, 120, 0.08) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-stats .stat-box {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: var(--transition-medium);
}

.team-stats .stat-box:hover {
    border-color: rgba(122, 179, 206, 0.3);
    transform: translateY(-4px);
    background: rgba(14, 76, 120, 0.1);
}

.team-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.team-stats .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-stats .stat-number {
        font-size: 2.5rem;
    }
}

/* Team Gallery - Masonry-like grid */
.team-gallery {
    padding: 100px 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 76, 120, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Expert Section - Modern cards */
.expert-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 76, 120, 0.05) 50%, transparent 100%);
}

.expert-intro {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.intro-content {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.0625rem;
}

.intro-lead {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.intro-lead strong {
    color: var(--accent);
    font-weight: 700;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    position: sticky;
    top: 120px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(14, 76, 120, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.intro-feature:hover {
    background: rgba(14, 76, 120, 0.2);
    transform: translateX(5px);
}

.intro-feature .feature-icon {
    color: var(--accent);
    display: flex;
    flex-shrink: 0;
}

.intro-feature span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Team Members - Premium cards */
.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 2px solid rgba(122, 179, 206, 0.3);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(122, 179, 206, 0.2);
}

.member-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.08);
}

.member-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social .social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.member-info {
    padding: 32px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.member-role {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.member-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.2));
    border: 1px solid rgba(122, 179, 206, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.member-cta:hover {
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.5), rgba(122, 179, 206, 0.3));
    border-color: var(--accent);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .expert-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-features {
        position: static;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Team Benefits - Enhanced cards */
.team-benefits {
    padding: 120px 0;
    background: var(--bg-darker);
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.benefit-box {
    padding: 40px 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-box:hover {
    border-color: rgba(122, 179, 206, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.benefit-box:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.4), rgba(122, 179, 206, 0.25));
    border-radius: 20px;
    margin: 0 auto 24px;
    color: var(--accent);
    transition: all 0.4s ease;
}

.benefit-box:hover .benefit-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(14, 76, 120, 0.3);
}

.benefit-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.benefit-box p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

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

/* Team CTA - Gradient background */
.team-cta {
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3) 0%, rgba(122, 179, 206, 0.1) 100%);
    position: relative;
}

.team-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(14, 76, 120, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(122, 179, 206, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.team-cta .cta-content {
    position: relative;
    z-index: 1;
}

.team-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.team-cta > .cta-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* ============================================
   HERO STACKED LAYOUT - Full Width Image Below
   ============================================ */

.hero.hero-stacked {
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 0;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.hero-stacked .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
}

.hero-stacked .hero-subtitle {
    font-size: 1.35rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-stacked .hero-cta {
    justify-content: center;
    margin-bottom: 48px;
}

.hero-stacked .hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-stacked .trust-logos {
    justify-content: center;
    gap: 40px;
}

.hero-stacked .trust-label {
    text-align: center;
    margin-bottom: 24px;
}

/* Full Width Marketplace Image */
.hero-image-full {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.marketplace-preview-large {
    position: relative;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    box-shadow:
        0 -20px 60px rgba(14, 76, 120, 0.3),
        0 0 100px rgba(122, 179, 206, 0.15);
    border: 1px solid rgba(122, 179, 206, 0.2);
    border-bottom: none;
    background: linear-gradient(180deg, rgba(14, 76, 120, 0.1) 0%, transparent 100%);
}

.marketplace-preview-large img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.marketplace-preview-large:hover img {
    transform: scale(1.02);
}

.preview-glow-large {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(122, 179, 206, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero.hero-stacked {
        padding-top: 120px;
    }

    .hero-content-center {
        padding-bottom: 40px;
    }

    .hero-stacked .hero-title {
        font-size: 2rem;
    }

    .marketplace-preview-large {
        border-radius: 16px 16px 0 0;
    }
}

/* ============================================
   TESTIMONIALS CAROUSEL - 3 Cards Visible
   ============================================ */

.testimonials-marquee {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 24px 40px;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: carouselSlide 25s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes carouselSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Cards - Compact boxes */
.testimonials-marquee .testimonial-card {
    flex-shrink: 0;
    width: calc((1200px - 48px) / 3);
    max-width: 380px;
    padding: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonials-marquee .testimonial-card:hover {
    border-color: rgba(122, 179, 206, 0.4);
    background: linear-gradient(145deg, rgba(14, 76, 120, 0.15), rgba(255, 255, 255, 0.02));
}

.testimonials-marquee .testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.testimonials-marquee .stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.testimonials-marquee .rating-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.testimonials-marquee .testimonial-quote {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
}

.testimonials-marquee .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-marquee .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
}

.testimonials-marquee .author-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.testimonials-marquee .author-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonials-marquee .testimonial-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .testimonials-marquee .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .testimonials-track {
        animation-duration: 20s;
    }
}

/* Hide the old grid styles for testimonials section */
.testimonials-section .testimonials-grid {
    display: none !important;
}

/* ============================================
   PRICING PAGE - CLEAN SIMPLE DESIGN
   ============================================ */

/* Hero */
.price-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(14, 76, 120, 0.2) 0%, transparent 60%), var(--bg-darker);
}

.price-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(122, 179, 206, 0.15);
    border: 1px solid rgba(122, 179, 206, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.price-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.price-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Plans Grid */
.price-plans {
    padding: 60px 0 100px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: rgba(122, 179, 206, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.plan-card.featured {
    border-color: var(--accent);
    background: rgba(14, 76, 120, 0.1);
}

.featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent);
}

.plan-price {
    margin-bottom: 12px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.plan-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.check-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1rem;
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.plan-btn.primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.plan-btn.primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Guarantees */
.price-guarantees {
    padding: 50px 0;
    background: rgba(14, 76, 120, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
}

.guarantee-item strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.guarantee-item > span:last-child {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Compare Table */
.price-compare {
    padding: 100px 0;
}

.price-compare h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
}

.compare-table thead th {
    background: rgba(14, 76, 120, 0.1);
    font-weight: 600;
}

.compare-table thead th.highlight {
    background: rgba(14, 76, 120, 0.25);
    color: var(--accent);
}

.compare-table td.highlight {
    background: rgba(14, 76, 120, 0.08);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

/* Results */
.price-results {
    padding: 100px 0;
    background: var(--bg-darker);
}

.price-results h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.result-box {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.result-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* FAQ */
.price-faq {
    padding: 100px 0;
}

.price-faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 48px;
}

/* CTA */
.price-cta {
    padding: 60px 0 120px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.2), rgba(122, 179, 206, 0.1));
    border: 1px solid rgba(122, 179, 206, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.cta-box h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.cta-box > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btns .plan-btn {
    width: auto;
    min-width: 180px;
}

/* Responsive */
@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .price-hero {
        padding: 140px 0 60px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .guarantee-item {
        flex-direction: column;
        text-align: center;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns .plan-btn {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .guarantees-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* OLD PRICING STYLES - HIDDEN */
.pricing-hero-new {
    display: none;
}

.pricing-cards-section,
.pricing-trust,
.pricing-features-section,
.pricing-results,
.pricing-cta-new {
    display: none;
}

/* Pricing Hero OLD */
.pricing-hero-new-old {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(14, 76, 120, 0.25) 0%, transparent 60%),
        var(--bg-darker);
}

.pricing-hero-new .hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.15));
    border: 1px solid rgba(122, 179, 206, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
}

.pricing-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

.toggle-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--accent);
    font-weight: 600;
}

.toggle-divider {
    color: var(--text-muted);
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 40px 0 100px;
    margin-top: -40px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    border-color: rgba(122, 179, 206, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.price-card.popular {
    border-color: var(--accent);
    background: linear-gradient(145deg, rgba(14, 76, 120, 0.15), rgba(122, 179, 206, 0.05));
    transform: scale(1.02);
}

.price-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.plan-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(122, 179, 206, 0.1);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

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

.plan-price .amount-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.feature-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.feature-item strong {
    color: var(--text-primary);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Trust Section */
.pricing-trust {
    padding: 60px 0;
    background: rgba(14, 76, 120, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.15));
    border-radius: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.trust-text span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Features Comparison Table */
.pricing-features-section {
    padding: 100px 0;
}

.features-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.features-table th,
.features-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-table th:first-child,
.features-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.features-table thead th {
    background: rgba(14, 76, 120, 0.1);
    font-weight: 600;
    font-size: 0.9375rem;
}

.features-table thead th.highlight {
    background: rgba(14, 76, 120, 0.25);
    color: var(--accent);
}

.features-table td.highlight {
    background: rgba(14, 76, 120, 0.08);
}

.features-table tbody tr:last-child td {
    border-bottom: none;
}

.features-table .check {
    color: var(--accent);
    font-size: 1.25rem;
}

.features-table .dash {
    color: var(--text-muted);
}

/* Results Stats */
.pricing-results {
    padding: 100px 0;
    background: var(--bg-darker);
}

.results-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.result-stat {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.result-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.stat-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 16px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: fillBar 1.5s ease forwards;
}

@keyframes fillBar {
    from { width: 0; }
}

.result-stat .stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Pricing FAQ */
.pricing-faq {
    padding: 100px 0;
}

/* Pricing CTA */
.pricing-cta-new {
    padding: 80px 0 120px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.2), rgba(122, 179, 206, 0.1));
    border: 1px solid rgba(122, 179, 206, 0.2);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(122, 179, 206, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-card .cta-content {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card > .cta-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.popular {
        transform: none;
    }

    .price-card.popular:hover {
        transform: translateY(-8px);
    }
}

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

    .results-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-hero-new {
        padding: 140px 0 60px;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .results-stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS - HOMEPAGE
   ============================================ */

@media (max-width: 768px) {
    /* Header Logo Mobile */
    .site-header .logo img,
    .site-header .custom-logo,
    .site-header .custom-logo-link img {
        max-width: 100px;
        max-height: 36px;
        height: auto;
        object-fit: contain;
    }

    .site-header .logo {
        max-width: 100px;
        max-height: 36px;
    }

    .site-header {
        padding: 4px 0 !important;
    }

    .header-container {
        padding: 0 12px;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 40px;
        overflow: hidden;
    }

    .hero-bg {
        overflow: hidden;
    }

    /* Hide glow effects on mobile to prevent overflow */
    .hero-glow,
    .hero-glow-1,
    .hero-glow-2 {
        display: none;
    }

    .hero .container {
        padding: 0 16px;
        overflow: hidden;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0;
        margin-bottom: 24px;
        text-align: center;
    }

    .hero-content-center {
        padding: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    /* Hero Image */
    .hero-image-full {
        padding: 0;
        margin-top: 32px;
        width: 100%;
    }

    .hero-image-full img,
    .marketplace-preview-large img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-md);
    }

    .marketplace-preview-large {
        width: 100%;
        overflow: hidden;
    }

    /* Trust Logos Mobile */
    .hero-trust {
        padding-top: 24px;
        width: 100%;
        overflow: hidden;
    }

    .trust-label {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .trust-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .trust-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trust-logo img {
        max-width: 70px;
        height: auto;
    }

    /* Stats Section Mobile */
    .stats {
        padding: 48px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Features Section Mobile */
    .features {
        padding: 48px 0;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 0.9375rem;
        margin-bottom: 0;
    }

    /* Websites Section Mobile */
    .websites-section {
        padding: 48px 0;
    }

    .websites-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .websites-text h2 {
        font-size: 1.75rem;
    }

    .sample-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .sample-site {
        padding: 10px 14px;
        font-size: 0.8125rem;
        flex: 0 0 auto;
    }

    /* AI Safety Section Mobile */
    .ai-safety-section {
        padding: 48px 0;
    }

    .ai-boxes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ai-box {
        padding: 24px;
    }

    .ai-box-number {
        font-size: 1.75rem;
    }

    .ai-box h3 {
        font-size: 1rem;
    }

    .ai-box p {
        font-size: 0.875rem;
    }

    /* Scanner Cards Mobile */
    .scanner-cards {
        flex-direction: column;
        gap: 12px;
    }

    .scanner-card {
        width: 100%;
        padding: 12px 16px;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 1.625rem;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 0.9375rem;
    }

    /* Buttons Mobile */
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin-bottom: 32px;
        width: 100%;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        box-sizing: border-box;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-quote {
        font-size: 0.9375rem;
    }

    /* FAQ Mobile */
    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }

    /* Footer Mobile */
    .site-footer {
        padding: 48px 0 32px;
    }

    .footer-top {
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Why Us Section Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 24px;
    }

    /* Team Page Mobile Fix */
    .team-members,
    .team-members-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }

    .team-member,
    .team-member-card {
        width: 100% !important;
        margin: 0 !important;
        position: relative !important;
        display: block !important;
        overflow: hidden !important;
    }

    .member-photo,
    .member-image {
        aspect-ratio: 4/3 !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .member-photo img,
    .member-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: relative !important;
        transform: none !important;
    }

    .member-info {
        position: relative !important;
        padding: 20px !important;
    }

    /* Gallery Grid Mobile Fix */
    .gallery-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
    }

    .gallery-item,
    .gallery-item.gallery-large {
        width: 100% !important;
        aspect-ratio: 16/9 !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Stats Row Mobile */
    .stats-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Benefits Cards Mobile */
    .benefits-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .benefit-box {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    .stat-item {
        min-width: auto;
    }

    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-logo img {
        max-width: 60px;
    }

    .sample-site {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .websites-text h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   TRUST LOGOS MARQUEE ANIMATION
   ============================================ */

/* Prevent horizontal scroll */
body,
html {
    overflow-x: hidden;
}

.hero {
    overflow: hidden;
}

.hero-trust {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.trust-logos {
    display: flex !important;
    gap: 48px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.trust-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   STATS SECTION - CENTERED
   ============================================ */

.stats {
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 40px;
    }
}

/* ============================================
   WEBSITES SECTION - CENTERED
   ============================================ */

.websites-section {
    text-align: center;
}

.websites-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.websites-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.websites-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.website-sample {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sample-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   FOOTER - CENTERED (MOBILE ONLY)
   ============================================ */

@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo .logo-text,
    .footer-logo a {
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
    }

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

    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 48px;
        width: 100%;
    }

    .footer-col {
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

/* ============================================
   MOBILE FIXES FOR NEW STYLES
   ============================================ */

@media (max-width: 768px) {
    /* Trust logos marquee mobile */
    .trust-logos {
        gap: 32px;
        animation: marquee 15s linear infinite;
    }

    .trust-logo img {
        max-width: 80px;
        height: auto;
    }

    /* Stats mobile centered */
    .stats-grid {
        gap: 24px;
    }

    .stat-item {
        min-width: 120px;
    }

    /* Website samples mobile */
    .sample-row {
        gap: 8px;
    }

    .sample-site {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    /* Footer mobile */
    .footer-links {
        gap: 32px;
    }

    .footer-col {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .trust-logos {
        gap: 24px;
        animation: marquee 12s linear infinite;
    }

    .trust-logo img {
        max-width: 60px;
    }

    .stat-item {
        min-width: 100px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}

/* ============================================
   TEAM PAGE FIX - DESKTOP GALLERY
   ============================================ */

.team-gallery {
    padding: 80px 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    padding: 140px 0 80px;
    background: var(--bg-darker);
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 0;
    background: var(--bg-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 8px;
}

.about-brands {
    padding: 80px 0;
    background: var(--bg-darker);
}

.brands-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.brand-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 16px 32px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-difference {
    padding: 100px 0;
    background: var(--bg-dark);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.difference-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.difference-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.difference-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.difference-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-results {
    padding: 80px 0;
    background: var(--bg-darker);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.result-card {
    text-align: center;
    padding: 32px;
}

.result-card .result-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-card .result-label {
    color: var(--text-secondary);
    margin-top: 8px;
}

.about-mission {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--primary), var(--accent));
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 24px;
}

.mission-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 40px;
}

.mission-values {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.value-item {
    text-align: center;
}

.value-item strong {
    display: block;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.value-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-hero {
    padding: 140px 0 80px;
    background: var(--bg-darker);
    text-align: center;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.services-overview {
    padding: 80px 0;
    background: var(--bg-dark);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.overview-content .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.overview-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.overview-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.overview-stats .stat-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.overview-stats .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.overview-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 4px;
}

.services-list {
    padding: 100px 0;
    background: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
    position: relative;
}

.service-card:hover {
    border-color: rgba(122, 179, 206, 0.3);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(145deg, rgba(14, 76, 120, 0.2), var(--bg-card));
}

.service-card .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card .service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.service-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9375rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.services-process {
    padding: 100px 0;
    background: var(--bg-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.services-guarantee {
    padding: 80px 0;
    background: var(--bg-darker);
}

.guarantee-box {
    background: linear-gradient(145deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.1));
    border: 1px solid rgba(122, 179, 206, 0.3);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-box .guarantee-icon {
    color: var(--accent);
    margin-bottom: 24px;
}

.guarantee-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.guarantee-box > p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.guarantee-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.guarantee-features .check {
    color: var(--accent);
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

.careers-hero {
    padding: 140px 0 80px;
    background: var(--bg-darker);
    text-align: center;
}

.careers-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.careers-intro {
    padding: 80px 0;
    background: var(--bg-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.intro-content .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.intro-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.perk-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.perk-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.perk-text span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.careers-openings {
    padding: 100px 0;
    background: var(--bg-darker);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.job-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.job-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.job-type {
    font-size: 0.875rem;
    color: var(--accent);
    background: rgba(122, 179, 206, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.job-card > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.job-tags .tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-darker);
    padding: 6px 12px;
    border-radius: 6px;
}

.careers-culture {
    padding: 80px 0;
    background: var(--bg-dark);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.culture-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.culture-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.culture-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    padding: 140px 0 80px;
    background: var(--bg-darker);
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-main {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.method-details strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.method-details a {
    color: var(--accent);
    text-decoration: none;
}

.method-details span {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.contact-social h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links .social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-links .social-link:hover {
    background: var(--accent);
    color: white;
}

.form-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
}

.contact-faq {
    padding: 80px 0;
    background: var(--bg-darker);
}

/* ============================================
   CASE STUDIES PAGE STYLES
   ============================================ */

.cases-hero {
    padding: 140px 0 80px;
    background: var(--bg-darker);
    text-align: center;
}

.cases-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cases-featured {
    padding: 80px 0;
    background: var(--bg-dark);
}

.case-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.case-card.featured {
    border-color: var(--accent);
}

.case-header {
    padding: 40px;
    background: linear-gradient(145deg, rgba(14, 76, 120, 0.3), transparent);
}

.case-industry {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.case-header h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
}

.case-content {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.case-content h3 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.case-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-results .results-grid {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.case-results .result-item {
    text-align: center;
}

.case-results .result-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.case-results .result-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cases-grid-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.cases-grid .case-card {
    padding: 32px;
}

.cases-grid .case-card h3 {
    font-size: 1.125rem;
    margin: 12px 0;
    color: var(--text-primary);
}

.cases-grid .case-card > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-stats {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.case-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
}

.case-stats .stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cases-testimonials {
    padding: 80px 0;
    background: var(--bg-dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-quote {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ============================================
   SUPPORT PAGE STYLES
   ============================================ */

.support-hero {
    padding: 140px 0 80px;
    background: var(--bg-darker);
    text-align: center;
}

.support-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.support-options {
    padding: 80px 0;
    background: var(--bg-dark);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    display: block;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    text-align: center;
    transition: var(--transition-medium);
}

.support-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.support-card .card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.support-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.support-card .card-link {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
}

.support-faq {
    padding: 80px 0;
    background: var(--bg-darker);
}

.container-md {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

.faq-category h3 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-contact {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-box {
    background: linear-gradient(145deg, var(--primary), var(--accent));
    padding: 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-box h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.contact-options .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */

@media (max-width: 1024px) {
    .story-grid,
    .intro-grid,
    .overview-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .difference-grid,
    .services-grid,
    .culture-grid,
    .cases-grid,
    .testimonials-slider,
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps,
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .services-hero,
    .careers-hero,
    .contact-hero,
    .cases-hero,
    .support-hero {
        padding: 100px 0 60px;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .difference-grid,
    .services-grid,
    .culture-grid,
    .cases-grid,
    .testimonials-slider,
    .options-grid,
    .process-steps,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .mission-values {
        flex-direction: column;
        gap: 24px;
    }

    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .guarantee-box {
        padding: 40px 24px;
    }

    .guarantee-features {
        flex-direction: column;
        gap: 16px;
    }

    .form-card {
        padding: 24px;
    }

    .case-results .results-grid {
        flex-wrap: wrap;
    }

    .contact-options {
        flex-direction: column;
    }

    .brands-grid {
        gap: 16px;
    }

    .brand-item {
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Gallery Grid Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
}


/* ============================================
   AFFILIATE PAGE - MODERN REDESIGN
   ============================================ */

/* Hero Section */
.aff-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.aff-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, #050a10 0%, #0a1628 50%, #0d1f35 100%);
}

.aff-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
}

.aff-hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.aff-hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.aff-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.aff-hero .container {
    position: relative;
    z-index: 1;
}

.aff-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.aff-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.aff-hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.02em;
}

.aff-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aff-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.aff-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.aff-hero-stat {
    text-align: center;
}

.aff-hero-stat .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.aff-hero-stat .stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aff-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.aff-hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.aff-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.aff-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.aff-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.aff-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aff-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.aff-btn-full {
    width: 100%;
    justify-content: center;
}

/* Value Props Section */
.aff-value {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.aff-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.aff-value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.aff-value-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.aff-value-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    color: #60a5fa;
}

.aff-value-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.aff-value-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Section Headers */
.aff-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.aff-section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.aff-section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

/* Calculator Section */
.aff-calc {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1628 0%, #050a10 100%);
}

.aff-calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.aff-calc-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.aff-calc-input-group {
    margin-bottom: 32px;
}

.aff-calc-input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.aff-calc-slider-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.aff-calc-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
}

.aff-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transition: transform 0.2s ease;
}

.aff-calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.aff-calc-slider-value {
    min-width: 50px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    text-align: center;
}

.aff-calc-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.aff-calc-amount .currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.aff-calc-amount .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.aff-calc-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 32px 0;
}

.aff-calc-result {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aff-calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.aff-calc-result-row.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.aff-calc-result-row .result-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.aff-calc-result-row .result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.aff-calc-result-row.highlight .result-value {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aff-calc-examples {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aff-calc-example {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.aff-calc-example:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(8px);
}

.aff-calc-example.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
}

.aff-calc-example .example-icon {
    font-size: 2rem;
}

.aff-calc-example .example-info {
    flex: 1;
}

.aff-calc-example .example-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.aff-calc-example .example-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.aff-calc-example .example-value small {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.aff-calc-example .example-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

/* How It Works - Timeline */
.aff-how {
    padding: 120px 0;
    background: linear-gradient(180deg, #050a10 0%, #0a1628 100%);
}

.aff-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.aff-timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #f472b6);
    opacity: 0.3;
}

.aff-timeline-item {
    position: relative;
    display: flex;
    gap: 32px;
    padding-bottom: 48px;
}

.aff-timeline-item:last-child {
    padding-bottom: 0;
}

.aff-timeline-marker {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.aff-timeline-content {
    flex: 1;
    padding-top: 8px;
}

.aff-timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.aff-timeline-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Comparison Table */
.aff-compare {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
}

.aff-compare-table {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

.aff-compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.aff-compare-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aff-compare-cell {
    padding: 20px 24px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aff-compare-cell:first-child {
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.6);
}

.aff-compare-cell.highlight {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
}

.aff-compare-cell.highlight strong {
    font-weight: 700;
}

.aff-compare-cell.highlight svg {
    color: #22c55e;
}

.aff-compare-cell.muted {
    color: rgba(255, 255, 255, 0.4);
}

.aff-compare-header .aff-compare-cell {
    padding: 24px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aff-compare-header .aff-compare-cell.highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
}

/* Audience Section */
.aff-audience {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d1f35 0%, #0a1628 100%);
}

.aff-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.aff-audience-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.aff-audience-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-8px);
}

.aff-audience-emoji {
    font-size: 3rem;
    margin-bottom: 20px;
}

.aff-audience-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.aff-audience-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Apply Section */
.aff-apply {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1628 0%, #050a10 100%);
}

.aff-apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.aff-apply-info h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin: 20px 0 16px;
    line-height: 1.2;
}

.aff-apply-info > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.aff-apply-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aff-apply-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.aff-apply-feature svg {
    flex-shrink: 0;
    color: #22c55e;
}

/* Form Styles */
.aff-apply-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.aff-apply-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}

.aff-form-group {
    margin-bottom: 24px;
}

.aff-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.aff-form-group input,
.aff-form-group select,
.aff-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.aff-form-group input:focus,
.aff-form-group select:focus,
.aff-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.aff-form-group input::placeholder,
.aff-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.aff-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.aff-form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.aff-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.aff-form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
}

/* FAQ Section */
.aff-faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #050a10 0%, #0a1628 100%);
}

.aff-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aff-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.aff-faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.aff-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.aff-faq-trigger span:first-child {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
}

.aff-faq-trigger svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.aff-faq-item.active .aff-faq-trigger svg {
    transform: rotate(180deg);
}

.aff-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.aff-faq-item.active .aff-faq-content {
    max-height: 300px;
}

.aff-faq-content p {
    padding: 0 24px 24px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .aff-value-grid {
        grid-template-columns: 1fr;
    }

    .aff-calc-wrapper {
        grid-template-columns: 1fr;
    }

    .aff-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aff-apply-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .aff-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .aff-hero h1 br {
        display: none;
    }

    .aff-hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .aff-stat-divider {
        width: 60px;
        height: 1px;
    }

    .aff-hero-cta {
        flex-direction: column;
    }

    .aff-btn {
        width: 100%;
        justify-content: center;
    }

    .aff-calc,
    .aff-how,
    .aff-compare,
    .aff-audience,
    .aff-apply,
    .aff-faq {
        padding: 80px 0;
    }

    .aff-timeline-marker {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .aff-timeline-line {
        left: 23px;
    }

    .aff-audience-grid {
        grid-template-columns: 1fr;
    }

    .aff-compare-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .aff-compare-cell {
        padding: 16px 12px;
        font-size: 0.8125rem;
    }

    .aff-apply-form {
        padding: 32px 24px;
    }

    .aff-calc-amount .amount {
        font-size: 2rem;
    }
}

/* Updated Icon Styles for Affiliate Page */
.aff-calc-example .example-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 16px;
    color: #60a5fa;
}

.aff-calc-example.featured .example-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
}

.aff-audience-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    margin: 0 auto 24px;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.aff-audience-card:hover .aff-audience-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: #3b82f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    transition: transform 0.2s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   TRUST LOGOS - UPDATED STYLES
   ============================================ */

.trust-logos-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-logos {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.trust-logo {
    flex-shrink: 0;
}

.trust-logo span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.trust-logo:hover span {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .trust-logos {
        gap: 32px;
        animation-duration: 20s;
    }

    .trust-logo span {
        font-size: 1rem;
    }
}

/* Testimonial Image Avatars */
img.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ============================================
   GET IN TOUCH PAGE - MODERN REDESIGN
   ============================================ */

/* Contact Page Hero */
.contact-page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

.contact-glow-1 {
    top: -300px;
    right: -200px;
    background: var(--primary);
}

.contact-glow-2 {
    bottom: -400px;
    left: -300px;
    background: var(--accent);
    opacity: 0.3;
}

.contact-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 76, 120, 0.15);
    border: 1px solid rgba(122, 179, 206, 0.3);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 32px;
}

.contact-badge svg {
    opacity: 0.8;
}

.contact-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Options Section */
.contact-options-section {
    padding: 40px 0 100px;
    position: relative;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-option-card {
    background: linear-gradient(145deg, rgba(18, 18, 26, 0.9), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-12px);
    border-color: rgba(14, 76, 120, 0.5);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(14, 76, 120, 0.15);
}

.contact-option-card:hover::before {
    opacity: 1;
}

.contact-option-card.featured {
    background: linear-gradient(145deg, rgba(14, 76, 120, 0.2), rgba(18, 18, 26, 0.95));
    border-color: rgba(14, 76, 120, 0.4);
}

.contact-option-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.option-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.option-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.25), rgba(122, 179, 206, 0.15));
    border-radius: 20px;
    color: var(--accent);
}

.option-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-green);
}

.option-status.online .status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.contact-option-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.option-detail {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.option-detail a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.option-detail a:hover {
    color: var(--accent-light);
}

.option-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.option-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
    background: transparent;
    border: 2px solid rgba(14, 76, 120, 0.5);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.option-btn:hover {
    background: rgba(14, 76, 120, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.option-btn.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(14, 76, 120, 0.4);
}

.option-btn.primary:hover {
    box-shadow: 0 12px 32px rgba(14, 76, 120, 0.5);
}

/* Contact Main Section - Two Column */
.contact-main-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, transparent, rgba(14, 76, 120, 0.03) 50%, transparent);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 120px;
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.contact-info-side h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.info-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-feature:hover {
    background: rgba(14, 76, 120, 0.1);
    border-color: rgba(14, 76, 120, 0.3);
}

.cf-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.25), rgba(122, 179, 206, 0.15));
    border-radius: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.cf-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cf-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-social-section {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

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

/* Contact Form Side */
.contact-form-card {
    background: linear-gradient(145deg, rgba(18, 18, 26, 0.95), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(14, 76, 120, 0.1);
}

.modern-contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-field label .optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    background: rgba(14, 76, 120, 0.08);
    box-shadow: 0 0 0 4px rgba(14, 76, 120, 0.15);
}

.form-field select {
    appearance: none;
    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='%237AB3CE' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
    padding-right: 50px;
    cursor: pointer;
}

.form-field select option {
    background: var(--bg-dark);
    color: var(--text-primary);
    padding: 12px;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 32px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(14, 76, 120, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(14, 76, 120, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 20px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

.form-note a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-note a:hover {
    color: var(--accent-light);
}

/* Schedule Section */
.schedule-section {
    padding: 0 0 120px;
}

.schedule-card {
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.15), rgba(122, 179, 206, 0.08));
    border: 1px solid rgba(14, 76, 120, 0.3);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 76, 120, 0.2), transparent 70%);
    pointer-events: none;
}

.schedule-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.schedule-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.3), rgba(122, 179, 206, 0.2));
    border-radius: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.schedule-text {
    flex: 1;
}

.schedule-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.schedule-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.schedule-content .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-options-grid .contact-option-card:last-child {
        grid-column: span 2;
        max-width: 450px;
        margin: 0 auto;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-side {
        position: static;
        text-align: center;
    }

    .contact-features {
        max-width: 500px;
        margin: 0 auto 48px;
    }

    .contact-feature {
        text-align: left;
    }

    .contact-social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .schedule-content {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .contact-page-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .contact-hero-content h1 {
        font-size: 2.25rem;
    }

    .contact-hero-content p {
        font-size: 1.0625rem;
    }

    .contact-options-section {
        padding: 20px 0 80px;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-options-grid .contact-option-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .contact-option-card {
        padding: 32px 24px;
    }

    .contact-main-section {
        padding: 60px 0 80px;
    }

    .contact-info-side h2 {
        font-size: 1.75rem;
    }

    .contact-form-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .modern-contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .schedule-section {
        padding: 0 0 80px;
    }

    .schedule-card {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .schedule-text h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-badge {
        font-size: 0.8125rem;
        padding: 10px 18px;
    }

    .contact-hero-content h1 {
        font-size: 1.875rem;
    }

    .option-icon {
        width: 60px;
        height: 60px;
    }

    .contact-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
}


/* ============================================
   LEGAL PAGES - MODERN REDESIGN
   ============================================ */

/* Legal Hero Section */
.legal-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.legal-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.legal-glow-1 {
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.4;
}

.legal-glow-2 {
    bottom: -300px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.25;
}

.legal-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.legal-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.legal-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.25), rgba(122, 179, 206, 0.15));
    border-radius: 28px;
    color: var(--accent);
}

.legal-badge {
    display: inline-block;
    background: rgba(14, 76, 120, 0.15);
    border: 1px solid rgba(122, 179, 206, 0.3);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.legal-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.legal-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.meta-item svg {
    color: var(--accent);
}

/* Quick Navigation Section */
.legal-nav-section {
    padding: 0 0 60px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.legal-nav-card {
    background: linear-gradient(145deg, rgba(18, 18, 26, 0.95), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-nav-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-align: center;
}

.legal-nav-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.legal-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.legal-nav-item:hover {
    background: rgba(14, 76, 120, 0.15);
    border-color: rgba(14, 76, 120, 0.4);
    transform: translateY(-4px);
}

.nav-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Main Content Layout */
.legal-main {
    padding: 60px 0 120px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

/* Sidebar */
.legal-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.15), rgba(122, 179, 206, 0.08));
    border: 1px solid rgba(14, 76, 120, 0.3);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 76, 120, 0.4);
}

.sidebar-info {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.sidebar-info .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.sidebar-info .info-item svg {
    color: var(--accent);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
}

.content-intro {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 48px;
}

.content-intro p {
    margin: 0;
}

/* Legal Article */
.legal-article {
    margin-bottom: 56px;
    scroll-margin-top: 100px;
}

.article-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.article-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
}

.article-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.article-content {
    padding-left: 70px;
}

.article-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.content-block {
    margin-bottom: 28px;
}

/* Styled List */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.styled-list li strong {
    color: var(--text-primary);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: rgba(14, 76, 120, 0.4);
    background: rgba(14, 76, 120, 0.1);
}

.info-box-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.2), rgba(122, 179, 206, 0.1));
    border-radius: 14px;
    color: var(--accent);
}

.info-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.info-box p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.usage-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    border-color: rgba(14, 76, 120, 0.3);
    background: rgba(14, 76, 120, 0.08);
}

.usage-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.2), rgba(122, 179, 206, 0.1));
    border-radius: 12px;
    color: var(--accent);
    flex-shrink: 0;
}

.usage-text strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.usage-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Cookies Table */
.cookies-table {
    margin: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
}

.cookie-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-row:last-child {
    border-bottom: none;
}

.cookie-row.header {
    background: rgba(14, 76, 120, 0.15);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-name {
    font-weight: 600;
    color: var(--accent);
}

.cookie-row span:last-child {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    margin: 24px 0;
}

.highlight-box.warning {
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.15), rgba(14, 76, 120, 0.05));
    border-color: rgba(14, 76, 120, 0.4);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.highlight-box.warning .highlight-icon {
    background: rgba(14, 76, 120, 0.2);
    color: var(--accent);
}

.highlight-box p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.highlight-box p strong {
    color: var(--text-primary);
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.security-item {
    text-align: center;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: rgba(14, 76, 120, 0.4);
    transform: translateY(-4px);
}

.security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.2), rgba(122, 179, 206, 0.1));
    border-radius: 18px;
    color: var(--accent);
}

.security-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.security-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.right-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: rgba(14, 76, 120, 0.3);
    background: rgba(14, 76, 120, 0.08);
}

.right-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.right-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.right-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Definitions Box */
.definitions-box {
    background: rgba(14, 76, 120, 0.1);
    border: 1px solid rgba(14, 76, 120, 0.3);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
}

.definitions-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.def-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.def-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.def-item strong {
    font-size: 0.9375rem;
    color: var(--accent);
}

.def-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.check-item svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.check-item span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.service-box {
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: rgba(14, 76, 120, 0.4);
    background: rgba(14, 76, 120, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.2), rgba(122, 179, 206, 0.1));
    border-radius: 14px;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-box h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-box p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Payment Info */
.payment-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.payment-box {
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.payment-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.payment-box h4 svg {
    color: var(--accent-green);
}

.payment-box.refund h4 svg {
    color: var(--accent);
}

.payment-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.payment-box .note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Responsibilities Grid */
.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.resp-item {
    padding: 28px;
    border-radius: 16px;
}

.resp-item.do {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.03));
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.resp-item.dont {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.03));
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.resp-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.resp-item.do h4 {
    color: var(--accent-green);
}

.resp-item.dont h4 {
    color: #ef4444;
}

.resp-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resp-item ul li {
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.resp-item ul li:last-child {
    border-bottom: none;
}

/* Disclaimer Box */
.disclaimer-box {
    padding: 28px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    margin-bottom: 28px;
}

.disclaimer-box h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 12px;
}

.disclaimer-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Limit Box */
.limit-box {
    padding: 20px 24px;
    background: rgba(14, 76, 120, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    margin: 20px 0;
}

.limit-box strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.limit-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Term Grid */
.term-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.term-box {
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.term-box h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.term-box p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* Provisions List */
.provisions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.provision-item {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.provision-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.provision-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Card */
.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(14, 76, 120, 0.15), rgba(122, 179, 206, 0.08));
    border: 1px solid rgba(14, 76, 120, 0.3);
    border-radius: 20px;
    margin-top: 24px;
}

.contact-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--accent-light);
}

/* Note */
.article-content .note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        display: none;
    }

    .legal-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid,
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }

    .legal-hero-content h1 {
        font-size: 2.25rem;
    }

    .legal-icon-wrap {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }

    .legal-meta {
        gap: 20px;
    }

    .legal-nav-section {
        margin-top: -20px;
    }

    .legal-nav-card {
        padding: 28px;
    }

    .legal-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .legal-nav-item {
        padding: 16px 12px;
    }

    .nav-number {
        font-size: 1.25rem;
    }

    .nav-text {
        font-size: 0.75rem;
    }

    .legal-main {
        padding: 40px 0 80px;
    }

    .article-content {
        padding-left: 0;
    }

    .article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .info-grid,
    .usage-grid,
    .security-grid,
    .rights-grid,
    .services-grid,
    .payment-info,
    .responsibilities-grid,
    .term-grid,
    .def-grid {
        grid-template-columns: 1fr;
    }

    .cookie-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cookie-row.header {
        display: none;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   CONTACT FORM MESSAGES
   ============================================ */

.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.form-message svg {
    flex-shrink: 0;
}

.form-message span {
    line-height: 1.5;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Cloudflare Turnstile */
.cf-turnstile {
    margin-bottom: 1.5rem;
}

.cf-turnstile iframe {
    border-radius: 8px;
}


/* Affiliate Form Messages */
.aff-form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.aff-form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.aff-form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.aff-form-message svg {
    flex-shrink: 0;
}

