/* ============================================
   CLEAR PATH APP — Miami Vice Dark Theme
   ============================================ */

:root {
    /* Miami Vice Palette */
    --pink: #ff2d95;
    --pink-glow: rgba(255, 45, 149, 0.4);
    --cyan: #0ff0fc;
    --cyan-glow: rgba(15, 240, 252, 0.4);
    --purple: #b24dff;
    --purple-glow: rgba(178, 77, 255, 0.4);

    /* Dark Theme */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1c1c28;
    --bg-input: #1a1a25;

    /* Text */
    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #55556a;

    /* Borders */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Spacing */
    --nav-height: 72px;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ---- Animated Background ---- */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        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: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: glowDrift 20s ease-in-out infinite alternate;
}

.bg-glow--1 {
    background: var(--pink);
    top: -200px;
    right: -200px;
}

.bg-glow--2 {
    background: var(--cyan);
    bottom: -200px;
    left: -200px;
    animation-delay: -7s;
}

.bg-glow--3 {
    background: var(--purple);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.08;
}

@keyframes glowDrift {
    0% { transform: translate(0, 0); }
    33% { transform: translate(40px, -30px); }
    66% { transform: translate(-30px, 40px); }
    100% { transform: translate(20px, -20px); }
}

/* ---- Utilities ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan { color: var(--cyan); }
.text-pink { color: var(--pink); }
.text-purple { color: var(--purple); }

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s var(--ease);
    background: transparent;
}

.nav--scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    z-index: 1001;
}

.nav__logo-img {
    height: 36px;
    width: auto;
}

.nav__logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

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

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    transition: width 0.3s var(--ease);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 20px var(--pink-glow);
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px var(--pink-glow);
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

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

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

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

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    box-shadow: 0 4px 20px var(--pink-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--pink-glow);
}

.btn--secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn--secondary:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(15, 240, 252, 0.1);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
}

.btn--outline:hover {
    background: rgba(15, 240, 252, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(15, 240, 252, 0.15);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

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

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-height) + 40px) 0 60px;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(15, 240, 252, 0.08);
    border: 1px solid rgba(15, 240, 252, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--cyan-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 40px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Phone Mockup */
.hero__visual {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero__phone {
    width: 280px;
    height: 560px;
    background: var(--bg-secondary);
    border-radius: 36px;
    border: 2px solid var(--border);
    padding: 12px;
    position: relative;
    box-shadow:
        0 0 60px var(--pink-glow),
        0 0 120px rgba(178, 77, 255, 0.1),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    animation: phoneFloat 6s ease-in-out infinite;
    transform: rotateY(-5deg) rotateX(5deg);
}

@keyframes phoneFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(5deg) translateY(-15px); }
}

.hero__phone-notch {
    width: 100px;
    height: 28px;
    background: var(--bg-primary);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 16px;
}

.hero__phone-screen {
    padding: 0 16px;
}

.hero__phone-header {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.hero__phone-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    animation: cardSlideIn 0.6s var(--ease) both;
}

.hero__phone-card--1 { animation-delay: 0.2s; }
.hero__phone-card--2 { animation-delay: 0.4s; }
.hero__phone-card--3 { animation-delay: 0.6s; }

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

.hero__phone-card-icon {
    font-size: 1.5rem;
}

.hero__phone-card-title {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.hero__phone-card-value {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
}

.hero__phone-bar {
    margin-top: 20px;
    height: 6px;
    background: var(--bg-card);
    border-radius: 3px;
    overflow: hidden;
}

.hero__phone-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    border-radius: 3px;
    animation: barFill 2s var(--ease) 1s forwards;
}

@keyframes barFill {
    to { width: 78%; }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: fadeInUp 1s var(--ease) 1.5s both;
}

.hero__scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.5; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* ---- Section Styles ---- */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section--alt {
    background: var(--bg-secondary);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.about__card {
    padding: 36px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.about__card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about__card-icon {
    margin-bottom: 20px;
}

.about__card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about__card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Products Section ---- */
.products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.product-card {
    padding: 36px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-card--featured {
    grid-row: span 2;
    border-color: rgba(255, 45, 149, 0.2);
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.05), rgba(178, 77, 255, 0.05));
}

.product-card--featured::before {
    opacity: 1;
}

.product-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    margin-bottom: 20px;
}

