/* ==========================================================================
   1. DESIGN SYSTEM & TOKENS
   ========================================================================== */
:root {
    --primary: #22C55E;
    --accent: #84CC16;
    --hover: #16A34A;
    --dark: #0B0F19;
    --secondary-dark: #131A2B;
    --card-dark: #111827;
    --text: #1E293B;
    --secondary-text: #64748B;
    --light-text: #94A3B8;
    --border: #E5E7EB;
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-border-hover: rgba(34, 197, 94, 0.4);
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --gradient: linear-gradient(135deg, #22C55E, #84CC16);
    --gradient-dark: linear-gradient(135deg, #131A2B, #0B0F19);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 35px rgba(34, 197, 94, 0.25);
}

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

html {
    scroll-behavior: initial;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}

html.model-open,
body.model-open {
  overflow: hidden;
  height: 100%;
}
/* ==========================================================================
   2. TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section {
    padding: 50px 0px;
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
    max-width: 100%;
    padding: 50px 0px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 18px;
}

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

.section-dark .section-header p {
    color: var(--light-text);
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-full);
    color: var(--hover);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-dark .pill-badge {
    color: var(--primary);
}

/* ==========================================================================
   3. CUSTOM CURSOR
   ========================================================================== */
#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 12px var(--primary);
    transform: translate(-50%, -50%);
}

#cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: border-color 0.2s, background-color 0.2s, width 0.2s, height 0.2s;
}

.cursor-hover #cursor-dot {
    width: 14px;
    height: 14px;
    background: var(--accent);
}

.cursor-hover #cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--primary);
    background-color: rgba(34, 197, 94, 0.08);
}

/* Reset default cursor on interactive elements */
a, button, input, textarea, select, .faq-question, .swiper-button-next, .swiper-button-prev {
    cursor: none;
}

/* ==========================================================================
   4. PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--dark);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.preloader-words {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 700;
    display: flex;
    gap: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.preloader-word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.preloader-counter {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
}

.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 15px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient);
}

/* ==========================================================================
   5. NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 20px;
    /* slight gap from top */
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 18px 50px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

/* Scrolled state – becomes a centered floating pill */
.navbar.scrolled {
    top: 16px;
    max-width: 70%;
    padding: 12px 40px;
    margin: 0 auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.logo .logo-image {
    max-width: 150px;
    transition: max-width 0.5s ease;
}

.navbar.scrolled .logo .logo-image {
    max-width: 130px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

/* Underline hover effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* CTA button inside navbar */
.navbar .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.navbar.scrolled .btn-primary {
    padding: 8px 22px;
    font-size: 0.85rem;
}

/* Mobile menu toggle (hidden by default) */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* =============================
   RESPONSIVE ADJUSTMENTS
   ============================= */
@media (max-width: 1024px) {
    .navbar {
        padding: 18px 30px;
        top: 0;
    }

    .navbar.scrolled {
        max-width: 100%;
        border-radius: 0;
        top: 0;
        padding: 14px 30px;
        transform: none;
        left: 0;
        border: none;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .nav-links {
        display: none;
        /* hidden on tablet/mobile – menu toggle will show */
    }

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

    .navbar .btn-primary {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 14px 20px;
    }

    .navbar.scrolled {
        padding: 12px 20px;
    }

    .logo .logo-image {
        max-width: 120px;
    }
}

/* ==========================================================================
   MOBILE NAVIGATION OVERLAY
   ========================================================================== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 15, 25, 0.9);
    /* dark semi‑transparent base */
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    pointer-events: none;
    opacity: 0;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
}

/* Close button (positioned top‑right) */
.mobile-nav-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}

.mobile-nav-close i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

/* Navigation links list */
.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-links li {
    margin: 18px 0;
}

.mobile-nav-links a {
    display: inline-block;
    color: var(--white);
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s, transform 0.2s;
    position: relative;
}

/* Gradient underline hover effect */
.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.mobile-nav-links a:hover::after {
    width: 100%;
}

/* Active link (optional, if you want to highlight current section) */
.mobile-nav-links a.active {
    color: var(--primary);
}

.mobile-nav-links a.active::after {
    width: 100%;
}

/* =============================
   RESPONSIVE FONT TWEAKS
   ============================= */
@media (max-width: 480px) {
    .mobile-nav-links a {
        font-size: 1.4rem;
    }

    .mobile-nav-close {
        top: 20px;
        right: 20px;
    }
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.banner-btn {
    color: var(--dark);
    border-color: #000 !important;
}

.btn-outline:hover {
    /* border-color: var(--dark); */
    background: rgba(0, 0, 0, 0.03);
}

.btn-gradient {
    background: var(--gradient);
    color: var(--dark);
    font-weight: 700;
}

.btn-gradient:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-ctas .btn-primary {
    background: var(--dark);
}
.hero {
    min-height: 100vh;
    padding: 170px 50px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at 50% 20%, rgba(34, 197, 94, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    max-width: 1080px;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--secondary-text);
    max-width: 720px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
    pointer-events: none;
}

.card-left {
    top: 28%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.card-right {
    bottom: 22%;
    right: 5%;
    animation: float 7s ease-in-out infinite 1.2s;
}

.card-bottom {
    bottom: 10%;
    left: 20%;
    animation: float 5s ease-in-out infinite 0.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(2deg);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary-text);
    font-size: 0.8rem;
    gap: 6px;
    z-index: 2;
}

.scroll-bounce {
    animation: bounce 2s infinite;
}

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

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.hero-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-glow-orb-left {
    background: var(--primary);
    top: -15%;
    left: -10%;
}

.hero-glow-orb-right {
    background: var(--accent);
    bottom: -15%;
    right: -10%;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) scale(0);
        opacity: 0;
    }
}

