/* ===============================================================
   IKHTHEIR'S DEVLAB — FUTURISTIC PREMIUM CSS (CYAN-GREEN SYSTEM)
   =============================================================== */

/* --- DESIGN TOKENS ------------------------------------------- */
:root {
    --bg-primary: #0C0F1A;
    --bg-secondary: #12172A;
    --bg-card: rgba(18, 23, 42, 0.65);
    --bg-card-hover: rgba(27, 42, 73, 0.8);
    --bg-glass: rgba(12, 15, 26, 0.55);
    --accent-1: #0DC7C7;
    --accent-2: #4DDFB1;
    --accent-3: #1B2A49;
    --accent-4: #0DC7C7;
    --accent-glow: rgba(13, 199, 199, 0.25);
    --accent-gradient: linear-gradient(135deg, #0DC7C7, #4DDFB1);
    --accent-gradient-2: linear-gradient(135deg, #0DC7C7, #1B2A49);
    --text-primary: #FFFFFF;
    --text-secondary: #AAB3C5;
    --text-muted: #6B7280;
    --border: rgba(13, 199, 199, 0.1);
    --border-hover: rgba(13, 199, 199, 0.4);
    --font-main: 'Rajdhani', 'Exo 2', system-ui, -apple-system, sans-serif;
    --font-heading: 'Orbitron', 'Exo 2', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s var(--ease);
    --glow-sm: 0 0 15px var(--accent-glow);
    --glow-md: 0 0 30px var(--accent-glow);
    --glow-lg: 0 0 50px var(--accent-glow), 0 0 80px rgba(13, 199, 199, 0.1);
}

/* --- RESET & BASE -------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; height: 100%; overflow-x: hidden; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    font-size: 16px;
    font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- ANIMATED CANVAS BACKGROUND ------------------------------ */
#animeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- CURSOR GLOW --------------------------------------------- */
#cursorGlow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 199, 199, 0.06) 0%, rgba(77, 223, 177, 0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* --- SAKURA PARTICLES ---------------------------------------- */
.sakura {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    animation: sakuraFall 8s linear forwards;
    opacity: 0.5;
}
@keyframes sakuraFall {
    0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0.5; }
    25% { transform: translateY(25vh) rotate(90deg) translateX(30px); opacity: 0.4; }
    50% { transform: translateY(50vh) rotate(180deg) translateX(-20px); opacity: 0.3; }
    75% { transform: translateY(75vh) rotate(270deg) translateX(25px); opacity: 0.15; }
    100% { transform: translateY(105vh) rotate(360deg) translateX(0); opacity: 0; }
}

/* --- UTILITIES ----------------------------------------------- */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section {
    padding: 100px 2rem;
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
}

/* --- BUTTONS ------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
    background: var(--accent-gradient);
    color: #0C0F1A;
    box-shadow: var(--glow-sm);
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(13, 199, 199, 0.4), 0 0 60px rgba(77, 223, 177, 0.15);
    filter: brightness(1.1);
}
.btn-primary.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-main);
    background: transparent;
    color: var(--accent-1);
    border: 1px solid var(--accent-1);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(13, 199, 199, 0.08);
    box-shadow: 0 0 20px rgba(13, 199, 199, 0.15), inset 0 0 20px rgba(13, 199, 199, 0.05);
    transform: translateY(-3px);
}

/* --- NAVIGATION ---------------------------------------------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 15, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 199, 199, 0.08);
    transition: var(--transition);
    padding: 0;
}
#navbar.scrolled {
    background: rgba(12, 15, 26, 0.92);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 30px rgba(13, 199, 199, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
}
.logo-icon { font-size: 1.4rem; }
.logo-text { font-size: 1rem; }
.logo-text .accent { color: var(--accent-1); }

.nav-links {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    list-style: none;
}
.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.45rem 0.8rem;
    border-radius: 8px;
    letter-spacing: 0.5px;
}
.nav-link:hover { color: #fff; background: rgba(13, 199, 199, 0.06); }
.nav-link.active { color: var(--accent-1); background: rgba(13, 199, 199, 0.1); }
.nav-link.cta-link {
    background: var(--accent-gradient);
    color: #0C0F1A;
    font-weight: 800;
    padding: 0.45rem 1.2rem;
}
.nav-link.cta-link:hover { box-shadow: var(--glow-sm); transform: translateY(-2px); }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- SECTION HEADERS ----------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-1);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.85;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    color: #FFFFFF;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 1.2rem;
    line-height: 1.7;
}
.section-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(13, 199, 199, 0.3);
}

/* --- HERO SECTION -------------------------------------------- */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 140px 2rem 80px;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(77, 223, 177, 0.06);
    border: 1px solid rgba(77, 223, 177, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 7vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #FFFFFF;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-1);
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 0.3rem;
}
.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(13, 199, 199, 0.15);
    align-self: center;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust { text-align: center; }
.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
}
.trust-badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.trust-badge {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(13, 199, 199, 0.04);
    border: 1px solid rgba(13, 199, 199, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(13, 199, 199, 0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(13, 199, 199, 0.5);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* --- ANIM-UP (Hero entrance) --------------------------------- */
.anim-up {
    opacity: 0;
    transform: translateY(40px);
    animation: animUp 0.8s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}
@keyframes animUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- SCROLL REVEAL ------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- MARQUEE SYSTEM (Services & Why Us) ---------------------- */
.marquee-viewport {
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 2rem 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeFlow 45s linear infinite;
    will-change: transform;
}
.marquee-track-reverse {
    animation-name: marqueeFlowReverse;
    animation-duration: 40s;
}
.marquee-viewport:hover .marquee-track,
.marquee-viewport.is-touched .marquee-track {
    animation-play-state: paused;
}
.marquee-card {
    flex: 0 0 340px;
    min-width: 340px;
    max-width: 340px;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s ease;
}
.marquee-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 0 30px rgba(13, 199, 199, 0.2), 0 0 60px rgba(13, 199, 199, 0.05);
    border-color: var(--border-hover);
    z-index: 5;
}

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

/* --- SERVICE CARDS ------------------------------------------- */
.service-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}
.service-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(13, 199, 199, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(13, 199, 199, 0.25));
}
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.service-list li {
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(13, 199, 199, 0.06);
    color: var(--text-secondary);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(13, 199, 199, 0.1);
}

