/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Astra Child Theme for Webzy Landing Page
Author: Webzy
Author URI: https://webzy.agency/
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/
/* ==========================================
   Webzy Premium Landing Page - CSS Stylesheet
   ========================================== */

/* 1. DESIGN SYSTEM & CSS VARIABLES */
:root {
    /* Color Palette */
    --primary: #6C63FF;
    --primary-rgb: 108, 99, 255;
    --secondary: #8B5CF6;
    --secondary-rgb: 139, 92, 246;
    --accent: #00D4FF;
    --accent-rgb: 0, 212, 255;
    --background: #0B1020;
    --background-rgb: 11, 16, 32;
    --card-bg: rgba(17, 24, 39, 0.65);
    --card-bg-solid: #111827;
    --card-border: rgba(255, 255, 255, 0.08);
    --card-border-hover: rgba(108, 99, 255, 0.4);
    --text: #FFFFFF;
    --text-muted: #94A3B8;

    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-title: 'Poppins', sans-serif;

    /* Transitions & Scaling */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* 2. BASE RESET & INITIALIZATION */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial; /* Managed by Lenis */
    font-size: 16px;
    background-color: var(--background) !important;
    overflow-x: hidden;
    width: 100%;
}

body, body.ast-plain-container, .ast-plain-container, #page, .site {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--background) !important;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

#smooth-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--background);
}
::-webkit-scrollbar-thumb {
    background: rgba(108, 99, 255, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 99, 255, 0.6);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    color: inherit;
    outline: none;
}

/* 3. LAYOUT UTILITIES */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

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

.w-full {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* 4. BACKGROUND EFFECTS & GLOBALS */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.22;
    mix-blend-mode: screen;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(108,99,255,1) 0%, rgba(139,92,246,0) 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(0,212,255,1) 0%, rgba(108,99,255,0) 70%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, rgba(139,92,246,1) 0%, rgba(0,212,255,0) 70%);
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate(8%, 10%) scale(1.15) rotate(360deg);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(108, 99, 255, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(108, 99, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
}

.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
    top: -300px;
    left: -300px;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    opacity: 0;
    transition: opacity 0.5s ease;
}

body:hover .mouse-glow {
    opacity: 1;
}

/* 5. TYPOGRAPHY & HEADINGS */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}

.text-reveal {
    opacity: 0;
    transform: translateY(20px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.15);
    margin-bottom: 1.5rem;
}

