/* ===== ROOT & RESET ===== */
:root {
    --red: #cc0000;
    --red-dark: #a80000;
    --red-light: #ff2222;
    --dark: #111111;
    --dark-2: #1c1c1c;
    --dark-3: #2a2a2a;
    --mid: #555555;
    --gray: #888888;
    --gray-light: #bbbbbb;
    --border: #e8e8e8;
    --border-dark: rgba(255,255,255,0.12);
    --bg: #f5f5f5;
    --bg-2: #fafafa;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #cc0000;
    --radius: 6px;
    --radius-lg: 16px;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 60px rgba(0,0,0,0.14);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 72px;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.navbar.light-bg {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
.navbar.light-bg .navbar-brand,
.navbar.light-bg .navbar-links a { color: var(--dark); }
.navbar.light-bg .hamburger span { background: var(--dark); }
.navbar.light-bg .btn-nav-ghost { color: var(--dark) !important; border-color: var(--border); }
.navbar.light-bg .btn-nav-ghost:hover { border-color: var(--dark); }
.navbar .container { display: flex; align-items: center; height: 72px; gap: 48px; }

.navbar-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.25rem;
    color: white; letter-spacing: -0.5px; flex-shrink: 0;
}
.brand-icon {
    width: 34px; height: 34px;
    background: var(--red);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.85rem;
}
.brand-accent { color: var(--red); }
.navbar.light-bg .brand-accent { color: var(--red); }

.navbar-links { display: flex; align-items: center; gap: 36px; flex: 1; }
.navbar-links a {
    font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.9); transition: var(--transition);
    letter-spacing: 0.2px; white-space: nowrap;
}
.navbar-links a:hover, .navbar-links a.active { color: white; }
.navbar.light-bg .navbar-links a { color: var(--mid); }
.navbar.light-bg .navbar-links a:hover, .navbar.light-bg .navbar-links a.active { color: var(--dark); }

.navbar-actions { display: flex; align-items: center; gap: 8px; }

.btn-nav {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 20px;
    background: var(--red); color: white !important;
    border-radius: var(--radius); font-size: 0.82rem; font-weight: 600;
    transition: var(--transition); white-space: nowrap;
}
.btn-nav:hover { background: var(--red-dark); }

.btn-nav-ghost {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 18px;
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius); font-size: 0.82rem; font-weight: 500;
    transition: var(--transition); white-space: nowrap;
}
.btn-nav-ghost:hover { border-color: rgba(255,255,255,0.7); color: white !important; }

.btn-nav-admin {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; background: rgba(255,255,255,0.12);
    color: white !important; border-radius: var(--radius);
    font-size: 0.8rem; font-weight: 600; transition: var(--transition);
}

.btn-nav-icon {
    position: relative; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius); color: rgba(255,255,255,0.8);
    transition: var(--transition); background: rgba(255,255,255,0.1);
}
.btn-nav-icon:hover { background: rgba(255,255,255,0.2); color: white; }
.navbar.light-bg .btn-nav-icon { color: var(--mid); background: transparent; border: 1px solid var(--border); }
.navbar.light-bg .btn-nav-icon:hover { color: var(--dark); border-color: var(--dark); }

.badge-count {
    position: absolute; top: -4px; right: -4px;
    background: var(--red); color: white;
    font-size: 9px; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

.mobile-menu {
    display: none; flex-direction: column;
    padding: 16px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
}
.mobile-menu a, .mobile-menu button {
    padding: 14px 0; font-size: 1rem; color: rgba(255,255,255,0.75);
    font-weight: 400; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block; width: 100%; text-align: left; background: none;
}
.mobile-menu-divider { margin: 6px 0; }

/* ===== ALERTS ===== */
.alert-toast {
    position: fixed; top: 84px; right: 24px; z-index: 9999;
    padding: 14px 20px; border-radius: var(--radius);
    display: flex; align-items: center; gap: 10px;
    font-weight: 500; font-size: 0.875rem;
    box-shadow: var(--shadow-lg); animation: slideIn 0.3s ease; max-width: 400px;
}
.alert-toast.success { background: #1a3320; color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.alert-toast.error { background: #2e1212; color: #fca5a5; border: 1px solid rgba(252,165,165,0.2); }
.alert-toast button { margin-left: auto; color: inherit; opacity: 0.6; }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--red); margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: var(--dark); letter-spacing: -1.5px;
    line-height: 1.1; margin-bottom: 14px;
}
.section-header p { font-size: 1rem; color: var(--gray); max-width: 500px; margin: 0 auto; font-weight: 300; }

