/* ===========================
   M1CREATIVE. — Global Reset & Variables
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f0;
    --text-white: #ffffff;
    --text-light: #c0c0c0;
    --text-dark: #1a1a1a;
    --accent: #a6ff00;
    --accent-secondary: #a0d4ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-display: 'Knewave', system-ui;
    --font-body: 'Inter', -apple-system, sans-serif;
    --section-pad: clamp(60px, 10vh, 120px);
}

html {
    overflow-x: hidden;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis-stopped {
    overflow: hidden;
}

.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===========================
   BLUEPRINT INTRO & SITEWIDE BACKGROUND SYSTEM
   =========================== */
#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10000;
    overflow: hidden;
    background: #050505;
    cursor: default;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

#loader.exit {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Dynamic intro construction canvas */
#intro-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: block;
    z-index: 1;
}

/* Structural corner tick crosshairs */
.blueprint-corner {
    position: absolute;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: opacity 0.4s ease 0.3s;
}
#loader.corners-in .blueprint-corner { opacity: 1; }
.blueprint-corner.tl { top: 24px; left: 24px; }
.blueprint-corner.tr { top: 24px; right: 24px; }
.blueprint-corner.bl { bottom: 24px; left: 24px; }
.blueprint-corner.br { bottom: 24px; right: 24px; }

/* Canvas — Fixed behind all content across website */
#three-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    display: block;
    background: #050505;
}

/* Centered Brand Logo + Blueprint compilation status */
.intro-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    opacity: 1;
    width: 90%;
    max-width: 600px;
}

.blueprint-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.blueprint-tag.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-logo {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    letter-spacing: 1px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    font-style: italic;
    color: var(--text-white);
    text-shadow: 0 0 40px rgba(166, 255, 0, 0.2);
    max-width: 100%;
}

/* Per-character intro assembly */
.intro-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px) scale(0.92);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-white);
}
.intro-char.logo-one {
    color: var(--text-white);
}
.intro-char.intro-creative {
    color: var(--accent);
}
.intro-char.assembled {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.blueprint-status {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.blueprint-status.visible {
    opacity: 1;
    transform: translateY(0);
}

.status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: statusPulse 1.2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}


/* ===========================
   Navigation
   =========================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s ease;
    mix-blend-mode: difference;
}

#navbar.scrolled {
    padding: 15px 40px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    mix-blend-mode: normal;
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 1px;
    cursor: pointer;
    font-style: italic;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-logo span {
    color: var(--accent);
}

.logo-one {
    color: var(--text-white) !important;
}

/* ======= SPOTLIGHT CARD (Premium Spotlight Hover Glow) ======= */
.spotlight-card {
    position: relative;
    overflow: hidden;
}
.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(166, 255, 0, 0.12),
        transparent 40%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.spotlight-card:hover::before {
    opacity: 1;
}
.spotlight-card > * {
    position: relative;
    z-index: 2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg-dark) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(166, 255, 0, 0.3);
    color: var(--bg-dark) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 90px; /* drops down below navbar */
    right: 40px;
    width: 280px;
    height: auto;
    background: rgba(255, 255, 255, 0.98); /* frosted white glass */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    
    /* Open & Close Slide Transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--bg-dark); /* dark slate text for contrast */
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, color 0.2s ease, background 0.2s ease;
}

.mobile-link:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #000000;
    transform: translateX(5px);
}

/* Delay reveals */
.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }

/* Custom Action Button inside Mobile Menu */
.mobile-menu .nav-cta {
    background: var(--accent) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 8px;
    box-shadow: 0 8px 20px rgba(166, 255, 0, 0.25);
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.mobile-menu .nav-cta:hover {
    background: #b5ff26 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(166, 255, 0, 0.35);
}

@media (max-width: 480px) {
    .mobile-menu {
        right: 20px;
        left: 20px;
        width: auto;
        top: 80px;
    }
}

/* ===========================
   Sections
   =========================== */
.section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-pad) 40px;
    z-index: 1;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-tag.dark {
    color: var(--bg-dark);
    opacity: 0.5;
}

/* ===========================
   Hero Section
   =========================== */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 2.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 1.05;
    margin-bottom: 30px;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-title .line-1 {
    animation: fadeUp 1s ease 2.4s forwards;
}

.hero-title .line-2 {
    animation: fadeUp 1s ease 2.6s forwards;
}

.hero-title .line-3 {
    animation: fadeUp 1s ease 2.8s forwards;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 3s forwards;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 3.1s forwards;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.badge-icon {
    color: var(--accent);
    font-weight: bold;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 3.2s forwards;
}

.hero-btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn.primary-btn {
    background: var(--accent);
    color: #000;
    box-shadow: 0 4px 30px rgba(166, 255, 0, 0.2);
}

.hero-btn.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 40px rgba(166, 255, 0, 0.35);
    background: #b5ff24;
}

.hero-btn.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.hero-btn.secondary-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease 3.3s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 3px;
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ===========================
   Big Text / Section Headings
   =========================== */
