/**
 * Noverto Theme - Custom Styles
 * Modern, dark design with gradient accents
 */

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 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: 16px 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 {
    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;
    width: 100%;
    max-width: 100vw;
    background: #1a1a2e;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: 100%;
    height: 400px;
    background: radial-gradient(
        ellipse at center,
        rgba(61, 139, 139, 0.6) 0%,
        rgba(61, 139, 139, 0.3) 30%,
        rgba(61, 139, 139, 0.1) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(10, 10, 15, 1) 0%,
        rgba(10, 10, 15, 0.8) 20%,
        rgba(10, 10, 15, 0.4) 50%,
        rgba(10, 10, 15, 0) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

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

@media (max-width: 768px) {
    .hero-glow {
        display: none;
    }
}

.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: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    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: 60px;
    margin-top: 20px;
}

.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;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        padding: 0 8px;
    }

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

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

    .hero-trust {
        padding-top: 40px;
        margin-top: 16px;
    }

    .trust-logos {
        gap: 16px;
        justify-content: center;
    }

    .trust-logo {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 8px;
    }
}

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

.stats {
    padding: 80px 0;
    background: var(--bg-darker);
    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(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary-light);
    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;
        gap: 24px;
    }

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

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 16px;
    }
}

/* ============================================
   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(99, 102, 241, 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(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    color: var(--primary-light);
    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;
    }
}

@media (max-width: 640px) {
    .feature-card {
        padding: 32px 24px;
        text-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 24px;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .feature-list li {
        font-size: 0.875rem;
        justify-content: flex-start;
    }
}

/* ============================================
   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;
        text-align: center;
    }

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

    .step-content {
        text-align: center;
    }
}

/* ============================================
   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(99, 102, 241, 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 {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding: 16px 0;
        margin-bottom: 40px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .clients-grid::-webkit-scrollbar {
        display: none;
    }

    .client-logo {
        flex: 0 0 auto;
        min-width: 120px;
        padding: 16px 24px;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .client-logo span {
        font-size: 1rem;
        white-space: nowrap;
    }

    .testimonial-card {
        text-align: center;
    }

    .testimonial-author {
        justify-content: center;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */

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

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

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

.pricing-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(99, 102, 241, 0.2);
}

.pricing-featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

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

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

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

.pricing-price {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.pricing-features svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
}

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

    .pricing-featured {
        transform: none;
    }

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

