/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Tema copil pentru proiectul AAM Good Shopping
Author: Sergiu
Template: astra
Version: 1.0.1
*/

/* ============================================
   RESETARE CONFLICTE CU TEMA ASTRA (DOAR PE HOME)
   ============================================ */
/* Ascundem Header-ul, Footer-ul si Titlurile default Astra absolut */
body.home #masthead,
body.home .site-header,
body.home header.site-header,
body.home #colophon,
body.home .site-footer,
body.home footer.site-footer,
body.home .ast-post-title {
    display: none !important;
}

/* Anulam limitele de latime, padding-urile si background-ul impuse de Astra */
body.home .site,
body.home .site-content,
body.home .ast-container,
body.home #primary,
body.home #content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    background: #0a0e1a !important; /* var(--bg-primary) */
}

body.home .ast-container {
    display: block !important;
}

/* ============================================
   CSS VARIABLES & RESET 
   ============================================ */
:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1629;
    --bg-card: #141b2d;
    --bg-card-hover: #1a2340;
    --blue-deep: #1E3A8A;
    --blue-main: #3B82F6;
    --blue-light: #60A5FA;
    --blue-glow: rgba(59, 130, 246, 0.25);
    --green-accent: #10B981;
    --green-glow: rgba(16, 185, 129, 0.2);
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border-subtle: rgba(59, 130, 246, 0.12);
    --border-active: rgba(59, 130, 246, 0.35);
    --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #0f1629 40%, #131d3a 100%);
    --gradient-blue: linear-gradient(135deg, #1E3A8A, #3B82F6);
    --gradient-card: linear-gradient(160deg, rgba(59,130,246,0.06) 0%, transparent 50%);
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(59,130,246,0.15);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--blue-main) var(--bg-secondary);
}

/* Specificitate crescuta pentru a suprascrie Astra pe body */
body.home {
    font-family: var(--font-main) !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--blue-main);
    color: white;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--blue-deep); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-main); }

/* ============================================
   GLOBAL UTILITIES (Specificitate Maxima)
   ============================================ */
body.home .container {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
    width: 100% !important;
    display: block !important;
}

body.home .section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.home .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--blue-main);
}

body.home .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

body.home .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
}

body.home .gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Reveal animations */
body.home .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
body.home .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
body.home .reveal-delay-1 { transition-delay: 0.1s; }
body.home .reveal-delay-2 { transition-delay: 0.2s; }
body.home .reveal-delay-3 { transition-delay: 0.3s; }
body.home .reveal-delay-4 { transition-delay: 0.4s; }
body.home .reveal-delay-5 { transition-delay: 0.5s; }
body.home .reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   BACKGROUND EFFECTS (GRID + PARTICLES)
   ============================================ */
body.home .bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

body.home .bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
body.home .bg-orb--1 {
    width: 500px; height: 500px;
    background: rgba(59,130,246,0.07);
    top: -100px; right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}
body.home .bg-orb--2 {
    width: 400px; height: 400px;
    background: rgba(16,185,129,0.05);
    bottom: 20%; left: -150px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}
body.home .bg-orb--3 {
    width: 300px; height: 300px;
    background: rgba(59,130,246,0.05);
    top: 50%; right: 10%;
    animation: orbFloat 18s ease-in-out infinite 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================
   1. NAVIGATION
   ============================================ */
body.home .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

body.home .nav.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
}

body.home .nav__inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

body.home .nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

body.home .nav__logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    box-shadow: 0 0 20px rgba(59,130,246,0.3);
}

body.home .nav__logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

body.home .nav__logo-text span {
    color: var(--blue-light);
}

body.home .nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
}

body.home .nav__links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

body.home .nav__links a:hover {
    color: var(--text-primary);
    background: rgba(59,130,246,0.08);
}

body.home .nav__cta {
    background: var(--gradient-blue) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    box-shadow: 0 0 20px rgba(59,130,246,0.25);
    transition: all 0.3s ease !important;
}

body.home .nav__cta:hover {
    box-shadow: 0 0 30px rgba(59,130,246,0.4) !important;
    transform: translateY(-1px);
}

body.home .nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

body.home .nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

body.home .nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.home .nav__burger.active span:nth-child(2) { opacity: 0; }
body.home .nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   2. HERO SECTION
   ============================================ */