/* ==========================================================================
   7. MARQUEE SECTION
   ========================================================================== */
.marquee-section {
    padding: 36px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.marquee-title {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--light-text);
    margin-bottom: 22px;
}

.marquee-track {
    display: flex;
    gap: 65px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
    white-space: nowrap;
}
.marquee-item img {
    flex-shrink: 0;
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: opacity .2s;
}
.marquee-item:hover {
    color: var(--primary);
}

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

    100% {
        transform: translateX(-50%);
    }
}


/* ==========================================================================
   SCROLLING BANNER / STATS MARQUEE (TEXT ONLY)
   ========================================================================== */
.scrolling-banner-section {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    overflow: hidden;
    padding: 16px 0;
}

.scrolling-banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    direction: ltr;
}

.scrolling-banner {
    --scale: 0.7;
    display: flex;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
    width: max-content;
    margin: 0;
    padding: 6px 0;
    white-space: nowrap;
    direction: ltr;
}

.scrolling-banner-content {
    display: flex;
    align-items: center;
    width: max-content;
    padding-right: 0.2em;
    gap: 8px;
}

.marquee--animate .scrolling-banner-content {
    animation: scrollingBannerMarquee var(--duration) linear infinite;
}

.scrolling-banner:hover .scrolling-banner-content {
    animation-play-state: paused;
}

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

.scrolling-banner-item {
    padding-right: calc(var(--space) * var(--scale));
    display: flex;
    align-items: center;
}

.scrolling-banner-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-size);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: normal;
    font-family: var(--font-body);
    transition: color 0.3s ease;
    position: relative;
}

/* Add dot separator between items */
.scrolling-banner-text::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    margin-left: calc(var(--space) * var(--scale));
    opacity: 0.5;
    vertical-align: middle;
}

/* Remove dot from last item in each set */
.scrolling-banner-content .scrolling-banner-text:last-child::after {
    display: none;
}

.scrolling-banner-text:hover {
    color: var(--primary);
}

/* Responsive */
@media (min-width: 768px) {
    .scrolling-banner {
        --scale: 0.85;
        padding: 10px 0;
    }
    .scrolling-banner-section {
        padding: 20px 0;
    }
    .scrolling-banner-text {
        font-size: calc(var(--text-size) + 2px);
    }
}

@media (min-width: 1000px) {
    .scrolling-banner {
        --scale: 1;
        padding: 14px 0;
    }
    .scrolling-banner-section {
        padding: 24px 0;
    }
    .scrolling-banner-text {
        font-size: calc(var(--text-size) + 4px);
    }
}