.big-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 7rem);
    line-height: 1.1;
    margin-bottom: 50px;
}

.big-text .word {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.big-text .word.visible {
    opacity: 1;
    transform: translateY(0);
}

.big-text em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-text {
    color: var(--text-dark);
}

.dark-text .word {
    color: var(--text-dark);
}

.dark-text em {
    background: linear-gradient(135deg, #1a1a1a, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   About Section
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s ease-out, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
}

.stat-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(166, 255, 0, 0.3); /* glows in neon color on hover */
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(166, 255, 0, 0.08);
}

.stat-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* ===========================
   Services Section
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.service-card:nth-child(3).visible {
    transition-delay: 0.2s;
}

.service-card:nth-child(4).visible {
    transition-delay: 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 255, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: rgba(166, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(166, 255, 0, 0.08);
}

.service-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 15px;
    opacity: 0.6;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-icon {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 40px;
    height: 40px;
    color: var(--accent);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
    opacity: 0.7;
}

/* ===========================
   Work / Portfolio Section
   =========================== */
.work-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
    margin-top: 16px;
}

/* Niche Filter Pills */
.niche-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.niche-pill {
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.niche-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.niche-pill.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(var(--accent-rgb, 255,255,255), 0.15);
}

/* Work Grid */
.work-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work-item {
    /* GSAP fromTo controls opacity and transform — no CSS initial hidden state needed */
    opacity: 1;
    transform: none;
    transition: none;
}

.work-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-item:nth-child(2).visible {
    transition-delay: 0.15s;
}

.work-item:nth-child(3).visible {
    transition-delay: 0.3s;
}

.work-item:nth-child(4).visible {
    transition-delay: 0.45s;
}

.work-item:nth-child(5).visible {
    transition-delay: 0.6s;
}

.work-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-item {
    perspective: 1000px;
}

.work-card-inner {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #0c0d12;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 540px;
    height: 100%;
}

.work-card-inner:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 35px rgba(166, 255, 0, 0.18);
    border-color: rgba(166, 255, 0, 0.35);
}

.browser-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #111319;
}

/* ===========================
   DUAL DEVICE MOCKUP SYSTEM (MacBook Pro + iPhone 15 Pro)
   =========================== */
.dual-mockup {
    width: 100%;
    height: 230px;
    flex-shrink: 0;
    position: relative;
    background: 
        radial-gradient(circle at 50% 40%, rgba(166, 255, 0, 0.05) 0%, rgba(18, 21, 30, 0.95) 60%, rgba(7, 8, 12, 1) 100%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 16px 16px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* MacBook Pro Container */
.macbook-container {
    position: relative;
    width: 74%;
    max-width: 330px;
    margin-right: 12%;
    margin-bottom: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    z-index: 2;
}

/* MacBook Screen Shell */
.macbook-screen {
    position: relative;
    width: 100%;
    padding-top: 62.5%; /* 16:10 aspect ratio */
    background: #000;
    border: 3px solid #1a1b22;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.14), inset 0 0 0 1px rgba(0, 0, 0, 0.8);
}

/* MacBook Camera Notch */
.macbook-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 9px;
    background: #000;
    border-radius: 0 0 5px 5px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.macbook-camera {
    width: 3px;
    height: 3px;
    background: #111218;
    border-radius: 50%;
}

.macbook-led {
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.85;
}

/* MacBook Viewport Image */
.macbook-viewport {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    background: #000;
}

.macbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border: none;
    outline: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Anti-glare glass streak overlay */
.macbook-reflection {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(125deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 32%, transparent 55%, rgba(255,255,255,0.015) 100%);
    pointer-events: none;
    z-index: 5;
}

/* MacBook Base Deck */
.macbook-base {
    position: relative;
    width: 114%;
    left: -7%;
    height: 10px;
    background: linear-gradient(180deg, #32333e 0%, #1c1d24 55%, #121318 100%);
    border-radius: 0 0 10px 10px;
    border: 1px solid #404150;
    border-top: 1px solid #525466;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.9);
}

.macbook-thumb-indent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 3px;
    background: #0a0b0e;
    border-radius: 0 0 3px 3px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
}

/* iPhone 15 Pro Floating Frame */
.iphone-container {
    position: absolute;
    right: 7%;
    bottom: -6px;
    width: 25%;
    max-width: 105px;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.iphone-screen {
    position: relative;
    width: 100%;
    padding-top: 215%; /* 19.5:9 iPhone aspect ratio */
    background: #000;
    border: 3px solid #333442;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -16px 20px 42px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(255, 255, 255, 0.18), inset 0 0 0 1px #000;
}

/* iPhone Dynamic Island */
.iphone-island {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 32%;
    height: 8px;
    background: #000;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
}

/* iPhone Screen Image */
.iphone-viewport {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.iphone-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border: none;
    outline: none;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* iPhone Glass Reflection & Home Bar */
.iphone-reflection {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.03) 40%, transparent 60%);
    pointer-events: none;
    z-index: 5;
}

.iphone-home-bar {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    z-index: 10;
}

/* HOVER MICRO-INTERACTIONS */
.work-card-inner:hover .macbook-container {
    transform: scale(1.03) translateY(-4px);
}

.work-card-inner:hover .macbook-img {
    transform: scale(1.03);
}

.work-card-inner:hover .iphone-container {
    transform: translateY(-12px) scale(1.07) rotate(-2deg);
    filter: drop-shadow(-12px 22px 30px rgba(0, 0, 0, 0.95));
}

.work-card-inner:hover .iphone-img {
    transform: scale(1.04);
}

.work-preview-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 6px;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work-card-inner:hover .work-preview-badge {
    opacity: 0;
}

.work-overlay {
    position: relative;
    flex: 1;
    padding: 18px 22px 22px 22px;
    background: #0d0e14;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.work-category {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.work-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.work-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.work-cta {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ===========================
   Contact / Lead Capture Section
   =========================== */
.section-light {
    background: var(--bg-light);
    z-index: 2;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    margin-top: 0;
    align-items: start;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 0;
    padding-top: 0;
}

.contact-info .big-text {
    margin-bottom: 20px;
}

.contact-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.contact-info-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: -15px 0 10px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-details p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.direct-contact {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.direct-contact p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.direct-email-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.direct-email-link:hover {
    color: #444;
}

.contact-form {
    max-width: 800px;
    position: relative;
    width: 100%;
}

/* ===========================
   CALENDAR BOOKING FORM
   =========================== */
.booking-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.booking-form {
    width: 100%;
    position: relative;
}

.booking-step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.booking-step-title .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Calendar Month Header */
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}

.cal-month-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cal-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #f8f9fa;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cal-nav-btn:hover:not(:disabled) {
    background: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
}

.cal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Weekdays */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Days Grid */
.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 24px;
}

.cal-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid transparent;
    background: #f8f9fa;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cal-day-cell:hover:not(.disabled):not(.selected) {
    background: #eef8d5;
    border-color: var(--accent);
    color: #000;
    transform: translateY(-2px);
}