@media (max-width: 640px) {
    .pricing-card {
        padding: 32px 24px;
        text-align: center;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .pricing-header {
        text-align: center;
    }

    .pricing-price {
        text-align: center;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .pricing-features {
        display: inline-block;
        text-align: left;
    }

    .pricing-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

/* ============================================
   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%;
    max-width: 100vw;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-glow {
        display: 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 input,
.contact-form select {
    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;
    transition: var(--transition-fast);
}

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

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99, 102, 241, 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;
    }

    .cta-form {
        padding: 24px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content > p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .contact-form input,
    .contact-form select {
        padding: 14px 16px;
        font-size: 0.9375rem;
    }
}

/* ============================================
   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;
    max-width: 100vw;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .footer-glow {
        display: 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-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-top {
        text-align: center;
    }

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

    .footer-logo {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .footer-logo .logo-text {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        padding: 0;
    }

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

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

    .footer-tagline {
        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(99, 102, 241, 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(99, 102, 241, 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;
}

.page-hero-single .page-title {
    max-width: 800px;
    margin: 0 auto;
}

.single-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.single-excerpt {
    max-width: 600px;
    margin: 24px auto 0;
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
}

/* 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(99, 102, 241, 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(--primary);
}

.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(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

/* Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition-fast);
}

.pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.pagination .current {
    background: var(--primary);
    border-color: var(--primary);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 80px 24px;
}

.no-posts h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.no-posts p {
    color: var(--text-secondary);
}

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

.page-featured-image,
.single-featured-image {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.page-featured-image img,
.single-featured-image img {
    width: 100%;
    height: 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(--primary);
    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;
}

.page-body pre code,
.single-body pre code {
    background: none;
    padding: 0;
}

/* Single Post Footer */
.single-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.single-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-label,
.share-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.single-tags a {
    color: var(--primary);
}

.single-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-link {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.share-link:hover {
    color: var(--primary);
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.nav-previous,
.nav-next {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.nav-next {
    text-align: right;
}

.nav-previous:hover,
.nav-next:hover {
    border-color: var(--primary);
}

.nav-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.nav-title {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Comments */
.single-comments {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

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

.comment {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 8px;
}

.comment-content {
    color: var(--text-secondary);
}

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

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

.page-subtitle {
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Team Photo Section */
.team-photo-section {
    padding: 40px 0;
    background: var(--bg-dark);
}

.team-photo-wrapper {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.team-photo-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 60%,
        var(--bg-dark) 100%
    );
    pointer-events: none;
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.team-photo-caption {
    padding: 20px;
    text-align: center;
    background: transparent;
}

.team-photo-caption p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .team-photo-section {
        padding: 30px 0;
    }

    .team-photo-wrapper {
        max-width: 300px;
    }

    .team-photo-caption {
        padding: 16px;
    }

    .team-photo-caption p {
        font-size: 0.85rem;
    }
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.team-card {
    background: transparent;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: none;
    display: flex;
    gap: 24px;
    transition: var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.02);
}

.team-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 16px;
}

.team-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-darker);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

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

/* Team CTA */
.team-cta {
    background: transparent;
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.team-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

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

.team-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

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

/* Office Section */
.office-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.office-address h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.office-address p,
.office-contact p,
.office-hours p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.office-contact a {
    color: var(--primary);
}

.office-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
}

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

/* Responsive */
/* ============================================
   CAREERS PAGE - NEW DESIGN
   ============================================ */

/* Icon sizes */
.icon {
    width: 20px;
    height: 20px;
}

.icon-sm {
    width: 14px;
    height: 14px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

/* Careers Hero */
.careers-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at top center, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                var(--bg-darker);
}

.careers-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.careers-hero .badge svg {
    width: 18px;
    height: 18px;
}

.careers-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.careers-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Jobs Section */
.jobs-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 32px;
}

/* Job Card */
.job-card {
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.8) 0%, rgba(20, 20, 30, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 24px;
    transition: var(--transition-medium);
}

.job-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.job-header {
    margin-bottom: 16px;
}

.job-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text-primary);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.tag svg {
    opacity: 0.7;
}

.job-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 24px;
}

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

.job-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.perk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.perk svg {
    color: var(--accent-green);
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.btn-apply svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-apply:hover svg {
    transform: translateX(4px);
}

/* Why Join Section */
.why-join {
    padding: 80px 0;
    background: var(--bg-darker);
}

.why-join h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

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

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

.benefit-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary-light);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

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

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

    .careers-hero h1 {
        font-size: 2rem;
    }

    .careers-hero p {
        font-size: 1rem;
    }

    .jobs-section {
        padding: 60px 0;
    }

    .section-label {
        text-align: center;
    }

    .job-card {
        padding: 28px;
    }

    .job-number {
        font-size: 2rem;
    }

    .job-title {
        font-size: 1.25rem;
    }

    .job-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .job-perks {
        justify-content: center;
    }

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

    .why-join {
        padding: 60px 0;
    }

    .why-join h2 {
        font-size: 1.5rem;
    }

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

    .benefit-card {
        padding: 24px;
    }
}

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

    .post-navigation .nav-links {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }

    .single-footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .team-avatar {
        margin: 0 auto;
    }

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

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

/* ============================================
   SERVICE PAGES (Link Building, AI Vetting, etc.)
   ============================================ */

.service-hero,
.about-hero,
.case-hero,
.contact-hero,
.blog-hero,
.guide-hero,
.tools-hero,
.api-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at top center, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                var(--bg-darker);
}

.service-hero .badge,
.about-hero .badge,
.case-hero .badge,
.contact-hero .badge,
.blog-hero .badge,
.guide-hero .badge,
.tools-hero .badge,
.api-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.service-hero h1,
.about-hero h1,
.case-hero h1,
.contact-hero h1,
.blog-hero h1,
.guide-hero h1,
.tools-hero h1,
.api-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.service-hero h1 span,
.about-hero h1 span,
.case-hero h1 span,
.contact-hero h1 span,
.blog-hero h1 span,
.guide-hero h1 span,
.tools-hero h1 span,
.api-hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero p,
.about-hero p,
.case-hero p,
.contact-hero p,
.blog-hero p,
.guide-hero p,
.tools-hero p,
.api-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Service Features */
.service-features,
.about-values,
.ai-stats,
.about-stats {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Feature/Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.value-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary-light);
}

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

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Process Steps */
.service-process {
    padding: 80px 0;
    background: var(--bg-darker);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.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: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Service CTA */
.service-cta,
.about-cta,
.case-cta,
.tools-cta {
    padding: 80px 0;
    background: var(--bg-dark);
}

.cta-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* About Page */
.about-story {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

/* Case Studies */
.case-studies-grid {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

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

.case-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.case-header {
    margin-bottom: 24px;
}

.case-industry {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.case-header h3 {
    font-size: 1.25rem;
}

.case-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.case-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-green);
}

.case-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.case-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.case-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-tags .tag {
    font-size: 0.75rem;
    padding: 4px 10px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

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

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form select,
.contact-form 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);
}

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

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

.btn-block {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.info-card a,
.info-card address,
.info-card span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: normal;
}

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

/* Blog Page */
.blog-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-medium);
}