@media (max-width: 550px) {
    .scrolling-banner-text {
        font-size: calc(var(--text-size) - 4px);
        letter-spacing: 0.5px;
    }
    .scrolling-banner-item {
        padding-right: calc(var(--space) * 0.5);
    }
    .scrolling-banner-section {
        padding: 10px 0;
    }
    .scrolling-banner-text::after {
        margin-left: calc(var(--space) * 0.5);
        width: 3px;
        height: 3px;
    }
}

/* ==========================================================================
   8. WHY SHOPIFY? SECTION
   ========================================================================== */
.why-shopify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.shopify-card {
    /* background: var(--white); */
    border: 1px solid #393939;
    padding: 36px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
}

.shopify-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.shopify-stat {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

/* ==========================================================================
   9. WHY WE BUILD YOUR STORE FREE
   ========================================================================== */
.why-free-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1350px;
    margin: 0 auto;
}

.why-free-card {
    background: rgb(255 255 255 / 88%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s ease;
}

.why-free-card:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-4px);
}

.why-free-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-free-cta-row {
    text-align: center;
    margin-top: 50px;
}

.why-free-subtext {
    display: inline-block;
    margin-left: 20px;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ==========================================================================
   10. STATISTICS COUNTER SECTION
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-number .counter-value {
    display: inline-block;
}

.stat-label {
    font-weight: 600;
    margin-top: 10px;
    font-size: 1.1rem;
}

.stat-sub {
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ==========================================================================
   11. WHY CHOOSE US (DETAILED)
   ========================================================================== */
.choose-us-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.choose-us-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.choose-us-row.reverse {
    flex-direction: row-reverse;
}

.choose-us-visual {
    flex: 1;
}

.choose-us-text {
    flex: 1;
}

.choose-us-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.choose-us-text p {
    color: var(--light-text);
    line-height: 1.6;
}

.choose-us-list {
    list-style: none;
    margin-top: 20px;
}

.choose-us-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.choose-us-list li i {
    color: var(--primary);
}

.choose-us-mockup {
    background: var(--card-dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.choose-us-row:hover .choose-us-mockup {
    transform: translateY(-4px);
}

.mockup-browser-bar {
    padding: 12px 16px;
    background: #1a1f2e;
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red {
    background: #FF5F56;
}

.mockup-dot.yellow {
    background: #FFBD2E;
}

.mockup-dot.green {
    background: #27CA40;
}

.mockup-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: center;
}

.speed-badge {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   12. WHY HIRE US SECTION (EXISTING)
   ========================================================================== */
.why-hire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.hire-card {
    background: var(--card-dark);
    border: 1px solid var(--dark-border);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.hire-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}

.hire-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hire-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.hire-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* ==========================================================================
   13. HOW WE WORK / PROCESS (6 STEPS)
   ========================================================================== */
.process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-svg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    background: #def4e8;
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 10px;
}

.process-step-icon {
    width: 52px;
    height: 52px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}

.process-duration {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    color: var(--light-text);
}

.process-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.process-timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   14. SERVICES BENTO GRID (EXISTING)
   ========================================================================== */
.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-bento-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    min-height: 290px;
}

.service-bento-card.wide {
    grid-column: span 2;
}

.service-bento-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-bento-card h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.service-bento-card p {
    color: var(--secondary-text);
    font-size: 0.95rem;
}

.service-icon-wrapper {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
}

.service-bento-card:hover .service-mini-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

/* ==========================================================================
   15. EVERYTHING YOUR STORE NEEDS
   ========================================================================== */
.features-mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1350px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ==========================================================================
   16. TECHNOLOGY STACK SECTION (EXISTING)
   ========================================================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tech-card {
    background: var(--secondary-dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.05);
    transform: translateY(-4px);
}

.tech-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}

.tech-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.tech-card span {
    font-size: 0.825rem;
    color: var(--light-text);
}

/* ==========================================================================
   17. DETAILED TECH STACK - WHAT WE USE
   ========================================================================== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.tool-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.tool-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.tool-info span {
    font-size: 0.8rem;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tool-card p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ==========================================================================
   18. INDUSTRIES WE SERVE
   ========================================================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1350px;
    margin: 0 auto;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.05);
    transform: translateY(-4px);
}

.industry-card i {
    color: var(--primary);
    margin-bottom: 14px;
}

.industry-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* ==========================================================================
   19. PORTFOLIO SHOWCASE SECTION (EXISTING)
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.portfolio-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(34, 197, 94, 0.4);
}

.portfolio-img {
    width: 100%;
    height: 260px;
    background: var(--secondary-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-window {
    width: 82%;
    height: 78%;
    background: #1E293B;
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .mockup-window {
    transform: scale(1.04);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-body {
    flex: 1;
    background: #0F172A;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
}

.portfolio-content {
    padding: 28px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 10px;
    background: var(--bg);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-text);
}

.portfolio-metrics {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 12px;
}

/* ==========================================================================
   20. TESTIMONIALS (SWIPER + GLASS CARDS)
   ========================================================================== */

.community-section {
    --card-radius: 24px;
    --card-w: 300px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding: 48px 0 68px 0;
}

@media screen and (max-width: 750px) {
    .community-section {
        padding: 36px 0 51px 0;
    }
}

/* ===== STAGE ===== */
.community-stage {
    position: relative;
    width: 100%;
    min-height: 480px;
}

/* ===== STACKED DECK ===== */
.deck-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    margin: 0;
    cursor: pointer;
    display: none;
    /* Hidden by default, shown on collapse */
}

@media screen and (max-width: 750px) {
    .deck-wrapper {
        height: 440px;
    }
}

.deck-card {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--card-w);
    min-height: 340px;
    border-radius: var(--card-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    will-change: transform;
    transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.deck-card:first-child {
    pointer-events: auto;
}

/* ===== GRID WRAPPER (Replaces scroll) ===== */
.grid-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
    display: none;
    padding: 20px 0 10px 0;
}

.community-section.is-expanded .grid-wrapper {
    display: block;
}

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

/* ===== GRID CARD ===== */
.grid-card-link {
    text-decoration: none;
    color: currentColor;
    display: block;
}

.grid-card {
    width: 100%;
    min-height: 340px;
    border-radius: var(--card-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.25s ease;
}

.grid-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ===== CARD INTERNALS ===== */
.card-quote {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    flex: 1;
}

.card-quote p {
    margin: 0;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #333;
}

.card-avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    background: #555;
    color: #fff;
}

.card-name {
    display: block;
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}

.card-role {
    display: block;
    font-size: 12px;
    margin-top: 2px;
    text-transform: uppercase;
    line-height: normal;
    font-weight: 300;
    opacity: 0.7;
}

/* ===== COLLAPSE BUTTON ===== */
.collapse-btn {
    opacity: 0;
    margin: 0px;
    padding: 0px !important;
    font-size: 0px !important;
}

.community-section.is-expanded .collapse-btn {
    opacity: 1;
    pointer-events: auto;
    padding: 16px 36px !important;
    font-size: 1.05rem !important;
}

/* ===== FOCUS OVERLAY ===== */
.focus-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.focus-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.focus-card {
    border-radius: var(--card-radius);
    padding: 32px;
    width: min(380px, 90vw);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 200px;
}

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

.focus-card .card-quote {
    font-size: 16px;
    line-height: 24px;
}

.focus-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.focus-close:hover {
    opacity: 1;
}

.focus-card-wrapper {
    position: relative;
}

/* ===== CLICK HINT ===== */
.click-hint {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 16px;
    letter-spacing: 0.05em;
}

.community-section.is-expanded .click-hint {
    display: none;
}

/* ===== SCROLLBAR STYLING ===== */
.focus-card::-webkit-scrollbar {
    width: 4px;
}

.focus-card::-webkit-scrollbar-track {
    background: transparent;
}

.focus-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* ===== RESPONSIVE GRID ===== */
@media screen and (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 16px;
    }
}