/* ===== HERO — full screen, dark, BYD inspired ===== */
.hero {
    min-height: 100vh;
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end;
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    z-index: 0;
}

/* Animated gradient orbs */
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.35;
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #cc0000, transparent);
    top: -100px; right: -100px;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #880000, transparent);
    bottom: 0; left: -50px;
    animation-delay: 3s; opacity: 0.2;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Subtle grid overlay */
.hero-grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Decorative images layer */
.hero-img-layer {
    position: absolute; inset: 0; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    pointer-events: none;
}

.hero-img-panel {
    position: relative; overflow: hidden;
}

.hero-img-panel img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.6s ease;
}

/* Right side collage */
.hero-collage {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 50%; z-index: 2;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    pointer-events: none;
}

.hero-collage-img {
    overflow: hidden; position: relative;
}

.hero-collage-img img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.3;
    filter: saturate(0.7) brightness(0.6);
}

.hero-collage-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, #0a0a0a, transparent 60%);
}

.hero-content {
    position: relative; z-index: 10;
    max-width: 700px; padding: 0 0 0 48px;
}

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--red); margin-bottom: 24px;
    opacity: 0;
}
.hero-eyebrow::before {
    content: ''; width: 28px; height: 2px; background: var(--red);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900; line-height: 1.0;
    color: white; letter-spacing: -3px;
    margin-bottom: 24px; opacity: 0; transform: translateY(40px);
}
.hero-title em { font-style: normal; color: var(--red); }

.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.55);
    margin-bottom: 48px; opacity: 0; transform: translateY(20px);
    font-weight: 300; line-height: 1.7; max-width: 520px;
}

.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
}

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 36px; background: var(--red); color: white;
    border-radius: var(--radius); font-size: 0.875rem; font-weight: 700;
    transition: var(--transition); letter-spacing: 0.3px; white-space: nowrap;
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(204,0,0,0.4); }

.btn-hero-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; background: transparent;
    border: 1px solid rgba(255,255,255,0.3); color: white;
    border-radius: var(--radius); font-size: 0.875rem; font-weight: 500;
    transition: var(--transition);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* Hero bottom stats bar */
.hero-stats-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
    display: flex; justify-content: flex-start;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    opacity: 0;
}
.hero-stat-item {
    padding: 22px 48px; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.hero-stat-item:first-child { padding-left: 48px; }
.hero-stat-num {
    display: block; font-size: 1.8rem; font-weight: 900;
    color: white; letter-spacing: -1px; line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }

.hero-scroll {
    position: absolute; bottom: 80px; right: 48px; z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.35); cursor: pointer;
}
.hero-scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ===== FEATURED STORES — BYD grid style ===== */
.featured-stores {
    padding: 0;
    background: var(--dark);
}

.featured-stores-header {
    padding: 80px 48px 60px;
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}

.featured-stores-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800; color: white; letter-spacing: -1.5px; line-height: 1.1;
}

.featured-stores-header p { font-size: 0.9rem; color: rgba(255,255,255,0.4); max-width: 320px; font-weight: 300; line-height: 1.7; }

/* Store cards grid — BYD model grid */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 2px;
    background: #1a1a1a;
}

.store-card {
    position: relative; overflow: hidden;
    background: #111; cursor: pointer;
    transition: var(--transition);
    min-height: 280px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0;
    border: none;
    font-family: var(--font);
    text-align: left;
}