body.home .hero {
    position: relative;
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    padding: 120px 0 80px;
    z-index: 1;
    overflow: hidden;
}

body.home .hero__bg-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

body.home .hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

body.home .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 6px 18px 6px 8px;
    font-size: 0.82rem;
    color: var(--blue-light);
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease forwards;
}

body.home .hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

body.home .hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

body.home .hero__title-line {
    display: block;
}

body.home .hero__desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

body.home .hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

body.home .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

body.home .btn--primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}

body.home .btn--primary:hover {
    box-shadow: 0 8px 40px rgba(59,130,246,0.4);
    transform: translateY(-2px);
}

body.home .btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

body.home .btn--primary:hover::after {
    left: 100%;
}

body.home .btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-active);
}

body.home .btn--outline:hover {
    background: rgba(59,130,246,0.08);
    border-color: var(--blue-main);
    transform: translateY(-2px);
}

body.home .btn__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

body.home .btn:hover .btn__icon { transform: translateX(3px); }

body.home .hero__visual {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

body.home .hero__floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
}

body.home .hero__floating-card--1 { top: 60px; right: 80px; animation-delay: 0s; }
body.home .hero__floating-card--2 { top: 200px; right: 20px; animation-delay: 1.5s; }
body.home .hero__floating-card--3 { top: 340px; right: 100px; animation-delay: 3s; }

body.home .hero__floating-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

body.home .hero__floating-card .card-text { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }
body.home .hero__floating-card .card-value { font-size: 1.1rem; font-weight: 700; font-family: var(--font-mono); }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

body.home .circuit-line { stroke: rgba(59,130,246,0.1); stroke-width: 1; fill: none; }
body.home .circuit-dot { fill: var(--blue-main); opacity: 0; animation: circuit-pulse 4s ease-in-out infinite; }

@keyframes circuit-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

/* ============================================
   3. SERVICES SECTION
   ============================================ */
body.home .services { position: relative; z-index: 1; padding: 100px 0 120px; }
body.home .services__header { text-align: center; margin-bottom: 64px; }
body.home .services__header .section-subtitle { margin: 0 auto; }
body.home .services__grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 20px; }

body.home .service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

body.home .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.home .service-card:hover {
    border-color: var(--border-active);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

body.home .service-card:hover::before { opacity: 1; }

body.home .service-card__icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
    position: relative; transition: all 0.4s ease;
}

body.home .service-card:hover .service-card__icon { transform: scale(1.08); }

body.home .service-card__icon--diag { background: rgba(59,130,246,0.12); }
body.home .service-card__icon--cool { background: rgba(16,185,129,0.12); }
body.home .service-card__icon--mobo { background: rgba(239,68,68,0.12); }
body.home .service-card__icon--upg { background: rgba(168,85,247,0.12); }
body.home .service-card__icon--data { background: rgba(245,158,11,0.12); }
body.home .service-card__icon--perif { background: rgba(20,184,166,0.12); }
body.home .service-card__icon--b2b { background: rgba(59,130,246,0.12); }

body.home .service-card__title { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
body.home .service-card__desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
body.home .service-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
body.home .service-card__tag {
    font-family: var(--font-mono); font-size: 0.68rem;
    padding: 4px 10px; border-radius: 100px;
    background: rgba(59,130,246,0.08); color: var(--blue-light);
    border: 1px solid rgba(59,130,246,0.1); font-weight: 500;
}

body.home .service-card__arrow {
    position: absolute; bottom: 28px; right: 28px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(59,130,246,0.1);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateX(-10px); transition: all 0.4s ease;
}

body.home .service-card:hover .service-card__arrow { opacity: 1; transform: translateX(0); }

body.home .service-card--featured {
    grid-column: span 2;
    background: var(--gradient-card), var(--bg-card);
    display: grid !important; grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 36px;
}
body.home .service-card--featured .service-card__content { display: flex; flex-direction: column; justify-content: center; }
body.home .service-card--featured .service-card__visual { display: flex; align-items: center; justify-content: center; }

body.home .visual-terminal {
    background: rgba(0,0,0,0.3); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); padding: 20px; width: 100%;
    font-family: var(--font-mono); font-size: 0.78rem; line-height: 1.8;
}