@media screen and (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }

    .grid-card {
        min-height: 280px;
    }
}

/* ===== INITIAL LOADING STATE ===== */
.community-section:not(.is-expanded) .grid-wrapper {
    display: none;
}

.community-section:not(.is-expanded) .deck-wrapper {
    display: block;
}

/* ==========================================================================
   21. INTERACTIVE REVENUE CALCULATOR (EXISTING)
   ========================================================================== */
.calc-box {
    background: var(--card-dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.slider-container {
    margin: 30px 0;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--secondary-dark);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--dark-border);
    text-align: center;
}

/* ==========================================================================
   22. COMPARISON TABLE (EXISTING)
   ========================================================================== */
.comparison-wrapper {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    border: 1px solid var(--dark-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid var(--dark-border);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.comparison-table td.highlight {
    color: var(--primary);
    font-weight: 600;
    background: rgba(34, 197, 94, 0.04);
}

/* ==========================================================================
   23. PRICING TABLE
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1350px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #111827, #0f1a2a);
    position: relative;
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-icon {
    width: 52px;
    height: 52px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 16px;
}

.pricing-subtitle {
    color: var(--light-text);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin: 20px 0;
    font-family: var(--font-heading);
}

.pricing-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

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

.pricing-description {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: var(--primary);
    width: 18px;
}

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--light-text);
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    color: #fff;
}

/* ==========================================================================
   24. OUR GUARANTEE
   ========================================================================== */
.guarantee-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--dark);
}