/* --- VIRAL GROWTH SECTION ------------------------------------ */
.viral-growth-section {
    background: radial-gradient(circle at 10% 20%, rgba(13, 199, 199, 0.03) 0%, transparent 50%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.viral-growth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.viral-tagline { margin-bottom: 2.5rem; }
.viral-badge-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(77, 223, 177, 0.08);
    color: var(--accent-2);
    padding: 0.4rem 0.9rem;
    border-radius: 5px;
    border: 1px solid rgba(77, 223, 177, 0.2);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.viral-tagline h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    color: #FFFFFF;
}
.viral-tagline p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}
.viral-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}
.viral-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(18, 23, 42, 0.5);
    border: 1px solid var(--border);
    padding: 1.2rem;
    border-radius: 12px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.viral-feature:hover {
    border-color: var(--accent-1);
    background: rgba(13, 199, 199, 0.04);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(13, 199, 199, 0.08);
}
.v-icon { font-size: 1.5rem; flex-shrink: 0; }
.v-text h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.v-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.viral-cta-box {
    border-left: 3px solid var(--accent-1);
    padding-left: 1.5rem;
}
.viral-cta-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

/* Viral Growth Visual */
.viral-growth-visual { position: relative; }
.visual-img-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(13, 199, 199, 0.12);
    border: 1px solid rgba(13, 199, 199, 0.15);
    animation: imgFloat 6s ease-in-out infinite;
}
.visual-img-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), var(--accent-2), transparent);
    z-index: 2;
    animation: scanLine 4s linear infinite;
}
.visual-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(12, 15, 26, 0.4) 100%);
    z-index: 1;
}
.visual-img-container img {
    width: 100%;
    display: block;
    border-radius: 24px;
    filter: brightness(0.9) contrast(1.1);
    animation: imgSlowZoom 10s ease-in-out infinite;
}
.img-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: var(--accent-1);
    filter: blur(100px);
    opacity: 0.08;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes imgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes imgSlowZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
@keyframes scanLine {
    0% { top: -2%; }
    100% { top: 102%; }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.06; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.15); }
}