body.home .terminal-line { color: var(--text-muted); }
body.home .terminal-line .cmd { color: var(--green-accent); }
body.home .terminal-line .path { color: var(--blue-light); }
body.home .terminal-line .ok { color: var(--green-accent); }
body.home .terminal-line .warn { color: #F59E0B; }
body.home .terminal-line .err { color: #EF4444; }

body.home .terminal-cursor {
    display: inline-block; width: 8px; height: 16px;
    background: var(--blue-main); animation: blink 1s step-end infinite;
    vertical-align: middle; margin-left: 4px;
}

/* ============================================
   4. VALUE PROPOSITION / WHY US
   ============================================ */
body.home .value { position: relative; z-index: 1; padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(59,130,246,0.02), transparent); }
body.home .value__grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
body.home .value__features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
body.home .value-feature { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-md); transition: all 0.3s ease; cursor: default; }
body.home .value-feature:hover { background: rgba(59,130,246,0.05); }
body.home .value-feature__icon {
    width: 44px; height: 44px; min-width: 44px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; background: rgba(59,130,246,0.1);
}
body.home .value-feature__text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
body.home .value-feature__text p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
body.home .value__metrics { display: grid !important; grid-template-columns: 1fr 1fr; gap: 20px; }

body.home .metric-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
    transition: all var(--transition-smooth); position: relative; overflow: hidden;
}
body.home .metric-card::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--gradient-blue); transition: width 0.5s ease;
}
body.home .metric-card:hover::after { width: 60%; }
body.home .metric-card:hover { border-color: var(--border-active); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
body.home .metric-card__number {
    font-size: 2.5rem; font-weight: 800; font-family: var(--font-mono);
    background: var(--gradient-blue); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 8px;
}
body.home .metric-card__label { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }

/* ============================================
   5. HOW IT WORKS (PROCESS)
   ============================================ */
body.home .process { position: relative; z-index: 1; padding: 100px 0 120px; }
body.home .process__header { text-align: center; margin-bottom: 64px; }
body.home .process__header .section-subtitle { margin: 0 auto; }
body.home .process__timeline { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
body.home .process__timeline::before {
    content: ''; position: absolute; top: 44px; left: 12.5%; right: 12.5%;
    height: 2px; background: linear-gradient(90deg, var(--border-subtle), var(--blue-main), var(--border-subtle)); z-index: 0;
}
body.home .process-step { text-align: center; position: relative; z-index: 1; }
body.home .process-step__number {
    width: 48px; height: 48px; border-radius: 50%; background: var(--bg-card);
    border: 2px solid var(--blue-main); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; font-family: var(--font-mono); font-weight: 700; font-size: 1rem;
    color: var(--blue-light); transition: all 0.4s ease; box-shadow: 0 0 20px rgba(59,130,246,0.15);
}
body.home .process-step:hover .process-step__number {
    background: var(--gradient-blue); color: white; transform: scale(1.1); box-shadow: 0 0 30px rgba(59,130,246,0.35);
}
body.home .process-step__icon { font-size: 2rem; margin-bottom: 16px; }
body.home .process-step__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
body.home .process-step__desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; max-width: 200px; margin: 0 auto; }

/* ============================================
   6. TESTIMONIALS / SOCIAL PROOF
   ============================================ */
body.home .trust { position: relative; z-index: 1; padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(59,130,246,0.02), transparent); }
body.home .trust__header { text-align: center; margin-bottom: 64px; }
body.home .trust__header .section-subtitle { margin: 0 auto; }
body.home .trust__grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.home .trust-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: 32px 28px; transition: all var(--transition-smooth); position: relative;
}
body.home .trust-card:hover { border-color: var(--border-active); transform: translateY(-4px); }
body.home .trust-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
body.home .trust-card__star { color: #F59E0B; font-size: 0.9rem; }
body.home .trust-card__text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
body.home .trust-card__author { display: flex; align-items: center; gap: 12px; }
body.home .trust-card__avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-blue);
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: white;
}
body.home .trust-card__name { font-weight: 600; font-size: 0.88rem; }
body.home .trust-card__role { font-size: 0.75rem; color: var(--text-muted); }
body.home .trust-card__quote-mark { position: absolute; top: 20px; right: 24px; font-size: 3rem; color: rgba(59,130,246,0.08); font-family: Georgia, serif; line-height: 1; }
body.home .trust__badges { display: flex; justify-content: center; align-items: center; gap: 48px; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border-subtle); flex-wrap: wrap; }
body.home .trust-badge { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
body.home .trust-badge__icon { font-size: 1.5rem; }

/* ============================================
   7. CTA / CONTACT SECTION
   ============================================ */
body.home .cta { position: relative; z-index: 1; padding: 100px 0 60px; }
body.home .cta__box {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl); padding: 80px 60px; text-align: center;
    position: relative; overflow: hidden;
}
body.home .cta__box::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(59,130,246,0.06) 0%, transparent 60%); pointer-events: none;
}
body.home .cta__box .section-title, body.home .cta__desc, body.home .cta__actions, body.home .cta__contact-row { position: relative; z-index: 1; }
body.home .cta__desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
body.home .cta__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
body.home .cta__contact-row { display: flex; justify-content: center; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
body.home .cta__contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.9rem; }
body.home .cta__contact-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; }