.badge-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* 6. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    pointer-events: none;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 99, 255, 0.5), 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-outline {
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
    transform: translateY(-2px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px) saturate(180%);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

.btn-icon-only {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 8px;
}

/* 7. GLASSMORPHISM BASE */
.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* 8. MAIN HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(11, 16, 32, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-symbol {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.4);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.mobile-nav-cta {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* 9. HERO SECTION */
.hero-section {
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--background);
    margin-left: -12px;
    overflow: hidden;
}

.trust-avatars .avatar:first-child {
    margin-left: 0;
}

.trust-avatars img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.stars-row {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.25rem;
}

.star-filled {
    width: 14px;
    height: 14px;
    fill: #FFAD0F;
    stroke: #FFAD0F;
}

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

/* Hero Showcase Animation Cards */
.hero-showcase {
    position: relative;
    height: 550px;
    width: 100%;
    perspective: 1000px;
}

.showcase-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Floating Card Common Properties */
.floating-card {
    position: absolute;
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 5;
    transform-style: preserve-3d;
    transition: box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.floating-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
}

/* 1. Shopify Dashboard Mockup */
.shopify-dashboard {
    top: 5%;
    left: 0%;
    width: 310px;
    padding: 1.25rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.card-header.no-border {
    border: none;
    margin-bottom: 0.5rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.shopify-green {
    background: rgba(150, 191, 72, 0.15);
    color: #96bf48;
}

.card-tag {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.trend-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.trend-badge.positive {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
}

.sales-value {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.mini-chart {
    width: 100%;
    margin-bottom: 1rem;
}

.chart-svg {
    width: 100%;
    height: 60px;
    overflow: visible;
}

.ping-animation {
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.75rem;
}

.footer-stat {
    display: flex;
    flex-direction: column;
}

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

.stat-val {
    font-size: 0.8125rem;
    font-weight: 600;
}

/* 2. Mobile App Mockup Frame */
.mobile-screen-mockup {
    top: 15%;
    right: 5%;
    width: 230px;
    height: 440px;
    border-radius: 36px;
    border: 6px solid #1f2937;
    background: #0f172a;
    overflow: hidden;
    padding: 0.75rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 16px;
    background: #1f2937;
    border-radius: 0 0 10px 10px;
    z-index: 100;
}

.phone-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 0.75rem;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.phone-title {
    font-weight: 600;
    color: var(--text);
}

.wallet-balance-card {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-radius: 12px;
    padding: 0.875rem;
    margin-bottom: 1rem;
}

.balance-label {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.7);
}

.balance-amount {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.wallet-addresses {
    display: flex;
    gap: 0.5rem;
}

.currency-badge {
    font-size: 0.625rem;
    background: rgba(255,255,255,0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.phone-transactions {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-subtitle {
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.tx-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tx-icon-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tx-in { background: rgba(0, 212, 255, 0.1); color: var(--accent); }
.tx-out { background: rgba(139, 92, 246, 0.1); color: var(--secondary); }

.tx-icon-wrapper svg { width: 12px; height: 12px; }

.tx-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tx-name { font-size: 0.6875rem; font-weight: 600; }
.tx-time { font-size: 0.5625rem; color: var(--text-muted); }

.tx-amount { font-size: 0.6875rem; font-weight: 600; }

.phone-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.phone-nav-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    cursor: pointer;
}

.phone-nav-icon.active {
    color: var(--accent);
}

.phone-nav-center {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}
.phone-nav-center svg { width: 14px; height: 14px; }

/* 3. Web App Task Mockup Card */
.web-app-ui {
    bottom: 5%;
    left: 10%;
    width: 280px;
    padding: 1.25rem;
}

.panel-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.muted-icon {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.project-tasks-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.task-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.task-info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.task-title {
    font-size: 0.8125rem;
    font-weight: 500;
}

.task-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.task-meta svg {
    width: 10px;
    height: 10px;
}

.meta-tag {
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-weight: 600;
}

.tag-purple { background: rgba(108, 99, 255, 0.15); color: var(--primary); }
.tag-cyan { background: rgba(0, 212, 255, 0.15); color: var(--accent); }
.tag-muted { background: rgba(255,255,255,0.08); color: var(--text-muted); }

.task-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.task-checkbox.checked {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--background);
}
.task-checkbox.checked svg {
    width: 12px;
    height: 12px;
    stroke-width: 3;
}

.play-icon {
    width: 10px;
    height: 10px;
    fill: var(--accent);
    stroke: var(--accent);
}

/* Decorative blobs & icons */
.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    z-index: 1;
}

.f-blob-1 {
    top: 15%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: var(--primary);
}

.f-blob-2 {
    bottom: 20%;
    right: 20%;
    width: 140px;
    height: 140px;
    background: var(--accent);
}

.floating-element {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 6;
}

.floating-element svg {
    width: 18px;
    height: 18px;
}

.f-element-1 { top: 0%; right: 40%; color: var(--primary); }
.f-element-2 { top: 50%; left: -5%; color: var(--secondary); }
.f-element-3 { bottom: 25%; right: 0%; color: var(--accent); }

/* Animation floating states */
.shopify-dashboard { animation: floatCard1 6s infinite ease-in-out; }
.mobile-screen-mockup { animation: floatCard2 8s infinite ease-in-out; }
.web-app-ui { animation: floatCard3 7s infinite ease-in-out; }

.f-element-1 { animation: floatIcon1 5s infinite ease-in-out; }
.f-element-2 { animation: floatIcon2 6s infinite ease-in-out; }
.f-element-3 { animation: floatIcon3 5.5s infinite ease-in-out; }

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0px) rotateX(10deg) rotateY(-15deg); }
    50% { transform: translateY(-12px) rotateX(12deg) rotateY(-13deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0px) rotateX(8deg) rotateY(15deg); }
    50% { transform: translateY(-16px) rotateX(6deg) rotateY(17deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0px) rotateX(12deg) rotateY(-10deg); }
    50% { transform: translateY(-14px) rotateX(10deg) rotateY(-12deg); }
}

@keyframes floatIcon1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(15deg); }
}

@keyframes floatIcon2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(10px) scale(1.05); }
}

@keyframes floatIcon3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-20deg); }
}