.cal-day-cell.selected {
    background: var(--text-dark);
    color: var(--accent);
    font-weight: 800;
    border-color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cal-day-cell.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: transparent;
}

.cal-day-cell.today {
    border-color: var(--text-dark);
}

/* Time Slots */
.time-slots-wrapper {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
    border: 1px solid #eaeaea;
}

.time-slots-label {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 12px;
}

.time-slots-label strong {
    color: var(--text-dark);
}

.time-slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot-btn {
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-btn:hover:not(.selected) {
    border-color: var(--accent);
    background: #eef8d5;
}

.time-slot-btn.selected {
    background: var(--text-dark);
    color: var(--accent);
    border-color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cal-error-glow {
    border-color: #ff3333 !important;
    box-shadow: 0 0 12px rgba(255, 51, 51, 0.3) !important;
}

.form-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.form-service-option {
    cursor: pointer;
}

.form-service-option input {
    display: none;
}

.service-pill {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.service-pill:hover {
    border-color: #999;
}

.form-service-option input:checked+.service-pill {
    background: var(--text-dark);
    color: var(--text-white);
    border-color: var(--text-dark);
    transform: scale(1.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.form-service-option input:checked+.service-pill::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 40px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-family: var(--font-body);
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group select {
    cursor: pointer;
    border-radius: 0;
}

.form-group select option {
    background: #ffffff;
    color: #1a1a1a;
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group select:focus~label,
.form-group select:valid~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input:focus~.form-line,
.form-group select:focus~.form-line,
.form-group textarea:focus~.form-line {
    width: 100%;
    left: 0;
}

/* Form Validation States */
.form-group.is-valid .form-line {
    background: #2e7d32;
    width: 100% !important;
    left: 0 !important;
}

.form-group.is-invalid .form-line {
    background: #c62828;
    width: 100% !important;
    left: 0 !important;
}

.form-group.is-valid::after {
    content: '✓';
    position: absolute;
    right: 5px;
    top: 12px;
    color: #2e7d32;
    font-weight: bold;
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group.is-invalid::after {
    content: '!';
    position: absolute;
    right: 5px;
    top: 12px;
    color: #c62828;
    font-weight: bold;
    font-size: 1.1rem;
    pointer-events: none;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--text-dark);
    color: var(--text-white);
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(166, 255, 0, 0.3);
    background: #000;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon svg {
    transform: translateX(5px);
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.form-success.show {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success p {
    color: #666;
    font-size: 1rem;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin: 0 auto 50px auto !important;
    max-width: 650px;
    line-height: 1.7;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.pricing-card:nth-child(3).visible {
    transition-delay: 0.2s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
    transition: height 0.5s ease;
}

.pricing-card[data-tier="bronze"]::before {
    background: linear-gradient(90deg, #CD7F32, #E8A860);
}

.pricing-card[data-tier="silver"]::before {
    background: linear-gradient(90deg, #C0C0C0, #E8E8E8);
}

.pricing-card[data-tier="gold"]::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.pricing-card:hover::before {
    height: 5px;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Featured Card (Silver) */
.pricing-card.featured {
    border-color: rgba(166, 255, 0, 0.25);
    background: rgba(166, 255, 0, 0.03);
    transform: scale(1.04);
}

.pricing-card.featured.visible {
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 30px 80px rgba(166, 255, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(166, 255, 0, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(166, 255, 0, 0); }
}

.pricing-tier-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.pricing-card[data-tier="bronze"] .pricing-tier-icon {
    color: #CD7F32;
}

.pricing-card[data-tier="silver"] .pricing-tier-icon {
    color: #C0C0C0;
}

.pricing-card[data-tier="gold"] .pricing-tier-icon {
    color: #FFD700;
}

.pricing-tier-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-card[data-tier="bronze"] .pricing-tier-label {
    color: #CD7F32;
}

.pricing-card[data-tier="silver"] .pricing-tier-label {
    color: #C0C0C0;
}

.pricing-card[data-tier="gold"] .pricing-tier-label {
    color: #FFD700;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-white);
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-monthly {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 28px;
}

.pricing-monthly span {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
}

.pricing-best-for {
    font-size: 0.78rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-bottom: 24px;
    font-style: italic;
}

.pricing-cta {
    width: 100%;
    padding: 15px 24px;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    background: transparent;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
}

.pricing-cta:hover::before {
    left: 100%;
}

.pricing-cta:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 30px rgba(166, 255, 0, 0.1);
    transform: scale(1.02);
}

.pricing-cta.featured-cta {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    font-weight: 700;
}

.pricing-cta.featured-cta:hover {
    background: #d4ff33;
    color: var(--bg-dark);
    box-shadow: 0 0 40px rgba(166, 255, 0, 0.3);
    transform: scale(1.04);
}

/* ===========================
   Checkout Modal
   =========================== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
    pointer-events: none;
}

.checkout-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.checkout-modal {
    background: #111111;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Custom scrollbar for checkout modal */
.checkout-modal::-webkit-scrollbar {
    width: 4px;
}
.checkout-modal::-webkit-scrollbar-track {
    background: transparent;
}
.checkout-modal::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.checkout-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.checkout-close svg {
    width: 18px;
    height: 18px;
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transform: rotate(90deg);
}

.checkout-header {
    text-align: center;
    margin-bottom: 24px;
}

.checkout-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.checkout-badge[data-tier="bronze"] {
    background: linear-gradient(135deg, #CD7F32, #E8A860);
    color: #1a1a1a;
}

.checkout-badge[data-tier="silver"] {
    background: linear-gradient(135deg, #C0C0C0, #E8E8E8);
    color: #1a1a1a;
}

.checkout-badge[data-tier="gold"] {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
}

.checkout-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.checkout-package-name {
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkout-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkout-summary-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-summary-row.total {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 14px;
}

.checkout-summary-row.total span:last-child {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.checkout-form {
    position: relative;
}

.checkout-form-group {
    position: relative;
    margin-bottom: 20px;
}

.checkout-form-group input,
.checkout-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    outline: none;
    transition: all 0.3s ease;
}

.checkout-form-group textarea {
    resize: none;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(166, 255, 0, 0.03);
    box-shadow: 0 0 0 3px rgba(166, 255, 0, 0.06);
}

.checkout-form-group label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

.checkout-form-group input:focus ~ label,
.checkout-form-group input:not(:placeholder-shown) ~ label,
.checkout-form-group textarea:focus ~ label,
.checkout-form-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 12px;
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    background: #111111;
    padding: 0 6px;
}

.checkout-form-group.full {
    margin-bottom: 24px;
}

.checkout-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.checkout-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.checkout-submit:hover::before {
    left: 100%;
}

.checkout-submit:hover {
    background: #d4ff33;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(166, 255, 0, 0.3);
}

.checkout-submit .btn-icon svg {
    width: 18px;
    height: 18px;
}

.checkout-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    opacity: 0.5;
    margin-top: 14px;
    line-height: 1.5;
}

.checkout-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.checkout-success.show {
    opacity: 1;
    visibility: visible;
}

.checkout-success .success-icon {
    background: var(--accent);
    color: var(--bg-dark);
}

.checkout-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.checkout-success p {
    color: var(--text-light);
    font-size: 1rem;
    text-align: center;
    max-width: 300px;
}

/* ===========================
   Footer
   =========================== */
#footer {
    background: var(--bg-dark);
    padding: 80px 40px 40px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 10px;
    font-style: italic;
}

.footer-logo span {
    color: var(--accent);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-white);
}

.social-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.social-link svg {
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover svg {
    color: var(--accent);
    transform: scale(1.15);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.5;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured.visible {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .checkout-modal {
        padding: 28px 20px;
    }

    .work-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

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

    .section {
        padding: var(--section-pad) 20px;
    }

    #navbar {
        padding: 15px 20px;
    }

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

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .big-text {
        font-size: clamp(2rem, 10vw, 4rem);
    }

    .service-card {
        padding: 25px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .price-amount {
        font-size: 2.4rem;
    }

    .form-services {
        gap: 8px;
    }

    .service-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===========================
   Custom Cursor (Desktop)
   =========================== */
@media (hover: hover) {
    .cursor-glow {
        position: fixed;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(166, 255, 0, 0.06), transparent 70%);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
    }
}

/* ===========================
   Checkout — Loading & Error States
   =========================== */
.checkout-submit:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none !important;
    box-shadow: none !important;
}

.checkout-submit:disabled::before {
    display: none;
}

.checkout-submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.checkout-submit .btn-loading .spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #ef4444;
    line-height: 1.5;
    animation: shakeError 0.4s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* ===========================
   Payment Result Pages (Success / Cancel)
   =========================== */
.result-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    padding: 20px;
}

.result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 520px;
    animation: resultFadeIn 0.8s ease;
}

@keyframes resultFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 40px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(10px);
}

.result-brand .nav-logo {
    text-align: center;
    opacity: 0.4;
    font-size: 1.2rem;
}

/* Animated Checkmark */
.result-icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
}

.result-checkmark,
.result-xmark {
    width: 72px;
    height: 72px;
}

.checkmark-circle {
    stroke: #22c55e;
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.6s ease forwards;
}

.checkmark-check {
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.4s ease 0.5s forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Animated X mark */
.xmark-circle {
    stroke: #ef4444;
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.6s ease forwards;
}

.xmark-x {
    stroke: #ef4444;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 0.3s ease 0.5s forwards;
}

.xmark-x:nth-child(3) {
    animation-delay: 0.65s;
}

/* Result page typography */
.result-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    color: var(--text-white);
    margin-bottom: 8px;
}

.result-subtitle {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 500;
}

.result-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.result-description strong {
    color: var(--text-white);
}

/* Result details */
.result-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 28px;
}

.result-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.result-detail-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}

.success-value {
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Next steps */
.result-next-steps {
    text-align: left;
    margin-bottom: 32px;
}

.result-next-steps h3 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 600;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.next-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(166, 255, 0, 0.1);
    border: 1px solid rgba(166, 255, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.next-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Result buttons */
.result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.success-btn {
    background: var(--accent);
    color: var(--bg-dark);
}

.success-btn:hover {
    background: #d4ff33;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(166, 255, 0, 0.3);
}

.result-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.retry-btn {
    background: var(--accent);
    color: var(--bg-dark);
}

.retry-btn:hover {
    background: #d4ff33;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(166, 255, 0, 0.3);
}

.contact-btn {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.contact-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
}

.result-help {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.result-help p {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.6;
}

.result-help a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.result-help a:hover {
    opacity: 0.8;
}

/* Result page responsive */
@media (max-width: 600px) {
    .result-card {
        padding: 36px 24px;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-btn {
        width: 100%;
    }
}

/* ===========================
   Reviews / Social Proof Section
   =========================== */
.reviews-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.6;
    margin-top: 16px;
}

.reviews-track-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
    margin-top: 50px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 24px;
    animation: scrollReviews 40s linear infinite;
    width: max-content;
    padding: 20px 0;
}

.reviews-track:hover {
    animation-play-state: paused;
}

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

.review-card {
    flex-shrink: 0;
    width: 380px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.review-stars {
    font-size: 1.2rem;
    color: #f5a623;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), rgba(255, 255, 255, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    flex-shrink: 0;
    object-fit: cover;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.review-role {
    display: none !important;
}

/* Trust Stats Bar */
.reviews-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.trust-stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.trust-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .review-card {
        width: 300px;
        padding: 24px;
    }

    .reviews-trust {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    .trust-number {
        font-size: 1.6rem;
    }
}

/* Reviews CTA & Modal Styles */
.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.reviews-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(166, 255, 0, 0.08);
}

.reviews-btn svg {
    transition: transform 0.3s ease;
}

.reviews-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Modal Container */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    z-index: 2;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.review-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close-modal-btn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Rating Group */
.rating-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.star-rating {
    display: flex;
    gap: 6px;
}

.interactive-star {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.interactive-star:hover {
    transform: scale(1.15);
}

.interactive-star.hovered,
.interactive-star.selected {
    color: #f5a623;
    text-shadow: 0 0 10px rgba(245, 166, 35, 0.3);
}

/* Review Form Inputs */
.review-form .form-group {
    position: relative;
    margin-bottom: 24px;
}

.review-form .form-group.full-width {
    margin-bottom: 30px;
}

.review-form input,
.review-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.review-form textarea {
    resize: none;
}

.review-form label {
    position: absolute;
    left: 0;
    top: 10px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.review-form input:focus ~ label,
.review-form input:not(:placeholder-shown) ~ label,
.review-form textarea:focus ~ label,
.review-form textarea:not(:placeholder-shown) ~ label {
    top: -14px;
    font-size: 0.8rem;
    color: var(--accent);
}

.review-form .form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.review-form input:focus ~ .form-line,
.review-form textarea:focus ~ .form-line {
    width: 100%;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.submit-review-btn {
    width: 100%;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-review-btn:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(166, 255, 0, 0.2);
}

.submit-review-btn svg {
    transition: transform 0.3s ease;
}

.submit-review-btn:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 24px;
    }
}

/* ===========================
   FAQ Section
   ===========================*/
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 300;
    transition: transform 0.4s ease;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 32px;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 32px;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================================
   CASE STUDY MODAL
   ============================================================ */
.case-study-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    pointer-events: none;
}

.case-study-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.case-study-modal {
    background: #0d0e11;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 45px;
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(0.96);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}

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

/* Custom scrollbar for case study modal */
.case-study-modal::-webkit-scrollbar {
    width: 4px;
}
.case-study-modal::-webkit-scrollbar-track {
    background: transparent;
}
.case-study-modal::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
}

.case-study-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    z-index: 10;
}
.case-study-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.case-study-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.case-study-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(186, 255, 41, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.case-study-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-study-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
}

@media (max-width: 768px) {
    .case-study-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.case-study-section {
    margin-bottom: 30px;
}
.case-study-section h4 {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}
.case-study-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.case-study-col-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.case-study-meta-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 24px;
}
.case-study-meta-box h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}
.case-study-meta-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.case-study-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.case-study-feature-list li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-left: 20px;
}
.case-study-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.case-study-launch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 16px;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(186, 255, 41, 0.2);
}
.case-study-launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(186, 255, 41, 0.4);
    background: #fff;
}
.case-study-launch-btn svg {
    transition: transform 0.3s ease;
}
.case-study-launch-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Portfolio Overlay Action buttons — Always visible & fully interactive on desktop & mobile */
.work-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.work-desc {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}
.work-actions .work-cta {
    margin-top: 0 !important;
    flex: 1.3;
    min-width: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 12px 14px;
    min-height: 44px;
    border-radius: 50px;
    background: var(--accent);
    color: #000;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}
.work-actions .work-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(166, 255, 0, 0.35);
}
.work-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #ffffff !important;
    font-size: 0.80rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    flex: 0.9;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.work-cta-secondary:hover {
    background: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.35);
}
.work-cta-secondary:hover {
    background: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

/* Pricing global terms banner */
.pricing-global-terms {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 20px auto 40px auto;
    backdrop-filter: blur(10px);
}

.pricing-term-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.term-num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.term-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.pricing-term-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

.work-item.work-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .pricing-global-terms {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 20px;
    }
    .pricing-term-divider {
        display: none;
    }
}

/* ===========================
   TRUST STRIP (Under Hero)
   =========================== */
.trust-strip {
    width: fit-content;
    max-width: 90%;
    margin: 30px auto 0 auto;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trust-strip-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.trust-strip-item strong {
    color: var(--accent);
    font-weight: 700;
}

.trust-strip-star {
    color: #ffb800;
    font-size: 1rem;
}

.trust-strip-divider {
    display: none;
}

@media (max-width: 768px) {
    .trust-strip {
        border-radius: 16px;
        flex-direction: column;
        gap: 10px;
        padding: 18px;
    }
    .trust-strip-divider {
        display: none;
    }
}

/* ===========================
   TRUST STRIP — Icon style
   =========================== */
.trust-strip-icon {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    color: var(--accent);
    flex-shrink: 0;
    vertical-align: middle;
}

.value-prop-icon svg {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
}

.condensed-service-icon svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

/* ===========================
   VALUE PROP CARDS (redesigned)
   =========================== */
.about-full-desc {
    margin-bottom: 36px;
}

.about-full-desc .about-description {
    max-width: 700px;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-prop-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.value-prop-card.vp-visible {
    opacity: 1;
    transform: translateY(0);
}

.value-prop-card:hover {
    transform: translateY(-8px);
    border-color: rgba(166, 255, 0, 0.35);
    box-shadow: 0 24px 60px rgba(166, 255, 0, 0.10), 0 0 0 1px rgba(166, 255, 0, 0.08);
}

/* Blueprint accent line on top edge on hover */
.value-prop-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.value-prop-card:hover::before {
    opacity: 1;
}

.value-prop-icon {
    width: 56px;
    height: 56px;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.85;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.value-prop-card:hover .value-prop-icon {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(166, 255, 0, 0.5));
}

.value-prop-icon svg {
    width: 100%;
    height: 100%;
}

.value-prop-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    font-style: italic;
}

.value-prop-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .value-prop-card[data-vp="1"],
    .value-prop-card[data-vp="2"] {
        transition-delay: 0s;
    }
}

/* ===========================
   CONDENSED ABOUT & SERVICES
   =========================== */
.condensed-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.condensed-service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.condensed-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.condensed-service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.condensed-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(166, 255, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.condensed-service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.condensed-service-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===========================
   PRICING TEASER CARDS (Homepage)
   =========================== */
.pricing-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 30px 0;
}

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

.pricing-teaser-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-teaser-card.featured {
    border-color: var(--accent);
    background: rgba(166, 255, 0, 0.04);
}

.pricing-teaser-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.pricing-teaser-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
}

.pricing-teaser-tier {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 6px;
}

.pricing-teaser-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin: 12px 0 6px 0;
}

.pricing-teaser-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-teaser-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===========================
   SINGLE TESTIMONIAL (Homepage)
   =========================== */
.single-testimonial-card {
    max-width: 800px;
    margin: 40px auto 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.single-testimonial-stars {
    color: #ffb800;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.single-testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 24px;
}

.single-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.single-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.single-testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.single-testimonial-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.single-testimonial-note span {
    color: var(--accent);
    font-weight: 600;
}

/* ===========================
   SUBPAGE HERO / HEADER
   =========================== */
.subpage-hero {
    padding-top: 140px;
    padding-bottom: 40px;
    text-align: center;
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 700;
}

/* ===========================
   STUNNING SECTION VIEW-ALL BUTTONS
   =========================== */
.section-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, #8ae600 100%);
    color: #050505 !important;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(166, 255, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.section-view-all-btn:hover::before {
    left: 100%;
}

.section-view-all-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(166, 255, 0, 0.45);
    color: #000 !important;
}