.blog-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.blog-image {
    height: 180px;
    background: var(--bg-darker);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.blog-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.blog-body {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.blog-body h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
}

.blog-cta p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

/* Guide & API Docs Layout */
.guide-content,
.api-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.guide-layout,
.api-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.guide-nav,
.api-nav {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.guide-nav h4,
.api-nav h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.guide-nav ul,
.api-nav ul {
    list-style: none;
}

.guide-nav li,
.api-nav li {
    margin-bottom: 8px;
}

.guide-nav a,
.api-nav a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.guide-nav a:hover,
.api-nav a:hover {
    color: var(--primary);
}

.guide-section,
.api-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-section h2,
.api-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guide-section p,
.api-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.guide-section ul,
.guide-section ol,
.api-section ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.guide-section li,
.api-section li {
    margin-bottom: 8px;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.guide-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-card h4 {
    margin-bottom: 8px;
}

.guide-card p {
    font-size: 0.875rem;
    margin: 0;
}

.guide-cta-box,
.api-cta-box {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.1) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}

.guide-cta-box h3,
.api-cta-box h3 {
    margin-bottom: 12px;
}

.guide-cta-box p,
.api-cta-box p {
    margin-bottom: 24px;
}

/* API Specific */
.code-block {
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 16px 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
}

.code-block code {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    color: var(--primary-light);
}

.endpoint-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.endpoint-header .method {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.method.get {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.method.post {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.endpoint-header code {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.endpoint-card p {
    font-size: 0.875rem;
    margin: 0;
}

.api-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.api-table th,
.api-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.api-table th {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.api-table td {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* SEO Tools Page */
.tools-grid-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

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

.tool-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
}

.tool-icon {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-light);
}

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

.tool-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.tool-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tool-status {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
}

.tool-status.coming-soon {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

/* Responsive for new pages */
@media (max-width: 1024px) {
    .values-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .guide-layout,
    .api-layout {
        grid-template-columns: 1fr;
    }

    .guide-nav,
    .api-nav {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .service-hero,
    .about-hero,
    .case-hero,
    .contact-hero,
    .blog-hero,
    .guide-hero,
    .tools-hero,
    .api-hero {
        padding: 140px 24px 60px;
    }

    .service-hero h1,
    .about-hero h1,
    .case-hero h1,
    .contact-hero h1,
    .blog-hero h1,
    .guide-hero h1,
    .tools-hero h1,
    .api-hero h1 {
        font-size: 2rem;
    }

    .service-hero p,
    .about-hero p,
    .case-hero p,
    .contact-hero p,
    .blog-hero p,
    .guide-hero p,
    .tools-hero p,
    .api-hero p {
        font-size: 1rem;
    }

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

    .values-grid,
    .process-steps,
    .cases-grid,
    .blog-grid,
    .tools-grid,
    .guide-cards {
        grid-template-columns: 1fr;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms of Service)
   ============================================ */

.legal-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

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

    .legal-content {
        padding: 40px 0 60px;
    }

    .legal-section {
        margin-bottom: 36px;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}