/* 10. SERVICES SECTION */
.services-section {
    background-color: rgba(11, 16, 32, 0.5);
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px) saturate(180%);
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
}

.card-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    pointer-events: none;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.15);
}

.service-card:hover .card-glow-border {
    border-color: var(--primary);
    box-shadow: inset 0 0 12px rgba(108, 99, 255, 0.15);
}

.card-content {
    padding: 2.25rem;
    position: relative;
    z-index: 3;
}

.service-icon-wrapper {
    width: 52px;
    height: 52px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.6s ease-in-out;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: var(--text);
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
}

.service-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text);
}

.bullet-check {
    width: 14px;
    height: 14px;
    color: var(--accent);
    stroke-width: 3;
}

/* 11. WHY CHOOSE WEBZY (Stats + Checklist) */
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-bullet {
    display: flex;
    gap: 1rem;
}

.bullet-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.bullet-icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.feature-bullet h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-bullet p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.stats-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stats-card {
    position: relative;
    background: rgba(17, 24, 39, 0.55);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    top: -75px;
    left: -75px;
    opacity: 0.15;
    transition: var(--transition-smooth);
}

.stats-card[data-color="purple"] .stat-glow { background: var(--primary); }
.stats-card[data-color="cyan"] .stat-glow { background: var(--accent); }
.stats-card[data-color="blue"] .stat-glow { background: #3b82f6; }
.stats-card[data-color="violet"] .stat-glow { background: var(--secondary); }

.stats-card:hover {
    transform: scale(1.03);
    border-color: rgba(255,255,255,0.15);
}

.stats-card:hover .stat-glow {
    opacity: 0.3;
}

.stat-number-wrapper {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-title);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-num {
    background: linear-gradient(135deg, var(--text) 0%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card[data-color="purple"] .stat-num {
    background: linear-gradient(135deg, #a78bfa 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card[data-color="cyan"] .stat-num {
    background: linear-gradient(135deg, #67e8f9 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card[data-color="blue"] .stat-num {
    background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card[data-color="violet"] .stat-num {
    background: linear-gradient(135deg, #c084fc 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* 12. PORTFOLIO SHOWCASE */
.portfolio-section {
    background-color: rgba(11, 16, 32, 0.2);
}

.portfolio-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--card-border);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--text);
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.15);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    transition: height 0.5s ease;
}

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px) saturate(180%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.project-img-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 32, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .project-overlay {
    opacity: 1;
}

.view-project-link {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
    transform: scale(0.8) translateY(10px);
    transition: var(--transition-smooth);
}

.portfolio-card:hover .view-project-link {
    transform: scale(1) translateY(0);
}

.view-project-link svg {
    width: 20px;
    height: 20px;
}

.project-info {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* Filtering animation states */
.portfolio-card {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-card.show-item {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.portfolio-card.hide-item {
    display: none;
}

/* 13. PROCESS SECTION (TIMELINE) */
.process-section {
    background-color: rgba(11, 16, 32, 0.4);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 40px;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    z-index: 1;
}

.timeline-progress-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    border-radius: 2px;
    transition: height 0.1s ease-out;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 3rem;
    margin-bottom: 4.5rem;
    z-index: 5;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111827;
    border: 2px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-title);
    color: var(--text-muted);
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
    margin-left: 18px;
    z-index: 10;
    transition: var(--transition-smooth);
}

.timeline-step.active .timeline-dot {
    background: var(--background);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.35);
}

.timeline-content-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    padding: 2.25rem;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.timeline-step.active .timeline-content-card {
    border-color: rgba(108, 99, 255, 0.25);
    background: rgba(17, 24, 39, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.step-meta {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* 14. TECHNOLOGIES (Marquee) */
.tech-section {
    padding-bottom: 6rem;
    overflow: hidden;
}

.tech-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tech-header-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
}

.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(8px);
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.marquee-item:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.05);
    transform: translateY(-2px);
}

.tech-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

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

/* 15. TESTIMONIALS (Carousel) */
.testimonials-section {
    background-color: rgba(11, 16, 32, 0.2);
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 2rem auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card-slide {
    min-width: 100%;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0.3;
    transform: scale(0.95);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card-slide.active {
    opacity: 1;
    transform: scale(1);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
    fill: #FFAD0F;
    stroke: #FFAD0F;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text);
    margin-bottom: 2.25rem;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.client-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

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

.client-meta h4 {
    font-size: 1rem;
    font-weight: 700;
}

.client-meta span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonials-dots .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* 16. CONTACT SECTION (Form) */
.contact-container-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-quick-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.quick-detail-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.quick-detail-item h5 {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-link, .detail-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.detail-link:hover {
    color: var(--accent);
}

.contact-form-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 3rem;
    overflow: hidden;
}

.form-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    background: var(--secondary);
    bottom: -125px;
    right: -125px;
    opacity: 0.1;
    pointer-events: none;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Floating Label Inputs */
.input-group {
    position: relative;
    width: 100%;
}

.floating-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text);
    transition: var(--transition-fast);
    font-size: 0.9375rem;
}

.floating-input:focus {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.02);
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.15);
}

.floating-label {
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 0.9375rem;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: -0.625rem;
    left: 0.75rem;
    font-size: 0.75rem;
    padding: 0 0.5rem;
    background: #0f1526;
    color: var(--accent);
    font-weight: 600;
    border-radius: 4px;
}

.text-area {
    min-height: 120px;
    resize: none;
}

/* Custom Select Dropdowns */
.floating-select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    appearance: none;
    transition: var(--transition-fast);
}

.floating-select:focus {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.02);
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.15);
}