.section-view-all-btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    color: #000;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* ===========================
   CONCEPT BUILD & DEMO LABELS
   =========================== */
.concept-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(166, 255, 0, 0.4);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.concept-badge {
    display: inline-block;
    padding: 2px 7px;
    margin-left: 8px;
    background: rgba(166, 255, 0, 0.12);
    border: 1px solid rgba(166, 255, 0, 0.35);
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    vertical-align: middle;
}

/* ===========================
   WHY WORK WITH US (HONEST TRUST GRID)
   =========================== */
.trust-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .trust-guarantee-grid {
        grid-template-columns: 1fr;
    }
}

.trust-guarantee-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 28px;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-guarantee-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.trust-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(166, 255, 0, 0.1);
    border: 1px solid rgba(166, 255, 0, 0.25);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-guarantee-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.trust-guarantee-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

.trust-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 10px auto 30px auto;
}

/* Honest Review Notice & Button */
.honest-review-notice {
    text-align: center;
    margin-top: 40px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.honest-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(166, 255, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.honest-review-notice p {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 500;
}

/* ===========================
   SEO EDUCATION PAGE & TEASER LINK
   =========================== */
.seo-teaser-link {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.seo-teaser-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.seo-teaser-link a:hover {
    color: var(--accent-light, #c0ff33);
    text-decoration: underline;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.seo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.seo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(166, 255, 0, 0.1);
}

.seo-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.seo-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(166, 255, 0, 0.1);
    border: 1px solid rgba(166, 255, 0, 0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-card-icon svg {
    width: 22px;
    height: 22px;
}

.seo-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.seo-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.seo-analogy-box {
    background: linear-gradient(135deg, rgba(166, 255, 0, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(166, 255, 0, 0.3);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.seo-analogy-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(166, 255, 0, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seo-analogy-icon svg {
    width: 22px;
    height: 22px;
}

.seo-analogy-text p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-white);
}

.seo-content-block {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.seo-content-block p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 20px;
}

.seo-content-block strong {
    color: var(--text-white);
}

/* SEO Education Page Layout & Responsive Grid System */
.seo-page .section {
    min-height: auto !important;
    padding: 60px 40px;
}

.seo-page .subpage-hero {
    padding-top: 140px;
    padding-bottom: 20px;
}

@media (min-width: 1024px) {
    .seo-page .section {
        padding: 64px 60px;
    }
    .seo-page .subpage-hero {
        padding-top: 150px;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .seo-page .section {
        padding: 40px 24px;
    }
    .seo-page .subpage-hero {
        padding-top: 120px;
        padding-bottom: 20px;
    }
}

.seo-content-block {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 36px auto 0 auto;
    max-width: 1100px;
}

@media (min-width: 901px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 1200px) {
    .seo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

#faq .faq-container,
#faq .faq-header-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

#faq .faq-header-wrap .pricing-subtitle {
    max-width: 800px;
    margin: 0 0 32px 0 !important;
    text-align: left !important;
}

#faq .faq-container {
    margin-top: 40px;
}




/* ===========================
   BUILT ON — Technology Strip
   =========================== */
.built-on-section {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    min-height: auto !important;  /* Override .section's 100vh — logo strip doesn't need full viewport height */
}

.built-on-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.built-on-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    cursor: default;
    /* GSAP controls entrance animation - no CSS initial hidden state */
    /* Hover transitions applied after GSAP releases control via clearProps: 'all' */
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease,
                background 0.35s ease;
}

/* .built-on-visible is kept for caption reveal compatibility */
.built-on-item.built-on-visible {
    opacity: 1;
    transform: translateY(0);
}


.built-on-item:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(166, 255, 0, 0.3);
    box-shadow: 0 0 24px rgba(166, 255, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.built-on-item svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.35s ease, filter 0.35s ease;
}

.built-on-item:hover svg {
    color: var(--text-white);
    filter: drop-shadow(0 0 8px rgba(166, 255, 0, 0.4));
}

.built-on-brand-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    transition: color 0.35s ease, text-shadow 0.35s ease;
}

.built-on-item:hover .built-on-brand-text {
    color: var(--text-white);
    text-shadow: 0 0 12px rgba(166, 255, 0, 0.4);
}

.built-on-caption {
    margin-top: 28px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.built-on-caption.built-on-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
    .built-on-item {
        opacity: 1;
        transform: none;
        transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    }
    .built-on-item.built-on-visible {
        transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    }
    .built-on-item:hover {
        transform: scale(1.05);
    }
    .built-on-caption {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .built-on-strip {
        gap: 20px;
    }
    .built-on-item {
        width: 72px;
        height: 48px;
        padding: 8px 12px;
    }
    .built-on-item svg {
        width: 28px;
        height: 28px;
    }
    .built-on-brand-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* ===========================
   LEGAL PAGES (Privacy Policy & Terms of Service)
   =========================== */
.legal-page .section {
    min-height: auto !important;
    padding: 60px 40px;
}

.legal-page .subpage-hero {
    padding-top: 140px;
    padding-bottom: 15px;
}

#privacy-content,
#terms-content {
    padding-top: 10px !important;
    padding-bottom: 60px !important;
}

@media (min-width: 1024px) {
    .legal-page .section {
        padding: 64px 60px;
    }
    .legal-page .subpage-hero {
        padding-top: 150px;
        padding-bottom: 20px;
    }
    #privacy-content,
    #terms-content {
        padding-top: 10px !important;
        padding-bottom: 70px !important;
    }
}

@media (max-width: 768px) {
    .legal-page .section {
        padding: 40px 24px;
    }
    .legal-page .subpage-hero {
        padding-top: 120px;
        padding-bottom: 15px;
    }
    #privacy-content,
    #terms-content {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }
}

.legal-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 30px;
}

.legal-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 36px 40px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.legal-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.legal-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.legal-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card ul {
    margin: 0 0 16px 20px;
    color: var(--text-light);
}

.legal-card li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-card strong {
    color: var(--text-white);
}

.legal-card a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

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

/* Footer Legal Links */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-legal-links .sep {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.3;
}

@media (max-width: 600px) {
    .legal-card {
        padding: 24px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===========================
   DESKTOP LAYOUT — Proper responsive max-widths & nav
   Restores correct desktop rendering after removing the
   destructive mobile-override block.
   =========================== */

/* Desktop nav: show links, hide hamburger */
@media (min-width: 901px) {
    .nav-links {
        display: flex;
    }
    .nav-hamburger {
        display: none;
    }
    .mobile-menu {
        display: none !important;
    }
}

/* Condensed services grid: 2 columns on mid-width, 4 on wide */
@media (min-width: 901px) {
    .condensed-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1100px) {
    .condensed-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Value prop grid: 3 columns on desktop */
@media (min-width: 901px) {
    .value-prop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing teaser: 3 columns on desktop */
@media (min-width: 993px) {
    .pricing-teaser-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Trust guarantee grid: 2x2 on desktop (base rule already sets this) */
/* Work showcase: sizes already set in base CSS */

/* ===========================
   DESKTOP TYPOGRAPHY & LAYOUT CAPS
   The vw-based clamp() values were designed for mobile.
   At 1920px, 8vw = 153px (too big). These rules cap font sizes
   and layout proportions so the desktop looks right.
   =========================== */

@media (min-width: 1024px) {
    /* Cap the giant display headings */
    .big-text {
        font-size: clamp(2.8rem, 3.5vw, 4rem);
        margin-bottom: 40px;
    }

    /* Cap hero title */
    .hero-title {
        font-size: clamp(3rem, 4vw, 4.4rem);
        line-height: 1.1;
    }

    /* Cap hero subtitle */
    .hero-sub {
        font-size: 1.1rem;
    }

    /* Section padding — reasonable on wide screens */
    .section {
        padding: 100px 60px;
    }

    /* Content max-width: don't let it stretch to 1920px edge-to-edge */
    .section-content {
        max-width: 1100px;
        padding: 0 20px;
    }

    /* Hero content narrower so it doesn't span the full 1200px */
    .hero-content {
        max-width: 900px;
        margin: 0 auto;
    }

    /* About description: don't let it go full-page wide */
    .about-description {
        font-size: 1.1rem;
        max-width: 640px;
    }
}

@media (min-width: 1440px) {
    .big-text {
        font-size: 3.8rem;
    }

    .hero-title {
        font-size: 4.2rem;
    }
}

/* ===========================
   LOGO FIT PROTECTION
   =========================== */
.intro-logo,
.nav-logo,
.footer-logo {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

@media (max-width: 480px) {
    .intro-logo {
        font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important;
    }
    .nav-logo {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 580px) {
    .work-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .work-actions .work-cta,
    .work-cta-secondary {
        width: 100% !important;
        padding: 13px 20px !important;
        font-size: 0.85rem !important;
        min-height: 46px !important;
    }
}