.viral-stat-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.viral-pill {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    backdrop-filter: blur(8px);
    color: var(--text-secondary);
}
.pill-icon { font-size: 1rem; }
.viral-pill:hover {
    border-color: var(--accent-1);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(13, 199, 199, 0.12);
    color: #FFFFFF;
}

/* --- WHY US CARDS -------------------------------------------- */
.why-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(13, 199, 199, 0.12);
}
.why-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
}
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.why-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* --- TESTIMONIAL BANNER -------------------------------------- */
.testimonial-banner {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-inner {
    background: rgba(18, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.testimonial-quote {
    font-size: 4rem;
    color: var(--accent-1);
    opacity: 0.25;
    font-family: serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-stars {
    color: var(--accent-2);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(77, 223, 177, 0.3);
}
.testimonial-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- PRICING SECTION ----------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
}
.pricing-card {
    background: rgba(18, 23, 42, 0.55);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(13, 199, 199, 0.1);
}
.pricing-featured {
    border-color: var(--accent-1) !important;
    box-shadow: 0 0 20px rgba(13, 199, 199, 0.1);
    transform: scale(1.02);
    background: rgba(13, 199, 199, 0.03);
}
.pricing-featured:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 0 40px rgba(13, 199, 199, 0.15);
}
.pricing-badge {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--accent-gradient);
    color: #0C0F1A;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 0.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.pricing-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.pricing-featured .pricing-header { padding-top: 3rem; }
.pricing-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #FFFFFF;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}
.pricing-price .currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-1);
}
.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pricing-price .amount-dash {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 0 0.3rem;
}
.pricing-price .amount-end {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.pricing-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.2rem;
}
.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.pricing-features {
    list-style: none;
    padding: 2rem;
    flex: 1;
}
.pricing-features li {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.4;
}
.pricing-features .check {
    color: var(--accent-2);
    font-weight: 700;
    flex-shrink: 0;
    text-shadow: 0 0 5px rgba(77, 223, 177, 0.4);
}
.pricing-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    margin: 0 2rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.btn-primary-pricing {
    background: var(--accent-gradient);
    color: #0C0F1A;
    border: none;
    box-shadow: var(--glow-sm);
}
.btn-primary-pricing:hover {
    box-shadow: 0 0 25px rgba(13, 199, 199, 0.35);
    transform: translateY(-2px);
    filter: brightness(1.1);
}
.btn-outline-pricing {
    background: transparent;
    color: var(--accent-1);
    border: 1px solid var(--accent-1);
}
.btn-outline-pricing:hover {
    background: rgba(13, 199, 199, 0.08);
    box-shadow: 0 0 20px rgba(13, 199, 199, 0.12);
}
.pricing-cta-alt {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.5rem 2rem 1.5rem;
    text-decoration: none;
}
.pricing-cta-alt:hover { color: var(--text-secondary); }

.pricing-guarantee {
    margin-top: 2rem;
}
.guarantee-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(18, 23, 42, 0.55);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}
.guarantee-icon { font-size: 2.5rem; flex-shrink: 0; }
.guarantee-inner h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.guarantee-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2rem;
}
.inline-link {
    color: var(--accent-1);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}
.inline-link:hover { color: var(--accent-2); }

/* --- PRICING HEADER VARIANTS --------------------------------- */
.pricing-header-starter { background: linear-gradient(180deg, rgba(77, 223, 177, 0.06) 0%, transparent 100%); }
.pricing-header-pro { background: linear-gradient(180deg, rgba(13, 199, 199, 0.08) 0%, transparent 100%); }
.pricing-header-ent { background: linear-gradient(180deg, rgba(27, 42, 73, 0.3) 0%, transparent 100%); }
.pricing-header-elite { 
    background: linear-gradient(180deg, rgba(13, 199, 199, 0.12) 0%, rgba(77, 223, 177, 0.05) 100%);
    position: relative;
}
.pricing-header-elite::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: var(--accent-gradient);
    opacity: 0.3;
}

/* Elite Specific Card Glow */
.pricing-card[data-plan="Elite"] {
    border-color: var(--accent-1) !important;
    box-shadow: 0 0 40px rgba(13, 199, 199, 0.15);
}
.pricing-card[data-plan="Elite"]:hover {
    box-shadow: 0 0 60px rgba(13, 199, 199, 0.25), 0 0 100px rgba(77, 223, 177, 0.1);
}

