/* ================================================
   BOOSTMARKET LANDING PAGE STYLES
   Dark theme only - Modern freelance marketplace
   ================================================ */

/* CSS Variables - Dark Theme */
:root {
    /* Brand Colors */
    --gradient-primary: linear-gradient(135deg, #6366F1, #8B5CF6);
    --gradient-primary-hover: linear-gradient(135deg, #5558E3, #7C4FE0);
    --gradient-subtle: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    --color-primary: #6366F1;
    --color-primary-light: #8B5CF6;
    --color-primary-dark: #4F46E5;
    
    /* Background Colors - Dark */
    --bg-primary: #0A0A12;
    --bg-secondary: #12121F;
    --bg-tertiary: #1A1A2E;
    --bg-card: #16162A;
    --bg-card-hover: #1E1E38;
    
    /* Text Colors - Dark */
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-tertiary: #94A3B8;
    --text-muted: #64748B;
    --text-inverse: #FFFFFF;
    
    /* Border Colors - Dark */
    --border-light: #252540;
    --border-medium: #353560;
    
    /* Shadow - Dark */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
    --shadow-glow-strong: 0 0 80px rgba(99, 102, 241, 0.5);
    
    /* Spacing */
    --header-height: 72px;
    --section-padding: 100px;
    --container-max: 1280px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Typography */
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================================================
   BASE STYLES
   ================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn--md {
    padding: 12px 24px;
    font-size: 15px;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--text-inverse);
    box-shadow: var(--shadow-md), 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn--primary:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(99, 102, 241, 0.5);
}

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

.btn--secondary:hover {
    border-color: var(--color-primary);
    background: var(--bg-card-hover);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
}

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--white {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

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

.btn--outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__icon {
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Navigation - Compact */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width var(--transition-normal);
}

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

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

/* Header Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-btn span {
    display: none;
}

@media (min-width: 1200px) {
    .store-btn span {
        display: inline;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__gradient {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero__gradient-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero__content {
    max-width: 580px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-light);
    margin-bottom: 24px;
}

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

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

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.hero__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary-light);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 40px;
    transition: gap var(--transition-fast);
}

.hero__link:hover {
    gap: 12px;
}

.hero__link svg {
    width: 20px;
    height: 20px;
}

/* Social Proof */
.hero__social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__avatars {
    display: flex;
}

.hero__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 3px solid var(--bg-primary);
    margin-left: -12px;
}

.hero__avatar:first-child {
    margin-left: 0;
}

.hero__proof-text {
    font-size: 14px;
    color: var(--text-tertiary);
    max-width: 280px;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gradient-primary);
    filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Phone Mockups */
.hero__phones {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    position: absolute;
    transition: transform var(--transition-slow);
}

.phone--main {
    z-index: 3;
    animation: phone-float 6s ease-in-out infinite;
}

.phone--secondary {
    z-index: 2;
}

.phone--left {
    transform: translateX(-140px) translateY(40px) rotate(-8deg) scale(0.85);
    animation: phone-float 6s ease-in-out infinite 0.5s;
}

.phone--right {
    transform: translateX(140px) translateY(40px) rotate(8deg) scale(0.85);
    animation: phone-float 6s ease-in-out infinite 1s;
}

@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.phone--left {
    animation: phone-float-left 6s ease-in-out infinite 0.5s;
}

@keyframes phone-float-left {
    0%, 100% { transform: translateX(-140px) translateY(40px) rotate(-8deg) scale(0.85); }
    50% { transform: translateX(-140px) translateY(25px) rotate(-8deg) scale(0.85); }
}

.phone--right {
    animation: phone-float-right 6s ease-in-out infinite 1s;
}

@keyframes phone-float-right {
    0%, 100% { transform: translateX(140px) translateY(40px) rotate(8deg) scale(0.85); }
    50% { transform: translateX(140px) translateY(25px) rotate(8deg) scale(0.85); }
}

.phone__frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1E1E38, #16162A);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 60px rgba(99, 102, 241, 0.2);
    position: relative;
}

.phone__notch {
    width: 100px;
    height: 24px;
    background: #0A0A12;
    border-radius: 20px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone__screen {
    width: 100%;
    height: 100%;
    background: #0F0F1A;
    border-radius: 32px;
    overflow: hidden;
}

/* Screen Content */
.screen-content {
    padding: 50px 16px 16px;
    height: 100%;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.screen-header__filter {
    color: var(--color-primary);
    font-size: 12px;
}

.screen-header__back {
    font-size: 16px;
}

/* Task Cards in Phone */
.task-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.task-card--faded {
    opacity: 0.5;
}

.task-card__badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.task-card__badge--dev {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

.task-card__badge--marketing {
    background: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
}

.task-card__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.task-card__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 4px;
}

.task-card__meta {
    font-size: 10px;
    color: var(--text-tertiary);
}

/* Chat in Phone */
.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 16px;
}

.chat-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.4;
}

.chat-msg--incoming {
    background: var(--bg-card);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg--outgoing {
    background: var(--gradient-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
    border: 1px solid var(--border-light);
}

/* Stats in Phone */
.stats-content {
    text-align: center;
    padding-top: 20px;
}

.stats-avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.stats-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stats-role {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid var(--border-light);
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 10px;
    color: var(--text-tertiary);
}

.stats-balance {
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    padding: 16px;
    color: white;
}

.stats-balance__label {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.stats-balance__value {
    font-size: 18px;
    font-weight: 700;
}

/* ================================================
   SECTION STYLES
   ================================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   HOW IT WORKS - Fixed 4 columns
   ================================================ */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

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

.step {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
}

.step__number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.step__icon {
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-primary-light);
}

.step__title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step__text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step__connector {
    display: none;
}

/* ================================================
   MARKETPLACE SECTION
   ================================================ */
.marketplace {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.marketplace__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.marketplace__glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.marketplace__container {
    position: relative;
}

.marketplace__header {
    text-align: center;
    margin-bottom: 60px;
}

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

.marketplace__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.marketplace__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.marketplace__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.marketplace__feature svg {
    flex-shrink: 0;
}

.marketplace__cta {
    margin-top: 48px;
}

/* Service Cards - New Design */
.service-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(22, 22, 42, 0.8) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
}

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

.service-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.service-card__badge {
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card__desc {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.service-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.service-card__price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
}

.service-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.service-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FBBF24;
    font-weight: 600;
}

.service-card__time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-card__time svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* ================================================
   FEATURES SECTIONS
   ================================================ */
.features {
    padding: var(--section-padding) 0;
}

.features--clients {
    background: var(--bg-secondary);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-card--highlight {
    background: var(--gradient-primary);
    border: none;
}

.feature-card--highlight .feature-card__icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card--highlight .feature-card__title,
.feature-card--highlight .feature-card__text {
    color: white;
}

.feature-card--highlight .feature-card__text {
    opacity: 0.9;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary-light);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   SCREENSHOTS SECTION - Lighter, better slider
   ================================================ */
.screenshots {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.screenshots__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
}

.screenshots__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

.screenshots .container {
    position: relative;
}

.screenshots__slider {
    display: flex;
    gap: 24px;
    padding: 20px 0 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: center;
}

.screenshots__slider::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    text-align: center;
}

.screenshot-item__label {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.screenshot-phone {
    transition: transform var(--transition-normal);
}

.screenshot-item:hover .screenshot-phone {
    transform: translateY(-8px) scale(1.02);
}

.screenshot-phone__frame {
    width: 200px;
    height: 420px;
    background: linear-gradient(145deg, #1E1E38, #16162A);
    border-radius: 28px;
    padding: 8px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.15);
    position: relative;
}

.screenshot-phone__notch {
    width: 70px;
    height: 18px;
    background: #0A0A12;
    border-radius: 12px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.screenshot-phone__screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 22px;
    overflow: hidden;
}

/* Mock Screen Styles */
.mock-screen {
    height: 100%;
    padding: 36px 10px 10px;
    font-size: 10px;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 11px;
}

.mock-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.mock-tab {
    padding: 5px 10px;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: 9px;
    color: var(--text-tertiary);
}

.mock-tab--active {
    background: var(--gradient-primary);
    color: white;
}

.mock-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px;
    margin-bottom: 6px;
}

.mock-card__tag {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary-light);
    font-size: 8px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 4px;
}

.mock-card__tag--green {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

.mock-card__title {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.mock-card__price {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary-light);
}

/* Mock Detail */
.mock-detail {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.mock-detail h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.mock-detail__desc {
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.mock-detail__meta {
    display: flex;
    gap: 10px;
    font-size: 9px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
}

.mock-detail__btn {
    background: var(--gradient-primary);
    color: white;
    padding: 8px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 10px;
}

/* Mock Response */
.mock-response {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 8px;
    margin-bottom: 6px;
}

.mock-response__avatar {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
    font-weight: 600;
}

.mock-response__info {
    flex: 1;
}

.mock-response__name {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.mock-response__rating {
    font-size: 8px;
    color: var(--text-tertiary);
}

.mock-response__price {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary-light);
}

/* Mock Chat */
.mock-chat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.mock-msg {
    max-width: 75%;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 9px;
}

.mock-msg--in {
    background: var(--bg-secondary);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}

.mock-msg--out {
    background: var(--gradient-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
}

.mock-input {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-size: 9px;
    color: var(--text-muted);
}

/* Mock Profile */
.mock-profile {
    text-align: center;
    padding-top: 12px;
}

.mock-profile__avatar {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    margin: 0 auto 6px;
}

.mock-profile__name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mock-profile__role {
    font-size: 9px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.mock-profile__stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 8px;
    color: var(--text-secondary);
}

.mock-profile__stats strong {
    display: block;
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mock-profile__stats small {
    font-size: 8px;
}

/* ================================================
   VALUE PROPOSITION
   ================================================ */
.value {
    padding: var(--section-padding) 0;
}

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

.value-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
    color: #FBBF24;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card__role {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ================================================
   FAQ
   ================================================ */
.faq {
    padding: var(--section-padding) 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--color-primary-light);
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
    color: var(--color-primary-light);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-item__answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.final-cta__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.final-cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta__content {
    position: relative;
    text-align: center;
    color: white;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.final-cta__subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.final-cta__note {
    font-size: 14px;
    opacity: 0.7;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__brand .logo {
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 300px;
    line-height: 1.6;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__col-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__link {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-primary-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.footer__copyright {
    font-size: 14px;
    color: var(--text-tertiary);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

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

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

/* ================================================
   RESPONSIVE STYLES
   ================================================ */
@media (max-width: 1200px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero__content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero__cta {
        justify-content: center;
    }
    
    .hero__link {
        justify-content: center;
    }
    
    .hero__social-proof {
        justify-content: center;
    }
    
    .hero__visual {
        height: 500px;
    }
    
    .phone--left {
        transform: translateX(-120px) translateY(30px) rotate(-6deg) scale(0.8);
    }
    
    .phone--right {
        transform: translateX(120px) translateY(30px) rotate(6deg) scale(0.8);
    }
    
    .phone__frame {
        width: 240px;
        height: 500px;
    }
    
    .marketplace__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .marketplace__features {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --header-height: 64px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .header__actions .store-btn {
        display: none;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 40px);
    }
    
    .hero__visual {
        height: 400px;
    }
    
    .phone--secondary {
        display: none;
    }
    
    .phone__frame {
        width: 260px;
        height: 520px;
    }
    
    .btn--lg {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .value__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .screenshots__slider {
        justify-content: flex-start;
        padding-left: 16px;
    }
    
    .marketplace__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .marketplace__features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-card__header {
        margin-bottom: 16px;
    }
    
    .service-card__icon {
        width: 48px;
        height: 48px;
    }
    
    .service-card__title {
        font-size: 16px;
    }
    
    .service-card__desc {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .service-card__price {
        font-size: 20px;
    }
    
    .service-card__footer {
        padding-top: 16px;
    }
    
    /* Mobile Navigation */
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-light);
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
    }
    
    .nav.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav__link {
        font-size: 18px;
        padding: 8px 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero__cta {
        flex-direction: column;
    }
    
    .hero__cta .btn {
        width: 100%;
    }
    
    .hero__social-proof {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__avatars {
        justify-content: center;
    }
    
    .marketplace__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-card__header {
        flex-direction: row;
        align-items: center;
    }
    
    .service-card__title {
        font-size: 17px;
    }
    
    .service-card__desc {
        font-size: 14px;
    }
    
    .service-card__price {
        font-size: 22px;
    }
    
    .service-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .marketplace__cta .btn {
        width: 100%;
    }
    
    .footer__links {
        grid-template-columns: 1fr;
    }
    
    .final-cta__buttons {
        flex-direction: column;
    }
    
    .final-cta__buttons .btn {
        width: 100%;
    }
    
    .screenshot-phone__frame {
        width: 180px;
        height: 380px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