.store-card.featured {
    grid-column: span 2;
    min-height: 380px;
}

.store-card-bg {
    position: absolute; inset: 0;
    background: var(--store-color, #111);
    transition: transform 0.5s ease;
}

/* Store background images using CSS gradients + pattern */
.store-card.amazon .store-card-bg { background: linear-gradient(135deg, #1a0f00 0%, #2d1800 100%); }
.store-card.ebay .store-card-bg { background: linear-gradient(135deg, #1a0000 0%, #001a33 100%); }
.store-card.nike .store-card-bg { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); }
.store-card.farfetch .store-card-bg { background: linear-gradient(135deg, #0d0d12 0%, #1a1a2a 100%); }
.store-card.zara .store-card-bg { background: linear-gradient(135deg, #0f0f0f 0%, #1c1c1c 100%); }
.store-card.hm .store-card-bg { background: linear-gradient(135deg, #1a0000 0%, #2a0000 100%); }
.store-card.asos .store-card-bg { background: linear-gradient(135deg, #080810 0%, #111120 100%); }
.store-card.other .store-card-bg { background: linear-gradient(135deg, #0a0505 0%, #1a0808 100%); }

/* Store logo watermark */
.store-card-logo-bg {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.06; font-size: 8rem; font-weight: 900;
    transition: opacity 0.4s ease;
}

.store-card:hover .store-card-logo-bg { opacity: 0.1; }
.store-card:hover .store-card-bg { transform: scale(1.02); }

/* Gradient overlay */
.store-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 2;
}

/* Bottom line accent */
.store-card-accent {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--store-accent, var(--red));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}
.store-card:hover .store-card-accent,
.store-card.selected .store-card-accent { transform: scaleX(1); }

.store-card-content {
    position: relative; z-index: 3;
    padding: 28px 32px;
    display: flex; flex-direction: column; gap: 8px;
}

.store-card-icon {
    margin-bottom: 8px;
    height: 44px; display: flex; align-items: center;
}

.store-card-name {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.store-card-label {
    font-size: 1.1rem; font-weight: 700; color: white;
    letter-spacing: -0.3px;
}

.store-card.featured .store-card-label { font-size: 1.4rem; }

.store-card-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255,255,255,0.5);
}

/* Selected state */
.store-card.selected {
    outline: 2px solid var(--red);
    outline-offset: -2px;
    z-index: 1;
}

.store-card.selected .store-card-name { color: var(--red); }

/* ===== ORDER TOOL ===== */
.order-tool-section {
    background: white;
    padding: 0;
}

.order-input-panel {
    background: white;
    border-top: 1px solid var(--border);
    padding: 40px 48px;
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1280px;
    margin: 0 auto;
}

.order-input-panel.visible { display: flex; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

.order-input-top {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.selected-store-info {
    display: flex; align-items: center; gap: 12px;
}
.selected-store-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0;
}
.selected-store-name { font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.selected-store-sub { font-size: 0.78rem; color: var(--gray); }

.change-site {
    background: none; border: none; color: var(--gray);
    font-size: 0.78rem; cursor: pointer; text-decoration: underline;
    padding: 0; font-family: var(--font); transition: var(--transition);
}
.change-site:hover { color: var(--dark); }

.link-input-wrap {
    display: flex; gap: 0;
    border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--bg-2);
}
.link-input-wrap:focus-within {
    border-color: var(--dark);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
    background: white;
}
.link-input {
    flex: 1; border: none; outline: none;
    font-size: 0.95rem; padding: 18px 24px;
    color: var(--dark); background: transparent;
}
.link-input::placeholder { color: #bbb; }

.btn-analyze {
    padding: 18px 32px; background: var(--red); color: white;
    border-radius: 0; font-size: 0.875rem; font-weight: 700;
    white-space: nowrap; transition: var(--transition);
    display: flex; align-items: center; gap: 10px;
}
.btn-analyze:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-analyze:not(:disabled):hover { background: var(--red-dark); }

.link-hint {
    font-size: 0.75rem; color: var(--gray-light);
    display: flex; align-items: center; gap: 6px;
}

/* Result card */
.result-card {
    margin-top: 0; padding: 40px 48px;
    background: white; border-top: 1px solid var(--border);
    animation: slideDown 0.4s ease;
    max-width: 1280px; margin-left: auto; margin-right: auto; width: 100%;
}

.result-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.result-product { display: flex; align-items: center; gap: 20px; }
.result-img {
    width: 80px; height: 80px; object-fit: cover;
    border-radius: var(--radius); border: 1px solid var(--border);
}
.result-product h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: -0.3px; }
.result-category {
    display: inline-block; padding: 3px 10px; background: var(--bg);
    border-radius: 100px; font-size: 0.7rem; font-weight: 700;
    color: var(--gray); text-transform: uppercase; letter-spacing: 1px;
}
.result-close { color: var(--gray-light); font-size: 1rem; transition: var(--transition); padding: 4px; }
.result-close:hover { color: var(--dark); }

.result-costs {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; margin-bottom: 28px; background: var(--bg-2);
}
.cost-item {
    display: flex; flex-direction: column; gap: 8px;
    padding: 24px 28px; border-right: 1px solid var(--border);
}
.cost-item:last-child { border-right: none; }
.cost-item.total { background: var(--dark); }
.cost-item.total .cost-label { color: rgba(255,255,255,0.45); }
.cost-item.total .cost-value { color: white; }
.cost-label { font-size: 0.68rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cost-value { font-size: 1.5rem; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; }

.result-info { margin-bottom: 24px; color: var(--gray); font-size: 0.875rem; font-weight: 300; line-height: 1.8; }
.result-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-order {
    flex: 1; padding: 15px 28px; background: var(--red); color: white;
    border-radius: var(--radius-lg); font-size: 0.9rem; font-weight: 700;
    text-align: center; display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; transition: var(--transition);
}
.btn-order:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(204,0,0,0.3); }

.btn-recalc {
    padding: 14px 22px; border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); font-size: 0.85rem; font-weight: 600;
    color: var(--gray); transition: var(--transition);
}
.btn-recalc:hover { border-color: var(--dark); color: var(--dark); }

/* Order form */
.order-form-wrap {
    padding: 40px 48px; background: var(--bg-2);
    border-top: 1px solid var(--border);
    animation: slideDown 0.4s ease;
    max-width: 1280px; margin: 0 auto; width: 100%;
}

.form-section-title {
    font-size: 0.75rem; font-weight: 700; color: var(--dark);
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 20px; margin-top: 32px;
    text-transform: uppercase; letter-spacing: 1.5px;
}
.form-section-title:first-child { margin-top: 0; }
.form-section-title i { color: var(--red); }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 0.8px; }

.form-group input, .form-group textarea, .form-group select {
    padding: 13px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: 0.9rem;
    color: var(--dark); background: white; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--dark); box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.payment-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.payment-option {
    flex: 1; min-width: 130px; display: flex; align-items: center;
    gap: 10px; padding: 14px 18px; border: 1.5px solid var(--border);
    border-radius: var(--radius); cursor: pointer; transition: var(--transition);
    font-weight: 500; font-size: 0.875rem; background: white;
}
.payment-option:has(input:checked) { border-color: var(--red); background: #fff5f5; }
.payment-option input { width: 16px; height: 16px; accent-color: var(--red); }
.payment-option span { display: flex; align-items: center; gap: 8px; }

.btn-submit-order {
    width: 100%; padding: 17px;
    background: var(--red); color: white;
    border-radius: var(--radius-lg); font-size: 0.9rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: var(--transition); text-transform: uppercase; letter-spacing: 1px;
}
.btn-submit-order:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(204,0,0,0.3); }

/* ===== HOW IT WORKS — dark BYD panels ===== */
.how-works-preview { padding: 0; background: #0d0d0d; }

.how-works-inner {
    display: grid; grid-template-columns: 1fr 2fr;
    min-height: 500px;
}

.how-works-left {
    padding: 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.how-works-left h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800; color: white; letter-spacing: -1.5px;
    line-height: 1.1; margin-bottom: 16px;
}
.how-works-left p { font-size: 0.9rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.8; margin-bottom: 36px; }

.btn-learn-more {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 28px; border: 1px solid rgba(255,255,255,0.2);
    color: white; border-radius: var(--radius); font-size: 0.82rem;
    font-weight: 600; transition: var(--transition);
    width: fit-content; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-learn-more:hover { border-color: white; background: rgba(255,255,255,0.06); }

.how-works-right {
    display: grid; grid-template-columns: 1fr 1fr;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.step-panel {
    padding: 56px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
    opacity: 0; transform: translateY(30px);
    transition: background 0.3s ease;
}
.step-panel:nth-child(even) { border-right: none; }
.step-panel:nth-child(3), .step-panel:nth-child(4) { border-bottom: none; }
.step-panel:hover { background: rgba(255,255,255,0.03); }

.step-number {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--red); margin-bottom: 24px;
    display: flex; align-items: center; gap: 8px;
}
.step-number::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08); }

.step-icon {
    width: 44px; height: 44px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--red);
    background: rgba(204,0,0,0.1); margin-bottom: 20px;
}
.step-panel h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 10px; letter-spacing: -0.2px; }
.step-panel p { font-size: 0.84rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.8; }

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: white; padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    max-width: 1280px; margin: 0 auto;
}
.trust-item-card {
    padding: 44px 40px;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.trust-item-card:last-child { border-right: none; }
.trust-item-card:hover { background: var(--bg-2); }
.trust-item-card i {
    font-size: 1.4rem; color: var(--red); margin-bottom: 16px; display: block;
}
.trust-item-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); letter-spacing: -0.2px; }
.trust-item-card p { font-size: 0.82rem; color: var(--gray); font-weight: 300; line-height: 1.7; }

/* ===== COMPARE TABLE ===== */
.why-us-section { padding: 100px 0; background: var(--bg); }

.compare-table { overflow-x: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.compare-table table { width: 100%; border-collapse: collapse; background: white; }
.compare-table th, .compare-table td { padding: 18px 28px; text-align: center; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.compare-table th { background: var(--dark); color: white; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.compare-table th.highlight { background: var(--red); }
.compare-table td.highlight { background: #fff5f5; font-weight: 600; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg-2); }
.compare-table tr:hover td.highlight { background: #fff0f0; }

/* ===== BLOG ===== */
.blog-preview-section { padding: 100px 0; background: white; }

.blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    display: flex; flex-direction: column;
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); transition: var(--transition);
    background: white;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.blog-card-img { height: 220px; background-size: cover; background-position: center; background-color: var(--bg); }
.blog-card-placeholder { display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #d0d0d0; }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
    display: inline-block; padding: 3px 10px; background: #fff0f0;
    border-radius: 100px; font-size: 0.68rem; font-weight: 700;
    color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.5; letter-spacing: -0.2px; }
.blog-card-body p { font-size: 0.82rem; color: var(--gray); flex: 1; margin-bottom: 20px; font-weight: 300; line-height: 1.8; }
.blog-read-more {
    font-size: 0.78rem; font-weight: 700; color: var(--red);
    display: flex; align-items: center; gap: 6px;
    text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition);
}
.blog-card:hover .blog-read-more { gap: 12px; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px; border: 1.5px solid var(--dark);
    color: var(--dark); border-radius: var(--radius-lg);
    font-weight: 700; font-size: 0.82rem; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-secondary:hover { background: var(--dark); color: white; }

/* ===== CTA ===== */
.cta-section {
    padding: 0; background: var(--dark); position: relative; overflow: hidden;
}
.cta-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 400px;
}
.cta-left {
    padding: 80px 80px;
    display: flex; flex-direction: column; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.cta-left::before {
    content: '';
    position: absolute; top: 50%; left: 0;
    transform: translateY(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(204,0,0,0.15), transparent 70%);
    pointer-events: none;
}
.cta-left h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900; color: white; letter-spacing: -2px;
    line-height: 1.05; margin-bottom: 16px; position: relative;
}
.cta-left p { font-size: 0.95rem; color: rgba(255,255,255,0.4); margin-bottom: 40px; font-weight: 300; position: relative; }
.btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 36px; background: var(--red); color: white;
    border-radius: var(--radius); font-size: 0.875rem; font-weight: 700;
    transition: var(--transition); width: fit-content;
    text-transform: uppercase; letter-spacing: 0.5px; position: relative;
}
.btn-cta:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(204,0,0,0.4); }

.cta-right {
    display: grid; grid-template-rows: 1fr 1fr;
    border-left: 1px solid rgba(255,255,255,0.06);
}
.cta-stat-item {
    padding: 48px 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; justify-content: center;
}
.cta-stat-item:last-child { border-bottom: none; }
.cta-stat-num {
    font-size: 3rem; font-weight: 900; color: white; letter-spacing: -2px;
    line-height: 1; margin-bottom: 8px;
}
.cta-stat-num span { color: var(--red); }
.cta-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-weight: 300; text-transform: uppercase; letter-spacing: 1px; }

/* ===== FOOTER ===== */
.footer { background: #080808; color: white; padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 48px; }

.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 16px; letter-spacing: -0.5px; }
.footer-logo i { color: var(--red); }
.footer-logo .brand-accent { color: var(--red); }
.footer-brand p { color: rgba(255,255,255,0.3); font-size: 0.85rem; line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px; background: rgba(255,255,255,0.06);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.35);
    transition: var(--transition); font-size: 0.85rem;
}
.footer-social a:hover { background: var(--red); color: white; }
.footer-links h4 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: var(--transition); font-weight: 300; }
.footer-links ul li a:hover { color: white; }
.footer-contact h4 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.footer-contact p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-weight: 300; }
.footer-contact p i { color: var(--red); width: 14px; }
.footer-trust { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.trust-item i { color: var(--success); width: 14px; font-size: 0.75rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.78rem; font-weight: 300; }

/* ===== DASHBOARD ===== */
.dashboard-layout { display: flex; min-height: 100vh; padding-top: 72px; }
.dashboard-sidebar {
    width: 260px; background: var(--dark); color: white;
    padding: 24px 0; position: fixed; top: 72px; left: 0; bottom: 0;
    overflow-y: auto; z-index: 100;
}
.sidebar-user { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 16px; }
.sidebar-user-avatar {
    width: 40px; height: 40px; background: var(--red);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; font-weight: 800; font-size: 1rem; color: white; margin-bottom: 12px;
}
.sidebar-user-name { font-size: 0.875rem; font-weight: 700; }
.sidebar-user-email { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px; padding: 12px 20px;
    color: rgba(255,255,255,0.45); font-size: 0.85rem; font-weight: 500;
    transition: var(--transition); border-left: 2px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active { color: white; background: rgba(255,255,255,0.04); border-left-color: var(--red); }
.sidebar-nav a i { width: 18px; text-align: center; }
.sidebar-nav .nav-divider { margin: 8px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.dashboard-main { flex: 1; margin-left: 260px; padding: 32px; min-height: calc(100vh - 72px); background: var(--bg); }
.page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.page-title { font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.page-subtitle { font-size: 0.85rem; color: var(--gray); margin-top: 4px; font-weight: 300; }

/* ===== STATUS BADGES ===== */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-warning  { background: #fef3c7; color: #92400e; }
.badge-info     { background: #e0f2fe; color: #0369a1; }
.badge-primary  { background: #f5f5f5; color: #333; }
.badge-success  { background: #dcfce7; color: #15803d; }
.badge-danger   { background: #fee2e2; color: var(--red); }
.badge-secondary{ background: #f1f5f9; color: #475569; }

/* ===== ORDER CARDS ===== */
.orders-grid { display: flex; flex-direction: column; gap: 12px; }
.order-card {
    background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 20px 24px; display: flex; align-items: center; gap: 20px;
    transition: var(--transition); flex-wrap: wrap;
}
.order-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.order-card-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); flex-shrink: 0; }
.order-info { flex: 1; min-width: 200px; }
.order-num { font-size: 0.7rem; color: var(--gray); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.order-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; letter-spacing: -0.2px; }
.order-site { font-size: 0.78rem; color: var(--gray); font-weight: 300; }
.order-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.order-price { font-size: 1.05rem; font-weight: 800; color: var(--dark); }
.order-date { font-size: 0.75rem; color: var(--gray); }

.btn-sm { padding: 7px 16px; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; border: 1.5px solid var(--border); color: var(--gray); transition: var(--transition); text-transform: uppercase; letter-spacing: 0.3px; }
.btn-sm:hover { border-color: var(--dark); color: var(--dark); }
.btn-primary { background: var(--red) !important; color: white !important; border-color: var(--red) !important; }
.btn-primary:hover { background: var(--red-dark) !important; }
.btn-danger-sm { border-color: var(--red); color: var(--red); }
.btn-danger-sm:hover { background: var(--red); color: white; }

/* ===== INBOX ===== */
.inbox-layout { display: flex; gap: 24px; }
.inbox-sidebar { width: 280px; flex-shrink: 0; }
.inbox-main { flex: 1; }
.conversation-item { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: var(--radius-lg); cursor: pointer; transition: var(--transition); border: 1px solid transparent; }
.conversation-item:hover, .conversation-item.active { background: white; border-color: var(--border); box-shadow: var(--shadow); }
.conv-avatar { width: 40px; height: 40px; background: var(--red); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; color: white; flex-shrink: 0; }
.conv-name { font-size: 0.875rem; font-weight: 700; color: var(--dark); }
.conv-preview { font-size: 0.78rem; color: var(--gray); font-weight: 300; }
.message-bubble { max-width: 75%; padding: 12px 16px; border-radius: var(--radius-lg); font-size: 0.875rem; line-height: 1.6; margin-bottom: 8px; }
.message-bubble.user { background: var(--bg-2); border: 1px solid var(--border); margin-right: auto; }
.message-bubble.admin { background: var(--dark); color: white; margin-left: auto; }
.message-time { font-size: 0.7rem; color: var(--gray); margin-top: 4px; }

/* ===== PAYMENT ===== */
.payment-page { padding: 80px 0; background: var(--bg); min-height: calc(100vh - 72px); padding-top: calc(72px + 40px); }
.payment-card { max-width: 560px; margin: 0 auto; background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }

/* ===== BLOG PAGES ===== */
.blog-hero { padding: 80px 0 48px; background: var(--dark); padding-top: calc(72px + 48px); }
.blog-page { padding: 48px 0 80px; background: white; }
.blog-post-content { max-width: 780px; margin: 0 auto; }
.blog-post-content h2, .blog-post-content h3 { font-size: 1.35rem; font-weight: 700; margin: 32px 0 12px; color: var(--dark); letter-spacing: -0.3px; }
.blog-post-content p { font-size: 1rem; line-height: 1.85; color: #333; margin-bottom: 18px; font-weight: 300; }
.blog-post-content ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.blog-post-content ul li { font-size: 1rem; line-height: 1.8; color: #333; margin-bottom: 6px; font-weight: 300; }

/* ===== ADMIN ===== */
.admin-layout { display: flex; min-height: 100vh; padding-top: 72px; }
.admin-sidebar { width: 240px; background: var(--dark); position: fixed; top: 72px; left: 0; bottom: 0; overflow-y: auto; z-index: 100; padding: 20px 0; }
.admin-brand { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 16px; }
.admin-brand h3 { color: rgba(255,255,255,0.25); font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 20px; color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 500; transition: var(--transition); border-left: 2px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: white; background: rgba(255,255,255,0.04); border-left-color: var(--red); }
.admin-nav a i { width: 18px; }
.admin-main { flex: 1; margin-left: 240px; padding: 32px; background: var(--bg); min-height: calc(100vh - 72px); }
.admin-card { background: white; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); margin-bottom: 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: white; border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--border); }
.stat-card-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.stat-card-icon.blue { background: #eff6ff; color: #2563eb; }
.stat-card-icon.yellow { background: #fffbeb; color: #d97706; }
.stat-card-icon.green { background: #f0fdf4; color: #16a34a; }
.stat-card-icon.purple { background: #fdf4ff; color: #7c3aed; }
.stat-card-icon.red { background: #fff0f0; color: var(--red); }
.stat-card-val { font-size: 1.5rem; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; }
.stat-card-label { font-size: 0.72rem; color: var(--gray); font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.data-table th { padding: 12px 16px; text-align: left; background: var(--bg); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--gray); border-bottom: 1px solid var(--border); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--bg); color: var(--dark); }
.data-table tr:hover td { background: var(--bg-2); }
.data-table tr:last-child td { border-bottom: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container { padding: 0 32px; }
    .stores-grid { grid-template-columns: repeat(2, 1fr); }
    .store-card.featured { grid-column: span 1; }
    .how-works-inner { grid-template-columns: 1fr; }
    .how-works-right { grid-template-columns: 1fr 1fr; }
    .how-works-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-right { grid-template-columns: 1fr 1fr; border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .trust-strip-inner { grid-template-columns: 1fr 1fr; }
    .trust-item-card:nth-child(2) { border-right: none; }
    .trust-item-card:nth-child(3), .trust-item-card:nth-child(4) { border-top: 1px solid var(--border); }
    .result-costs { grid-template-columns: repeat(2, 1fr); }
    .cost-item:nth-child(2) { border-right: none; }
    .cost-item.total { border-top: 1px solid rgba(255,255,255,0.1); }
    .featured-stores-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
    .navbar-links, .navbar-actions { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: none; }
    .mobile-menu.open { display: flex; }
    .navbar .container { gap: 0; }

    .hero-content { padding: 0 24px; }
    .hero-collage { display: none; }
    .hero-title { letter-spacing: -2px; }
    .hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-ghost { width: 100%; max-width: 320px; justify-content: center; }
    .hero-stats-bar { display: none; }
    .hero-scroll { display: none; }

    .featured-stores-header { padding: 60px 24px 40px; }
    .stores-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .store-card { min-height: 200px; }

    .order-input-panel, .result-card, .order-form-wrap { padding: 28px 24px; }

    .how-works-right { grid-template-columns: 1fr; }
    .step-panel:nth-child(even) { border-right: 0; }
    .step-panel:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .how-works-left { padding: 48px 24px; }

    .trust-strip-inner { grid-template-columns: 1fr; }
    .trust-item-card { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-item-card:last-child { border-bottom: none; }

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

    .cta-left { padding: 60px 32px; }
    .cta-stat-item { padding: 36px 40px; }

    .dashboard-sidebar, .admin-sidebar { display: none; }
    .dashboard-main { margin-left: 0; padding: 20px; }
    .admin-main { margin-left: 0; padding: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .stores-grid { grid-template-columns: 1fr; }
    .result-costs { grid-template-columns: 1fr; }
    .cost-item { border-right: none; border-bottom: 1px solid var(--border); }
    .cost-item.total { border-bottom: none; }
    .link-input-wrap { flex-direction: column; border-radius: var(--radius-lg); }
    .btn-analyze { border-radius: 0 0 var(--radius-lg) var(--radius-lg); justify-content: center; }
    .payment-options { flex-direction: column; }
    .cta-right { grid-template-columns: 1fr; }
}
