/* ========================================
   LaundrSpot — Design System
   ======================================== */

:root {
    --bg: #fafaf9;
    --surface: #ffffff;
    --surface-2: #f5f5f0;
    --text: #1a1a19;
    --text-2: #6b6b65;
    --text-3: #9c9c95;
    --border: #e8e8e3;
    --primary: #5b4cff;
    --primary-hover: #4a3be6;
    --primary-light: #ededff;
    --accent: #ff6b4a;
    --accent-light: #fff0ec;
    --success: #22c55e;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
}

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

/* ========================================
   Cursor Blob
   ======================================== */
.cursor-blob {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,76,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                opacity 0.3s ease;
    will-change: transform;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    display: flex;
    color: var(--primary);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-2);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn-primary {
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(91,76,255,0.3);
}

.btn-ghost {
    padding: 10px 20px;
    background: transparent;
    color: var(--text);
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-ghost:hover {
    background: var(--surface-2);
}

.btn-secondary {
    padding: 14px 32px;
    background: var(--surface);
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-outline {
    padding: 12px 28px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
}

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

.btn-white {
    padding: 14px 32px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost-light {
    padding: 14px 28px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.25);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
}

.mobile-menu-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(91,76,255,0.12);
    top: 10%;
    left: -5%;
    animation: float 12s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255,107,74,0.1);
    top: 50%;
    right: 5%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(79,172,254,0.1);
    bottom: 10%;
    left: 30%;
    animation: float 10s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}

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

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

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title .line {
    display: block;
    animation: fadeInUp 0.6s ease both;
}

.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.2s; }
.hero-title .line:nth-child(3) { animation-delay: 0.3s; }

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

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

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-2);
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.35s both;
}

/* Search Box */
.hero-search {
    animation: fadeInUp 0.6s ease 0.45s both;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 60px;
    padding: 6px 6px 6px 20px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(91,76,255,0.1), var(--shadow-md);
}

.search-icon {
    color: var(--text-3);
    flex-shrink: 0;
    display: flex;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    background: transparent;
    color: var(--text);
}

.search-box input::placeholder {
    color: var(--text-3);
}

.search-btn {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.search-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: var(--surface-2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-2);
    cursor: pointer;
    transition: all var(--transition);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 48px;
    animation: fadeInUp 0.6s ease 0.55s both;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.stat-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-3);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual / Phone Mockup */
.hero-visual {
    flex: 0 0 340px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--text);
    border-radius: 36px;
    padding: 12px;
    position: relative;
    box-shadow: var(--shadow-xl),
                inset 0 0 0 2px rgba(255,255,255,0.1);
    margin: 0 auto;
}

.phone-notch {
    width: 100px;
    height: 28px;
    background: var(--text);
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 44px 18px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.app-filter {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.app-card {
    display: flex;
    gap: 12px;
    padding: 12px 18px;
    align-items: center;
    animation: slideInCard 0.5s ease both;
    animation-delay: calc(var(--delay) * 0.15s + 0.8s);
}

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

.app-card-img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.app-card-info strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
}

.app-card-info span {
    font-size: 0.7rem;
    color: var(--text-3);
}

.app-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.62rem !important;
    font-weight: 600;
    width: fit-content;
}

.app-tag.open {
    background: #dcfce7;
    color: #16a34a;
}

.app-tag.closed {
    background: #fef3c7;
    color: #d97706;
}

.app-bottom-bar {
    margin-top: auto;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.app-tab {
    color: var(--text);
    display: flex;
}

.app-tab.active {
    color: var(--primary);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 2;
}

.card-rating {
    top: 60px;
    right: -20px;
    animation-delay: 0s;
}

.card-pickup {
    bottom: 80px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fc-icon {
    font-size: 1.5rem;
}

.floating-card strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    display: block;
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--text-3);
}

/* ========================================
   Marquee
   ======================================== */
.marquee-section {
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-2);
}

.marquee-track .dot {
    color: var(--primary);
}

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

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-2);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   How it Works
   ======================================== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    max-width: 300px;
    position: relative;
    transition: all var(--transition);
}

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

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 50px;
}

.step-visual {
    margin-bottom: 24px;
}

.step-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--primary-light);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

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

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--border);
}

/* ========================================
   Shops Grid
   ======================================== */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: all var(--transition);
}

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

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

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

.shop-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

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

.shop-card-hero {
    height: 160px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-card-hero .shop-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.shop-card-hero .shop-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-sm);
}

.shop-card-body {
    padding: 20px;
}

.shop-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.shop-card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.shop-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f59e0b;
}

.shop-meta {
    display: flex;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-3);
    margin-bottom: 14px;
}

.shop-services {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.shop-services span {
    padding: 4px 10px;
    background: var(--surface-2);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-2);
}

.shop-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.shop-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

.shop-price span {
    font-size: 0.78rem;
    color: var(--text-3);
    font-weight: 400;
}

.shop-book-btn {
    padding: 8px 18px;
    background: var(--primary-light);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}

.shop-book-btn:hover {
    background: var(--primary);
    color: white;
}

.shop-status {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 1;
}

.shop-status.open {
    background: rgba(34,197,94,0.15);
    color: #16a34a;
}

.shop-status.closed {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

.shops-cta {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   Pricing
   ======================================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-3);
    transition: color var(--transition);
}

.toggle-label.active {
    color: var(--text);
    font-weight: 600;
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--border);
    border: none;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(24px);
}

.save-badge {
    padding: 4px 10px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.price-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

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

.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
}

.price-card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.price-card-header p {
    font-size: 0.85rem;
    color: var(--text-3);
    margin-bottom: 24px;
}

.price-amount {
    margin-bottom: 28px;
}

.currency {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 2;
}

.amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.per {
    font-size: 0.9rem;
    color: var(--text-3);
}

.hidden {
    display: none;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

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

.price-features li.muted {
    color: var(--text-3);
}

.check {
    font-weight: 700;
    color: var(--success);
    font-size: 0.85rem;
}

.muted .check {
    color: var(--text-3);
}

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

/* ========================================
   Reviews
   ======================================== */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

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

.review-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.88rem;
}

.review-author span {
    font-size: 0.78rem;
    color: var(--text-3);
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
    padding: 60px 0 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 24px;
    padding: 72px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 480px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    color: rgba(255,255,255,0.6);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-social a:hover {
    color: white;
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--surface);
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-3);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal .modal-sub {
    color: var(--text-2);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
    background: var(--bg);
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91,76,255,0.1);
}

.modal .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 8px;
    font-size: 1rem;
}

.modal-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-3);
}

.modal-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 0.82rem;
    color: var(--text-3);
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.btn-social {
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text);
}

.btn-social:hover {
    background: var(--surface-2);
    border-color: var(--text-3);
}

/* ========================================
   Scroll Animations
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 48px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        flex: none;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

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

    .search-box {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 12px;
        gap: 8px;
    }

    .search-box input {
        text-align: center;
        padding: 8px;
    }

    .search-icon {
        display: none;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

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

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

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

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

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

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

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .floating-card {
        display: none;
    }

    .cursor-blob {
        display: none;
    }
}

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

    .section {
        padding: 64px 0;
    }

    .search-tags {
        justify-content: center;
    }
}