/* ============================================
   8. FOOTER
   ============================================ */
body.home .footer { position: relative; z-index: 1; padding: 48px 0 32px; border-top: 1px solid var(--border-subtle); background: var(--bg-primary); }
body.home .footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
body.home .footer__copy { font-size: 0.82rem; color: var(--text-muted); }
body.home .footer__links { display: flex; gap: 24px; }
body.home .footer__links a { font-size: 0.82rem; color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
body.home .footer__links a:hover { color: var(--blue-light); }
body.home .footer__location { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }

/* ============================================
   MARQUEE / TICKER
   ============================================ */
body.home .ticker { overflow: hidden; padding: 20px 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); margin: 0; position: relative; z-index: 1; background: var(--bg-primary); }
body.home .ticker__track { display: flex; gap: 48px; animation: ticker-scroll 30s linear infinite; width: max-content; }
body.home .ticker__item { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 12px; letter-spacing: 1px; text-transform: uppercase; }
body.home .ticker__item::before { content: '◆'; color: var(--blue-main); font-size: 0.5rem; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   FAQ
   ============================================ */
body.home .faq { background: var(--bg-primary); }
body.home .faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: var(--bg-card); cursor: pointer; transition: all 0.3s ease; }
body.home .faq-item:hover { border-color: var(--border-active); }
body.home .faq-item.active { border-color: var(--blue-main); }
body.home .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-weight: 600; font-size: 0.95rem; }
body.home .faq-toggle { font-size: 1.4rem; color: var(--blue-light); transition: transform 0.3s ease; font-weight: 300; min-width: 24px; text-align: center; }
body.home .faq-item.active .faq-toggle { transform: rotate(45deg); }
body.home .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
body.home .faq-item.active .faq-a { max-height: 300px; padding: 0 24px 20px; }
body.home .faq-a p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    body.home .hero__visual { display: none; }
    body.home .service-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
    body.home .service-card--featured .service-card__visual { display: none; }
    body.home .services__grid { grid-template-columns: repeat(2, 1fr); }
    body.home .value__grid { grid-template-columns: 1fr; gap: 48px; }
    body.home .process__timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    body.home .process__timeline::before { display: none; }
    body.home .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body.home .nav__links { 
        display: none !important; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(10,14,26,0.97); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    }
    body.home .nav__links.open { display: flex !important; }
    body.home .nav__links a { font-size: 1.2rem; padding: 12px 24px; }
    body.home .nav__burger { display: flex; }
    body.home .services__grid { grid-template-columns: 1fr; }
    body.home .trust__grid { grid-template-columns: 1fr; }
    body.home .process__timeline { grid-template-columns: 1fr; }
    body.home .value__metrics { grid-template-columns: 1fr 1fr; }
    body.home .cta__box { padding: 48px 24px; }
    body.home .cta__contact-row { flex-direction: column; align-items: center; gap: 16px; }
    body.home .trust__badges { gap: 24px; }
    body.home .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    body.home .hero__actions { flex-direction: column; width: 100%; }
    body.home .hero__actions .btn { width: 100%; justify-content: center; }
    body.home .value__metrics { grid-template-columns: 1fr; }
    body.home .metric-card { padding: 24px 20px; }
}

/* ============================================
   CURSOR FOLLOWER
   ============================================ */
body.home .cursor-glow {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.06), transparent 70%);
    pointer-events: none; z-index: 0; transition: transform 0.15s ease; will-change: transform;
}