/* --- SEO SECTION --------------------------------------------- */
.seo-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: radial-gradient(circle at 80% 50%, rgba(13, 199, 199, 0.03) 0%, transparent 50%);
}
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.seo-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.seo-feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(13, 199, 199, 0.08);
}
.seo-feature-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    display: block;
}
.seo-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.seo-detail { margin-bottom: 1rem; }
.seo-detail label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.3rem;
}
.seo-detail p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.seo-pricing-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.seo-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.seo-pricing-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.seo-pricing-bundle { border-color: rgba(13, 199, 199, 0.2); background: rgba(13, 199, 199, 0.03); }
.seo-pricing-info h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.seo-pricing-info p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}
.bundle-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    background: var(--accent-gradient);
    color: #0C0F1A;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.strategist-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.strategist-info { flex: 1; }
.strategist-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}
.strategist-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.custom-service-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- PROCESS SECTION ----------------------------------------- */
.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    opacity: 0.25;
}
.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    width: 58px;
    height: 58px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-1);
    z-index: 1;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(13, 199, 199, 0.12);
}
.step-content {
    flex: 1;
    padding-top: 0.5rem;
}
.step-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.process-cta { text-align: center; margin-top: 2rem; }

/* --- SECURITY SECTION ---------------------------------------- */
.security-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}
.security-visual { text-align: center; }
.shield-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}
.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(13, 199, 199, 0.15);
}
.shield-ring-1 { inset: 0; animation: shieldPulse 4s ease-in-out infinite; }
.shield-ring-2 { inset: 20px; animation: shieldPulse 4s ease-in-out infinite 0.5s; border-color: rgba(77, 223, 177, 0.15); }
.shield-ring-3 { inset: 40px; animation: shieldPulse 4s ease-in-out infinite 1s; }
.shield-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    filter: drop-shadow(0 0 20px rgba(13, 199, 199, 0.3));
}
@keyframes shieldPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.security-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.sec-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.sec-feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(13, 199, 199, 0.08);
}
.sec-icon { font-size: 1.5rem; flex-shrink: 0; }
.sec-feature h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.sec-feature p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cert-banner { margin-top: 3rem; }
.cert-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(13, 199, 199, 0.05) 0%, rgba(77, 223, 177, 0.03) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}
.cert-banner-icon { font-size: 2.5rem; flex-shrink: 0; }
.cert-banner-inner h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.cert-banner-inner p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- ABOUT SECTION ------------------------------------------- */
.about-wrapper { max-width: 1100px; margin: 0 auto; }
.about-top-tier {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}
.about-mid-tier {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Remote Experts Banner */
.remote-experts-banner {
    margin-bottom: 2rem;
}
.banner-inner {
    background: rgba(18, 23, 42, 0.45);
    border: 1px solid rgba(13, 199, 199, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-align: left;
}
.banner-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(13, 199, 199, 0.05), transparent 60%);
    pointer-events: none;
}
.banner-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(13, 199, 199, 0.3));
}
.banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.banner-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
}