.guarantee-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 20px auto 60px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    text-align: left;
    margin-bottom: 50px;
}

.guarantee-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.guarantee-item i {
    color: var(--primary);
    margin-bottom: 16px;
}

.guarantee-item h4 {
    margin-bottom: 8px;
}

.guarantee-item p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.guarantee-cta {
    margin-top: 40px;
}

/* ==========================================================================
   25. FAQ ACCORDION (EXISTING)
   ========================================================================== */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px 28px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--secondary-text);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active {
    border-color: var(--primary);
}

/* ==========================================================================
   26. CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
}

.cta-banner-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    margin-bottom: 30px;
}

.cta-banner-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.cta-banner-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

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

.cta-btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.cta-banner-stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.cta-divider {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    align-self: center;
}

/* ==========================================================================
   27. CONTACT FORM (EXISTING)
   ========================================================================== */
.contact-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group.full {
    grid-column: span 2;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg);
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* ==========================================================================
   28. LATEST INSIGHTS / BLOG
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1350px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--dark-border-hover);
    transform: translateY(-6px);
}

.blog-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--card-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.blog-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-view-all {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   29. PARTNERS & INTEGRATIONS
   ========================================================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.partner-logo-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.partner-logo-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.partner-logo-item i {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.partner-logo-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================================================
   30. FOOTER (EXISTING + NEWSLETTER)
   ========================================================================== */
/* ==========================================================================
   FOOTER – PREMIUM LAYOUT
   ========================================================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 50px 50px;
    border-top: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

/* Soft top glow */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 70px;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

/* Brand column */
.footer-grid>div:first-child .logo-image {
    max-width: 160px;
    margin-bottom: 18px;
    display: block;
}

.footer-grid>div:first-child p {
    color: var(--light-text);
    line-height: 1.7;
    max-width: 320px;
}

/* Column titles */
.footer h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
}

.footer h4::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gradient);
    margin-top: 10px;
    border-radius: 2px;
}

/* Links */
.footer p {
    margin-bottom: 14px;
}

.footer a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    font-size: 0.95rem;
}

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

/* Social Icons – Premium Rounded Backgrounds */
.footer-social-icons {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

/* Newsletter Section */
.footer-newsletter {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1350px;
    margin: 0 auto;
}

.footer-newsletter h4 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.newsletter-input {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-body);
    outline: none;
    min-width: 260px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: var(--light-text);
}

.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.newsletter-btn {
    white-space: nowrap;
    padding: 14px 28px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light-text);
    font-size: 0.85rem;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   AFTER FOOTER – "THE BRAND NEXT" OUTLINE MARQUEE
   ========================================================================== */
.after-footer-marquee {
    background: var(--dark);
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.after-footer-marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: afterMarquee 40s linear infinite;
    white-space: nowrap;
}

/* Giant outlined text style */
.after-footer-marquee-track span {
    font-family: var(--font-heading);
    font-size: 20.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
    text-stroke: 1.5px rgba(255, 255, 255, 0.15);
    letter-spacing: -0.02em;
    user-select: none;
    line-height: 1;
}

/* Smooth infinite scroll */
@keyframes afterMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =============================
   RESPONSIVE ADJUSTMENTS
   ============================= */