.select-group::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

.select-label {
    position: absolute;
    top: -0.625rem;
    left: 0.75rem;
    font-size: 0.75rem;
    padding: 0 0.5rem;
    background: #0f1526;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: 4px;
}

.floating-select:focus ~ .select-label {
    color: var(--accent);
}

.submit-btn {
    margin-top: 0.5rem;
}

/* Success Form Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111827;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-success-overlay.active .success-content {
    transform: translateY(0);
}

.success-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.success-icon-badge svg {
    width: 32px;
    height: 32px;
    stroke-width: 3;
}

.success-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.success-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 340px;
}

/* 17. FOOTER */
.main-footer {
    background-color: #070a14;
    border-top: 1px solid var(--card-border);
    padding: 6rem 0 3rem;
    position: relative;
    z-index: 10;
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-pitch {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-icon:hover {
    color: var(--text);
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-links-col h4, .footer-newsletter-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

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

.footer-links-col a:hover {
    color: var(--accent);
    padding-left: 4px;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.875rem;
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.footer-bottom-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

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

/* 18. FLOATING WIDGETS */
.floating-widget {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-widget {
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: var(--text);
}

.whatsapp-widget:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

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

.widget-tooltip {
    position: absolute;
    right: 70px;
    background: #111827;
    border: 1px solid var(--card-border);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.floating-widget:hover .widget-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* 19. FREE CONSULTATION MODAL */
.consultation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 16, 32, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultation-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #111827;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultation-modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.modal-close-btn svg {
    width: 16px;
    height: 16px;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.modal-badge svg {
    width: 12px;
    height: 12px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}


/* ==========================================
   20. RESPONSIVE DESIGN MEDIA QUERIES
   ========================================== */

/* Large screens and desktops (max-width: 1200px) */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.25rem; }
    .why-grid, .contact-container-grid { gap: 3rem; }
}

@media (max-width: 1024px) {
    .section { padding: 6rem 0; }
    
    .hero-section {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-badge, .hero-trust-metrics {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions-group {
        justify-content: center;
    }
    
    .hero-showcase {
        max-width: 550px;
        margin: 0 auto;
        height: 500px;
    }
    
    .why-grid, .contact-container-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .why-content {
        text-align: center;
    }
    
    .features-list-grid {
        text-align: left;
    }
    
    .stats-grid-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .section-title { font-size: 2.25rem; }
    .hero-title { font-size: 2.5rem; }
    
    /* Sticky Navigation burger reveal */
    .menu-toggle {
        display: flex;
    }
    
    .main-header .open-consultation-btn {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--card-border);
        padding: 6rem 2.5rem 3rem;
        z-index: 999;
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile-nav-cta {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.125rem;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-showcase {
        height: 400px;
    }
    
    .shopify-dashboard { width: 240px; top: 0; }
    .mobile-screen-mockup { width: 180px; height: 350px; right: 0; }
    .web-app-ui { width: 220px; bottom: 0; left: 5%; }
    
    .phone-notch { width: 70px; }
    .wallet-balance-card { padding: 0.5rem; }
    .balance-amount { font-size: 0.9375rem; }
    .tx-item { display: none; }
    .tx-item:first-child { display: flex; }
    
    .timeline-progress-bar { left: 24px; }
    .timeline-dot { margin-left: 2px; }
    .timeline-content-card { width: auto; padding: 1.5rem; }
    .timeline-step { gap: 1.5rem; }
    
    .contact-form-card, .modal-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.125rem; }
    
    .hero-actions-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions-group .btn {
        width: 100%;
    }
    
    .hero-showcase {
        height: 320px;
    }
    
    .shopify-dashboard { width: 200px; padding: 0.75rem; }
    .sales-value { font-size: 1.25rem; }
    .mini-chart { display: none; }
    .mobile-screen-mockup { width: 140px; height: 260px; border-width: 4px; padding: 0.5rem; }
    .phone-notch { display: none; }
    .phone-navbar { display: none; }
    .web-app-ui { width: 180px; padding: 0.75rem; }
    .project-tasks-list .task-item:last-child { display: none; }
    
    .stats-grid-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .floating-widget {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }

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

    .testimonial-card-slide {
        padding: 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .modal-card {
        width: calc(100% - 2rem);
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Contact Form 7 Floating Label Support
   ========================================================================== */

.wpcf7 .wpcf7-spinner {
    display: none !important;
}

.floating-group .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.floating-group .wpcf7-form-control-wrap:focus-within ~ .floating-label,
.floating-group .wpcf7-form-control-wrap:has(.floating-input:not(:placeholder-shown)) ~ .floating-label {
    top: -0.625rem;
    left: 0.75rem;
    font-size: 0.75rem;
    padding: 0 0.5rem;
    background: #0f1526;
    color: var(--accent);
    font-weight: 600;
    border-radius: 4px;
}

/* Contact Form 7 standard styling overrides */
.wpcf7-form .form-row {
    margin-bottom: 0;
}

.wpcf7-form p {
    margin-bottom: 0;
}

.wpcf7-response-output {
    border-radius: 8px;
    margin: 1.5rem 0 0 0 !important;
    padding: 1rem 1.25rem !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--card-border) !important;
    color: var(--text) !important;
}

.wpcf7-mail-sent-ok {
    border-color: #34d399 !important;
    color: #34d399 !important;
    background: rgba(52, 211, 153, 0.1) !important;
}

.wpcf7-validation-errors {
    border-color: #f87171 !important;
    color: #f87171 !important;
    background: rgba(248, 113, 113, 0.1) !important;
}