@media (max-width: 768px) {
    .banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .banner-icon { font-size: 2.5rem; }
}
.about-card {
    background: rgba(18, 23, 42, 0.55);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.about-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(13, 199, 199, 0.08);
}
.about-card-featured {
    border-color: var(--accent-1) !important;
    box-shadow: 0 0 20px rgba(13, 199, 199, 0.08);
    background: rgba(13, 199, 199, 0.03);
}
.about-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-1);
    box-shadow: 0 0 15px rgba(13, 199, 199, 0.15);
}
.avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--accent-1);
    border-right-color: var(--accent-2);
    animation: avatarSpin 3s linear infinite;
}
@keyframes avatarSpin {
    to { transform: rotate(360deg); }
}
.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.about-role {
    font-size: 0.8rem;
    color: var(--accent-1);
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.about-role-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.about-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.about-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.about-link {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(13, 199, 199, 0.04);
    transition: var(--transition);
    text-decoration: none;
}
.about-link:hover {
    border-color: var(--accent-1);
    background: rgba(13, 199, 199, 0.1);
    box-shadow: 0 0 10px rgba(13, 199, 199, 0.1);
}
.about-link-wa { border-color: rgba(77, 223, 177, 0.2); }
.about-link-wa:hover { border-color: var(--accent-2); background: rgba(77, 223, 177, 0.08); }

/* --- FAQ SECTION --------------------------------------------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(18, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.faq-item:hover { border-color: rgba(13, 199, 199, 0.2); }
.faq-item.active { border-color: var(--accent-1); box-shadow: 0 0 15px rgba(13, 199, 199, 0.06); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent-1); }
.faq-toggle {
    font-size: 1.3rem;
    color: var(--accent-1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-weight: 400;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- CONTACT SECTION ----------------------------------------- */
.contact-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.channel-card {
    background: rgba(18, 23, 42, 0.55);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.channel-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(13, 199, 199, 0.08);
}
.channel-wa:hover { border-color: rgba(77, 223, 177, 0.4); box-shadow: 0 0 30px rgba(77, 223, 177, 0.1); }
.channel-icon { font-size: 2rem; margin-bottom: 1rem; }
.channel-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.channel-id {
    color: var(--accent-1);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.channel-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.channel-cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-1);
    letter-spacing: 0.5px;
}

/* Contact Form */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}
.form-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(18, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
    backdrop-filter: blur(5px);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 15px rgba(13, 199, 199, 0.08), inset 0 0 15px rgba(13, 199, 199, 0.02);
    outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-primary); color: var(--text-primary); }

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-main);
    background: var(--accent-gradient);
    color: #0C0F1A;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--glow-sm);
    letter-spacing: 0.5px;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(13, 199, 199, 0.35), 0 0 60px rgba(13, 199, 199, 0.1);
    filter: brightness(1.1);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(77, 223, 177, 0.08);
    border: 1px solid rgba(77, 223, 177, 0.25);
    color: var(--accent-2);
}
.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

/* --- FOOTER -------------------------------------------------- */
#footer {
    padding: 60px 2rem 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}
.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 500;
}
.footer-links a:hover { color: var(--accent-1); }
.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-contact a {
    color: var(--accent-1);
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--accent-2); }
.footer-sep { color: var(--text-muted); }
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.footer-secured {
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* --- WHATSAPP FLOAT ------------------------------------------ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50px;
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}
.wa-icon { font-size: 1.2rem; }
.wa-label { font-size: 0.85rem; }

/* --- RESPONSIVE ---------------------------------------------- */
@media (max-width: 1100px) {
    .viral-growth-container { grid-template-columns: 1fr; gap: 3rem; }
    .visual-img-container { max-width: 550px; margin: 0 auto; }
    .security-showcase { grid-template-columns: 1fr; gap: 3rem; }
    .shield-container { margin-bottom: 2rem; }
    .about-top-tier { grid-template-columns: 1fr; }
    .about-mid-tier { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .nav-links { 
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(12, 15, 26, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        z-index: 1000;
    }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 1.1rem; padding: 0.8rem 1.5rem; }
    .nav-toggle { display: flex; }
    
    .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
    .hero-stats { gap: 1.5rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-left: auto; margin-right: auto; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-8px); }
    
    .seo-pricing-box { grid-template-columns: 1fr; }
    .security-features { grid-template-columns: 1fr; }
    .viral-feature-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    
    .marquee-card { flex: 0 0 300px; min-width: 300px; max-width: 300px; }
    
    .about-top-tier { grid-template-columns: 1fr; }
    .about-mid-tier { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .section { padding: 70px 1.2rem; }
    .marquee-card { flex: 0 0 280px; min-width: 280px; max-width: 280px; }
    .viral-stat-pills { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 1rem; }
    .hero-stat-divider { display: none; }
    .guarantee-inner { flex-direction: column; text-align: center; }
    .strategist-badge { flex-direction: column; text-align: center; }
    .cert-banner-inner { flex-direction: column; text-align: center; }
    .contact-channels { grid-template-columns: 1fr; }
    .process-timeline::before { left: 28px; }
    .whatsapp-float { padding: 0.7rem 1.2rem; }
    .wa-label { display: none; }
}