@media (max-width: 1024px) {
    .footer {
        padding: 80px 30px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .after-footer-marquee-track span {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
        min-width: auto;
    }

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

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

    .after-footer-marquee-track span {
        font-size: 2.4rem;
    }
}

/* ==========================================================================
   32. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

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

    .services-bento {
        grid-template-columns: 1fr 1fr;
    }

    .service-bento-card.wide {
        grid-column: span 1;
    }

    .choose-us-row, .choose-us-row.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 18px 20px;
    }

    .navbar.scrolled {
        padding: 14px 20px;
    }

    .hero {
        padding: 140px 20px 80px;
    }

    .section, .section-dark, .cta-banner-section {
        padding: 40px 20px;
    }

    .services-bento {
        grid-template-columns: 1fr;
    }

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

    .form-group.full {
        grid-column: span 1;
    }

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

    .floating-card {
        display: none;
    }

    .calc-results {
        grid-template-columns: 1fr;
    }

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

    .stats-grid, .why-shopify-grid, .why-hire-grid, .features-mega-grid {
        grid-template-columns: 1fr;
    }

    .choose-us-text h3 {
        font-size: 1.8rem;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .cta-banner-stats-row {
        flex-direction: column;
        gap: 10px;
    }

    .cta-divider {
        display: none;
    }

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

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

    .newsletter-form {
        width: 100%;
    }

    .newsletter-input {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pricing-amount {
        font-size: 2.8rem;
    }

    .comparison-wrapper {
        padding: 30px 10px;
    }

    .pricing-card {
        padding: 15px;
    }

    .process-cta-row {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .comparison-table {
        overflow-x: auto;
        display: flex;
        flex-direction: column;
    }
}

/* ===== ABOUT PAGE TIMELINE ===== */
.about-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
    border-left: 2px solid rgba(34, 197, 94, 0.2);
    position: relative;
}

.timeline-item {
    margin-bottom: 48px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

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

/* ===== MISSION & VISION GRID ===== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.3s;
}

.mv-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.mv-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ===== CORE VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.value-card i {
    color: var(--primary);
    margin-bottom: 18px;
    width: 32px;
    height: 32px;
}

.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

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

/* ===== TEAM PHILOSOPHY GRID ===== */
.team-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}

.philosophy-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.philosophy-card i {
    color: var(--primary);
    margin-bottom: 16px;
}

.philosophy-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.philosophy-card p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* =============================================
   BENTO MINDS – GLITCH HOVER
   ============================================= */
.bento-minds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: var(--card-dark);
    border: 1px solid var(--dark-border);
    transition: border-color 0.3s;
}

.bento-item:hover {
    border-color: var(--primary);
}

.bento-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), clip-path 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Glitch effect on hover */
.bento-item:hover .bento-img {
    clip-path: polygon(10% 10%, 90% 0%, 100% 90%, 0% 100%);
    transform: scale(1.08);
}

/* Info overlay */
.bento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-item:hover .bento-info {
    transform: translateY(0);
}

.bento-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.bento-role {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

/* =============================================
   KINETIC DNA TYPOGRAPHY
   ============================================= */
.section-dna {
    position: relative;
    background: var(--dark);
    padding: 150px 20px;
    text-align: center;
    overflow: hidden;
}

.section-dna::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.dna-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.dna-word {
    display: inline-block;
    opacity: 0.2;
    transition: opacity 0.4s, transform 0.4s;
    will-change: opacity, transform;
}

.dna-sub {
    font-size: 1.2rem;
    color: var(--light-text);
}

/* =============================================
   BRUTALIST SCRATCH-TO-REVEAL
   ============================================= */
.section-scratch {
    background: #0B0F19;
    padding: 120px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.scratch-title {
    font-size: 3rem;
    margin-bottom: 40px;
}

.scratch-card {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

#scratch-canvas {
    display: block;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.scratch-reveal-text {
    background: var(--gradient);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    z-index: 1;
    position: relative;
}

.scratch-reveal-text p {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.scratch-reveal-text strong {
    background: var(--dark);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
}

.scratch-instruction {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--light-text);
}

/* =============================================
   INTERACTIVE VIBE BLOB
   ============================================= */
.section-vibe {
    position: relative;
    background: #0B0F19;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vibe-content {
    text-align: center;
    z-index: 2;
    color: var(--white);
}

.vibe-content h2 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.vibe-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.2s ease-out;
}