.product-card__badge--coming {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.product-card__icon-wrap {
    margin-bottom: 20px;
}

.product-card__icon {
    font-size: 2.5rem;
}

.product-card__logo {
    border-radius: 8px;
}

.pricing__product-logo {
    border-radius: 8px;
    flex-shrink: 0;
}

.demo-tab__logo {
    border-radius: 4px;
}

.product-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card__features {
    list-style: none;
    margin-bottom: 24px;
}

.product-card__features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card__features li::before {
    content: '→';
    color: var(--cyan);
    font-weight: 700;
}

/* ---- Pricing Section ---- */
.pricing__category-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-align: center;
}

/* Product Section Headers */
.pricing__product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.pricing__product-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing__product-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.pricing__product-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Enterprise Card */
.pricing__enterprise-grid {
    margin-bottom: 64px;
}

.pricing-card--enterprise {
    padding: 48px;
    background: linear-gradient(135deg, rgba(15, 240, 252, 0.04), rgba(178, 77, 255, 0.04));
    border-color: rgba(15, 240, 252, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(15, 240, 252, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card--enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.pricing-card__badge--cyan {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.pricing-card__period--range {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pricing-card__enterprise-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card__feature-col .pricing-card__features {
    margin-bottom: 0;
}

.pricing-card__roi {
    display: flex;
    gap: 32px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.pricing-card__roi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-card__roi-value {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
}

.pricing-card__roi-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.pricing-card {
    padding: 36px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card--featured {
    border-color: var(--pink);
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.05), rgba(178, 77, 255, 0.05));
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.1);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card__header {
    margin-bottom: 24px;
}

.pricing-card__name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.pricing-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-card__price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-card__amount {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card__period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__features li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Custom Dev Cards */
.pricing__dev-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing-dev-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.pricing-dev-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-dev-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pricing-dev-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-dev-card__price {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 12px;
}

.pricing-dev-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Included With Every Project */
.pricing__included {
    margin-bottom: 48px;
}

.pricing__included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing__included-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing__included-check {
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing__cta {
    text-align: center;
    margin-top: 16px;
}

.pricing__cta p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ---- Process / Services ---- */
.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--pink), var(--cyan), var(--purple));
    opacity: 0.3;
}

.process__step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process__step:last-child {
    margin-bottom: 0;
}

.process__step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--pink);
    border-radius: 50%;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--pink);
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px var(--pink-glow);
}

.process__step:nth-child(2) .process__step-number {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.process__step:nth-child(3) .process__step-number {
    border-color: var(--purple);
    color: var(--purple);
    box-shadow: 0 0 20px var(--purple-glow);
}

.process__step:nth-child(4) .process__step-number {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.process__step-content {
    padding-top: 12px;
}

.process__step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process__step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Demos Section ---- */
.demos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.demo-card {
    transition: all 0.4s var(--ease);
}

.demo-card:hover {
    transform: translateY(-4px);
}

.demo-card__screen {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 20px;
}

.demo-card__toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.demo-card__dots {
    display: flex;
    gap: 6px;
}

.demo-card__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-card__dots span:nth-child(1) { background: #ff5f57; }
.demo-card__dots span:nth-child(2) { background: #febc2e; }
.demo-card__dots span:nth-child(3) { background: #28c840; }

.demo-card__url {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.demo-card__content {
    padding: 20px;
    display: flex;
    gap: 16px;
    min-height: 220px;
}

.demo-card__sidebar {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.demo-bar {
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    width: 100%;
}

.demo-bar--active {
    background: linear-gradient(90deg, var(--pink), var(--purple));
    box-shadow: 0 0 10px var(--pink-glow);
}

.demo-bar--short {
    width: 70%;
}

.demo-bar--xs {
    width: 45%;
    height: 6px;
}

.demo-card__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-card__chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 8px 0;
}

.demo-chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--cyan), var(--purple));
    border-radius: 4px 4px 0 0;
    height: var(--height);
    animation: chartGrow 1.2s var(--ease) both;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.demo-card:hover .demo-chart-bar {
    opacity: 1;
}

@keyframes chartGrow {
    from { height: 0; }
}

.demo-card__metrics {
    display: flex;
    gap: 16px;
}

.demo-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-metric__value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
}

.demo-metric__label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Orders Demo */
.demo-card__content--orders {
    flex-direction: column;
    gap: 12px;
}

.demo-order {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-input);
    border-radius: 8px;
    animation: orderSlide 0.5s var(--ease) both;
    animation-delay: var(--delay);
}

@keyframes orderSlide {
    from { opacity: 0; transform: translateY(10px); }
}

.demo-order__status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.demo-order__status--success { background: #28c840; box-shadow: 0 0 8px rgba(40, 200, 64, 0.4); }
.demo-order__status--processing { background: var(--cyan); box-shadow: 0 0 8px var(--cyan-glow); animation: pulse 1.5s infinite; }
.demo-order__status--new { background: var(--purple); box-shadow: 0 0 8px var(--purple-glow); }

.demo-order__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-order__tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(40, 200, 64, 0.1);
    color: #28c840;
    flex-shrink: 0;
}

.demo-order__tag--processing {
    background: rgba(15, 240, 252, 0.1);
    color: var(--cyan);
}

.demo-order__tag--new {
    background: rgba(178, 77, 255, 0.1);
    color: var(--purple);
}

.demo-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.demo-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Contact Section ---- */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

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

.contact__info-card {
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.contact__info-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.contact__info-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact__info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

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

/* ---- Forms ---- */
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
    outline: none;
}

.form__input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(15, 240, 252, 0.1);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238888a0' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Booking Form */
.booking__container {
    max-width: 700px;
    margin: 0 auto;
}

.booking__form {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
}

/* ---- Footer ---- */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

.footer__links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer__links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--cyan);
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- Modal ---- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.modal--active {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s var(--ease);
}

.modal--active .modal__content {
    transform: scale(1);
}

.modal__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    color: white;
    font-weight: 700;
}

.modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal__text {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ---- Demo Showcase (Video) ---- */
.demo-showcase {
    margin-bottom: 64px;
}

.demo-showcase__player {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 16px;
}

.demo-showcase__toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
}

.demo-showcase__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-primary);
    overflow: hidden;
}

