/*
Theme Name: Tresify Lab
Theme URI: https://tresifylab.com
Author: Tresify Lab
Author URI: https://tresifylab.com
Description: High-performance WordPress & SEO agency theme with dark aesthetic and glassmorphism design
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tresify-lab
Tags: dark, custom-logo, custom-menu, featured-images, threaded-comments
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #030712;
    --bg-dark-2: #060d1f;
    --foreground: #f0f6ff;
    --primary: #0077ff;
    --secondary: #00e5ff;
    --muted-foreground: #7a94b8;
    --border: rgba(0, 119, 255, 0.18);
    --border-glow: rgba(0, 229, 255, 0.35);
    --card-bg: rgba(8, 18, 40, 0.7);
    --glow-blue: 0 0 24px rgba(0, 119, 255, 0.45);
    --glow-cyan: 0 0 28px rgba(0, 229, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(90deg, #0077ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(0, 119, 255, 0.5);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-glow:hover {
    box-shadow: 0 0 36px rgba(0, 200, 255, 0.75), 0 0 60px rgba(0, 119, 255, 0.4);
    transform: translateY(-2px) scale(1.03);
}

.btn-pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 18px rgba(0, 229, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 229, 255, 0.85), 0 0 70px rgba(0, 119, 255, 0.45); }
}

.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.5), rgba(0, 229, 255, 0.5), transparent);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(0, 119, 255, 0.15);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0077ff, #00e5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 0 14px rgba(0, 119, 255, 0.5);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.main-navigation ul {
    display: flex;
    gap: 32px;
}

.main-navigation a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--secondary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn-pricing {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.header-cta .btn-pricing:hover {
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 119, 255, 0.15);
}

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

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 8px 0;
}

.mobile-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .main-navigation, .header-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: var(--bg-dark);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(0, 119, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 60% 40%, rgba(0, 119, 255, 0.06) 0%, transparent 50%);
}

.hero-bg .orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orb-1 {
    width: 320px;
    height: 320px;
    top: 80px;
    left: 25%;
    background: radial-gradient(circle, rgba(0,119,255,0.14) 0%, transparent 70%);
    filter: blur(32px);
    animation: float 7s ease-in-out infinite;
}

.orb-2 {
    width: 384px;
    height: 384px;
    bottom: 128px;
    right: 25%;
    background: radial-gradient(circle, rgba(0,229,255,0.10) 0%, transparent 70%);
    filter: blur(40px);
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.04); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 119, 255, 0.1);
    border: 1px solid rgba(0, 119, 255, 0.3);
    color: var(--secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 6px var(--secondary);
}

.hero-section h1 {
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--muted-foreground);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.seo-audit-form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 12px;
    padding: 6px;
    background: rgba(8, 18, 48, 0.7);
    border: 1px solid rgba(0, 119, 255, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 28px rgba(0, 119, 255, 0.1);
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 16px;
}

.input-wrapper svg {
    color: var(--muted-foreground);
    flex-shrink: 0;
}

.seo-audit-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--foreground);
    padding: 10px 0;
}

.seo-audit-form input::placeholder {
    color: var(--muted-foreground);
    opacity: 0.5;
}

.form-note {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 64px;
}

.trusted-logos span {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--muted-foreground);
}

.stats-bar {
    width: 100%;
    max-width: 896px;
    margin: 0 auto;
}

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

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

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #0077ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
}

.scroll-cue span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

.scroll-cue svg {
    color: var(--muted-foreground);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-audit-form {
        flex-direction: column;
        padding: 12px;
    }
    .input-wrapper {
        width: 100%;
    }
    .seo-audit-form .btn-glow {
        width: 100%;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 112px 24px;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 119, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1152px;
    margin: 0 auto;
}

.bento-card {
    background: rgba(8, 18, 48, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.bento-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 0 12px rgba(0, 119, 255, 0.35);
    transform: scale(1.02);
}

.bento-large {
    grid-column: span 2;
}

.bento-accent {
    background: rgba(0, 119, 255, 0.1);
    border-color: rgba(0, 119, 255, 0.35);
}

.bento-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 119, 255, 0.08);
}

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

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 4px;
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.bento-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.service-tags span {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(0, 119, 255, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(0, 119, 255, 0.2);
}

.vitals-score {
    margin-top: 8px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.score-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(90deg, #0077ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.score-label {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

.feature-list {
    margin-top: 8px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted-foreground);
    padding: 4px 0;
}

.feature-list .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.metric {
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #0077ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

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

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-large {
        grid-column: span 1;
    }
    .bento-cta {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* Pricing Section */
.pricing-section {
    position: relative;
    padding: 112px 24px;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    padding: 8px;
    background: rgba(8, 18, 48, 0.7);
    border: 1px solid rgba(0, 119, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.25s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 119, 255, 0.45);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1056px;
    margin: 0 auto;
}

.pricing-grid.hidden {
    display: none;
}

.pricing-card {
    position: relative;
    background: rgba(8, 18, 48, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 119, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.025);
    box-shadow: 0 0 28px rgba(0, 119, 255, 0.18);
    border-color: rgba(0, 119, 255, 0.35);
}

.pricing-card.popular {
    background: rgba(0, 119, 255, 0.12);
    border-color: rgba(0, 119, 255, 0.5);
    box-shadow: 0 0 40px rgba(0, 119, 255, 0.18);
}

.pricing-card.popular:hover {
    box-shadow: 0 0 60px rgba(0, 119, 255, 0.35);
    border-color: rgba(0, 229, 255, 0.6);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0077ff, #00e5ff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card.popular::before {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 229, 255, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.plan-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.plan-header p {
    font-size: 12px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 24px 0;
}

.price-value {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}

.price-period {
    font-size: 14px;
    color: var(--muted-foreground);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.plan-features svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cta {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 32px;
    background: rgba(0, 119, 255, 0.1);
    border: 1px solid rgba(0, 119, 255, 0.3);
    color: #60a5fa;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.plan-cta:hover {
    background: rgba(0, 119, 255, 0.2);
    border-color: rgba(0, 119, 255, 0.5);
}

.pricing-card.popular .plan-cta {
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    border: none;
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 119, 255, 0.5);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--muted-foreground);
}

.pricing-note a {
    color: var(--secondary);
    text-decoration: underline;
}

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

/* Final CTA */
.final-cta {
    position: relative;
    padding: 128px 24px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 119, 255, 0.13) 0%, transparent 65%);
    pointer-events: none;
}

.cta-box {
    position: relative;
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
    padding: 64px;
    background: rgba(8, 18, 48, 0.65);
    border: 1px solid rgba(0, 119, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(0, 119, 255, 0.12);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0077ff, #00e5ff, transparent);
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--secondary);
    margin-bottom: 24px;
}

.cta-box h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: var(--muted-foreground);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 40px;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--foreground);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted-foreground);
}

.trust-badges svg {
    color: var(--secondary);
}

@media (max-width: 640px) {
    .cta-box {
        padding: 40px 24px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
}

/* Footer */
.site-footer {
    padding: 64px 24px 32px;
    border-top: 1px solid rgba(0, 119, 255, 0.12);
}

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

.footer-brand .logo-link {
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: 220px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted-foreground);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(0, 119, 255, 0.12);
    border-color: rgba(0, 119, 255, 0.35);
    color: #60a5fa;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 12px;
    color: var(--muted-foreground);
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}