.demo-showcase__video iframe,
.demo-showcase__video video {
    width: 100%;
    height: 100%;
    border: none;
}

.demo-showcase__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.05), rgba(15, 240, 252, 0.05));
    cursor: pointer;
    transition: background 0.3s;
}

.demo-showcase__placeholder:hover {
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.1), rgba(15, 240, 252, 0.1));
}

.demo-showcase__play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--pink-glow);
    transition: all 0.3s var(--ease);
}

.demo-showcase__placeholder:hover .demo-showcase__play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 60px var(--pink-glow);
}

.demo-showcase__label {
    font-size: 1.1rem;
    font-weight: 600;
}

.demo-showcase__sublabel {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.demo-showcase__tabs {
    display: flex;
    gap: 8px;
}

.demo-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.demo-tab:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.demo-tab--active {
    border-color: var(--pink);
    color: var(--text-primary);
    background: rgba(255, 45, 149, 0.08);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.1);
}

.demo-tab__icon {
    font-size: 1.1rem;
}

/* ---- Screenshot Gallery ---- */
.screenshots {
    margin-top: 64px;
}

.screenshots__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-secondary);
}

.screenshots__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.screenshot {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.screenshot:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.screenshot__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-card);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- Footer Social ---- */
.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
}

.footer__social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

/* ---- Error Modal Icon ---- */
.modal__icon--error {
    background: linear-gradient(135deg, #ff5f57, var(--pink));
}

/* ---- Button Loading State ---- */
.btn--loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn--loading span {
    opacity: 0;
}

.btn--loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 36px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

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

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 64px;
    }

    .pricing__dev-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 48px;
    }

    .pricing__included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .pricing-card__roi {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .product-card--featured {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--ease);
    }

    .nav__links--active {
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        font-size: 1.3rem;
    }

    .nav__toggle {
        display: flex;
    }

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

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

    .demo-showcase__tabs {
        flex-direction: column;
    }

    .screenshots__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .booking__form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

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

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