/* ===== Variables ===== */
:root {
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --border: #e2e8f0;
    --border-dark: #cbd5e1;
    --text: #0f172a;
    --text-muted: #475569;
    --text-subtle: #64748b;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-bg: #eff6ff;
    --success: #16a34a;
    --success-bg: #f0fdf4;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

/* ===== Typography ===== */
h1, h2, h3 {
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.125rem; font-weight: 600; }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 12px auto 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

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

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

.btn-full { width: 100%; }

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
}

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

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

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

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

@media (max-width: 640px) {
    .hamburger { display: flex; }
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--text);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

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

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

.hero-trust p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-trust strong {
    color: var(--text);
}

.hero-price-box {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 22px;
    flex-shrink: 0;
}

.price-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 4px 0;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

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

.price-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-mockup {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-url {
    flex: 1;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-subtle);
    background: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.mockup-content {
    padding: 0;
}

.mockup-site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
}

.mockup-site-logo {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
}

.mockup-site-links {
    display: flex;
    gap: 12px;
}

.mockup-site-links span {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.mockup-site-links span.active {
    color: var(--text);
    font-weight: 600;
}

.mockup-site-cta {
    font-size: 0.55rem;
    font-weight: 600;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 99px;
}

.mockup-hero-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 28px 20px;
}

.mockup-hero-text {
    max-width: 260px;
}

.mockup-badge {
    display: inline-block;
    font-size: 0.45rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 3px 8px;
    border-radius: 99px;
    margin-bottom: 8px;
}

.mockup-h1 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 6px;
}

.mockup-p {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.mockup-btn {
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 700;
    background: #fff;
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 99px;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
}

.mockup-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
}

.mockup-card-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 6px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.mockup-card-icon svg {
    width: 12px;
    height: 12px;
}

.mockup-card-title {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.mockup-card-desc {
    height: 4px;
    background: var(--bg-muted);
    border-radius: 2px;
    width: 80%;
    margin: 0 auto;
}

.hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.hero-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-perk svg {
    color: var(--success);
    flex-shrink: 0;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.floating-badge svg {
    color: var(--success);
}

.badge-1 {
    top: 20px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation: float 4s ease-in-out infinite 1s;
}

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

/* ===== Benefits ===== */
.benefits {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

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

.benefit {
    text-align: center;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit h3 {
    margin-bottom: 8px;
}

.benefit p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== How it works ===== */
.how-it-works {
    padding: 100px 0;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.step-arrow {
    padding-top: 12px;
    color: var(--border-dark);
}

/* ===== Examples ===== */
.examples {
    padding: 100px 0;
    background: var(--bg-subtle);
}

.hidden { display: none !important; }

/* Niche Selector */
.niche-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.niche-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.niche-btn svg {
    width: 18px;
    height: 18px;
}

/* Example Showcase */
.example-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.example-browser-large {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.browser-bar-large {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-muted);
    border-bottom: 1px solid var(--border);
}

.browser-url-bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.browser-url-bar svg {
    color: var(--text-subtle);
    flex-shrink: 0;
}

.url-text {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-subtle);
}

.browser-actions {
    display: flex;
    gap: 8px;
}

.browser-actions span {
    width: 16px;
    height: 16px;
    background: var(--border);
    border-radius: 4px;
}

/* Iframe Preview */
.iframe-preview {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.iframe-preview iframe {
    width: 1400px;
    height: 900px;
    border: none;
    transform: scale(0.47);
    transform-origin: top left;
    pointer-events: none;
}

.iframe-preview.hidden {
    display: none;
}

/* Preview Sites */
.preview-site {
    min-height: 380px;
    background: white;
}

.preview-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: white;
    border-bottom: 1px solid var(--border);
}

.preview-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.logo-dot.pink { background: #ec4899; }
.logo-dot.purple { background: #a78baf; }

.logo-square {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.logo-square.green { background: #16a34a; }

.logo-icon-text {
    width: 22px;
    height: 22px;
    background: #d97706;
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

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

.preview-nav-links span {
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
}

.preview-nav-links span.active {
    color: var(--text);
    font-weight: 600;
}

.preview-nav-btn {
    padding: 7px 12px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
}

.pink-btn { background: #ec4899; }
.gold-btn { background: #d97706; }
.green-btn { background: #16a34a; }
.purple-btn { background: #a78baf; }

/* Preview Hero Full Width */
.preview-hero-full {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    padding: 24px 20px;
    align-items: center;
}

.preview-hero-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-badge {
    display: inline-block;
    width: fit-content;
    padding: 4px 10px;
    background: rgba(0,0,0,0.06);
    color: var(--text-muted);
    font-size: 0.55rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gold-badge {
    background: rgba(217, 119, 6, 0.15);
    color: #d97706;
}

.green-badge {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.purple-badge {
    background: rgba(167, 139, 175, 0.15);
    color: #a78baf;
}

.preview-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.highlight-pink { color: #ec4899; }
.highlight-green { color: #16a34a; }
.highlight-blue { color: var(--primary); }
.highlight-purple { color: #a78baf; }

.preview-paragraph {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.preview-cta-row {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.preview-cta-row.center {
    justify-content: center;
}

.preview-btn-lg {
    padding: 9px 16px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
}

.preview-btn-outline {
    padding: 9px 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 6px;
}

.preview-btn-outline.light {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.preview-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.stars {
    color: #f59e0b;
    font-size: 0.7rem;
    letter-spacing: -1px;
}

.preview-rating span {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.preview-hero-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.preview-hero-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

/* Frisör Services Row */
.preview-services-row {
    display: flex;
    gap: 10px;
    padding: 14px 20px;
    background: white;
    border-top: 1px solid var(--border);
}

.preview-service-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bg-subtle);
    border-radius: 8px;
}

.preview-service-item img {
    width: 45px;
    height: 35px;
    object-fit: cover;
    border-radius: 5px;
}

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

.service-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
}

.service-desc {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.service-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 12px;
    margin-right: 6px;
}

.service-badge.popular {
    background: #fef3c7;
    color: #92400e;
}

/* Restaurang specific */
.dark-nav {
    background: #1c1917;
    border-bottom-color: #292524;
}

.dark-nav .preview-logo { color: #fafaf9; }
.dark-nav .preview-nav-links span { color: #a8a29e; }
.dark-nav .preview-nav-links span.active { color: #fafaf9; }

.preview-hero-img-bg {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.preview-hero-img-bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-center-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 8px;
}

.preview-heading.light { color: white; }
.preview-paragraph.light { color: rgba(255,255,255,0.8); }

.preview-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 14px 20px;
}

.preview-stats-bar.dark {
    background: #1c1917;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
}

.stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #d97706;
}

.stat-label {
    font-size: 0.55rem;
    color: #a8a29e;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: #292524;
}

/* Hantverkare specific */
.preview-hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hero-split-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: white;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.trust-badge svg {
    color: #16a34a;
}

.hero-split-image {
    position: relative;
}

.hero-split-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.image-badge {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #16a34a;
}

.badge-text {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.preview-projects-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border-top: 1px solid var(--border);
}

.projects-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.project-thumbs {
    display: flex;
    gap: 6px;
    flex: 1;
}

.project-thumbs img {
    width: 50px;
    height: 38px;
    object-fit: cover;
    border-radius: 5px;
}

.projects-link {
    font-size: 0.6rem;
    color: #16a34a;
    font-weight: 600;
    white-space: nowrap;
}

/* Frisör specific */
.frisor-nav {
    background: transparent;
    border-bottom: none;
}

.frisor-logo {
    font-family: 'Sacramento', cursive;
    font-size: 1.1rem;
    font-weight: 400;
}

.frisor-script {
    font-family: 'Sacramento', cursive;
    font-size: 2.2rem;
    font-weight: 400;
}

.frisor-hero {
    height: 240px;
}

.preview-reviews-bar {
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    background: #faf8fb;
    border-top: 1px solid #f0ecf2;
}

.preview-reviews-bar.dark-reviews {
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.preview-review-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid #f0ecf2;
}

.preview-review-card.dark-review {
    background: #222;
    border-color: #333;
}

.preview-review-card .review-stars-sm {
    color: #bfa860;
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.preview-review-card p {
    font-size: 0.6rem;
    color: #555;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 4px;
}

.preview-review-card.dark-review p {
    color: #aaa;
}

.preview-review-card span {
    font-size: 0.55rem;
    font-weight: 600;
    color: #888;
}

/* Spa specific */
.spa-nav {
    background: transparent;
    border-bottom: none;
}

.spa-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.spa-script {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
}

.spa-hero {
    height: 240px;
}

/* Konsult specific */
.minimal-nav {
    background: #fafafa;
    border-bottom-color: #e4e4e7;
}

.konsult-split {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.konsult-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.preview-clients-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: white;
    border-top: 1px solid var(--border);
}

.clients-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.client-logos {
    display: flex;
    gap: 12px;
    flex: 1;
}

.client-logo {
    flex: 1;
    padding: 6px 10px;
    background: var(--bg-muted);
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--text-subtle);
    text-align: center;
}

/* Example Info Panel */
.example-info-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.example-info-panel .example-tag {
    display: inline-block;
    padding: 5px 10px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.example-info-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.example-info-panel > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.example-features-list {
    list-style: none;
    margin-bottom: 28px;
}

.example-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.example-features-list svg {
    color: var(--success);
    flex-shrink: 0;
}

.example-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-subtle);
    margin-top: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card h2 {
    margin-bottom: 12px;
}

.cta-card > p {
    color: var(--text-muted);
    max-width: 450px;
    margin: 0 auto 28px;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 500;
}

.contact-point svg {
    color: var(--success);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--primary);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-subtle);
    margin-bottom: 2px;
}

.contact-value {
    font-weight: 600;
}

.contact-form {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: var(--radius-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-subtle);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-subtle);
    margin-top: 16px;
}

.form-confirmation {
    text-align: center;
    padding: 48px 24px;
}

.form-confirmation .confirmation-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.form-confirmation h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-confirmation p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Footer ===== */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-subtle);
    margin-top: 16px;
    max-width: 280px;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: 60px 0 100px;
}

.contact-page .contact-grid {
    gap: 60px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.contact-method .contact-icon {
    width: 48px;
    height: 48px;
    background: white;
    flex-shrink: 0;
}

.contact-method-content h3 {
    margin-bottom: 4px;
}

.contact-method-content p {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

.contact-promises {
    padding: 24px;
    background: var(--success-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.contact-promises h3 {
    color: var(--success);
    margin-bottom: 16px;
}

.promise-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 500;
}

.promise-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.contact-form h3 {
    margin-bottom: 24px;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-subtle);
}

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

.faq-item {
    padding: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.faq-item h3 {
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Examples Page ===== */
.examples-page {
    padding: 60px 0 100px;
}

.example-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border);
}

.example-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.example-card.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.example-card.reverse .example-browser {
    order: 2;
}

.example-card.reverse .example-details {
    order: 1;
}

.example-browser {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.example-details {
    padding: 20px 0;
}

.example-category {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.example-details h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.example-details > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.example-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.example-features li {
    padding: 8px 14px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

/* ===== About Page ===== */
.about-story {
    padding: 60px 0 100px;
}

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

.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: var(--primary-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    width: 100%;
}

.visual-icon {
    color: var(--primary);
    margin-bottom: 32px;
}

.visual-icon svg {
    width: 80px;
    height: 80px;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.visual-stat {
    padding: 16px 8px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.visual-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.visual-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* About Values */
.about-values {
    padding: 100px 0;
    background: var(--bg-subtle);
}

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

.value-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* About Process */
.about-process {
    padding: 100px 0;
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    margin-bottom: 8px;
    padding-top: 4px;
}

.process-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* About Stats */
.about-stats {
    padding: 80px 0;
    background: var(--primary);
}

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

.stat-card {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Nav active state */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* ===== Booking Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-subtle);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--bg-muted);
    color: var(--text);
}

/* Modal Progress */
.modal-progress {
    margin-bottom: 32px;
    padding-right: 50px;
}

.progress-bar {
    height: 6px;
    background: var(--bg-muted);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 20%;
}

.progress-text {
    font-size: 0.8rem;
    color: var(--text-subtle);
}

/* Modal Steps */
.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

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

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Option Grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 12px;
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

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

.option-card.selected {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.option-icon {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.option-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.option-card.selected .option-icon {
    background: var(--primary);
    color: white;
}

/* Option List */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card-wide {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

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

.option-card-wide.selected {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.option-icon-sm {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.option-card-wide.selected .option-icon-sm {
    background: var(--primary);
    color: white;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
}

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.checkbox-card {
    display: block;
    cursor: pointer;
}

.checkbox-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s;
}

.checkbox-card:hover .checkbox-content {
    border-color: var(--primary);
}

.checkbox-card input:checked + .checkbox-content {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.checkbox-icon {
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checkbox-card input:checked + .checkbox-content .checkbox-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Modal Form */
.modal-form .form-group {
    margin-bottom: 16px;
}

.modal-form .form-group:last-child {
    margin-bottom: 28px;
}

/* Modal Buttons */
.modal-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
}

.modal-back {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-back:hover {
    color: var(--text);
}

/* Calendar */
.calendar-container {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-month {
    font-weight: 600;
    font-size: 1.1rem;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.calendar-nav:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

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

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.calendar-day:hover:not(.disabled) {
    border-color: var(--primary);
}

.calendar-day.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.calendar-day.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.today {
    border-color: var(--primary-light);
    background: var(--primary-bg);
}

.calendar-day.today .day-name {
    color: var(--primary);
}

.calendar-day.today.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.calendar-day.today.selected .day-name {
    color: rgba(255, 255, 255, 0.8);
}

.day-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

.calendar-day.selected .day-name {
    color: rgba(255, 255, 255, 0.8);
}

.day-number {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slots-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    font-size: 0.9rem;
}

.time-slot {
    padding: 12px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover:not(.unavailable) {
    border-color: var(--primary);
}

.time-slot.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Confirmation */
.confirmation-content {
    text-align: center;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-details {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin: 28px 0;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.confirmation-item:last-child {
    border-bottom: none;
}

.confirmation-label {
    color: var(--text-muted);
}

.confirmation-value {
    font-weight: 600;
}

.confirmation-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

#confirmBooking:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Time Confirmation Popup */
.time-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.time-confirm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.time-confirm-box {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.time-confirm-overlay.active .time-confirm-box {
    transform: scale(1);
}

.time-confirm-box h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    color: var(--text);
}

.time-confirm-box p {
    margin: 0 0 24px;
    color: var(--text-muted);
    font-size: 1rem;
}

.time-confirm-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.time-confirm-buttons .btn {
    flex: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text { margin: 0 auto 32px; max-width: 500px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual {
        max-width: 400px;
        margin: 40px auto 0;
    }
    .floating-badge { display: none; }
    .hero-bottom-row { flex-direction: column; align-items: center; }
    .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
    .steps-grid {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
    .step-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }
    .example-showcase {
        grid-template-columns: 1fr;
    }
    .example-info-panel {
        order: -1;
    }
    .contact-grid { grid-template-columns: 1fr; }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-visual { max-width: 500px; margin: 0 auto; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .faq-grid { grid-template-columns: 1fr; }
    .example-card { grid-template-columns: 1fr; gap: 30px; }
    .example-card.reverse { grid-template-columns: 1fr; }
    .example-card.reverse .example-browser { order: 1; }
    .example-card.reverse .example-details { order: 2; }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }
    .nav-cta { display: none; }
    header nav { position: relative; }
    .hero-buttons { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 32px; }
    .contact-form { padding: 24px; }
    .niche-selector { gap: 8px; }
    .niche-btn { padding: 10px 14px; font-size: 0.8rem; }
    .preview-nav-links { display: none; }
    .preview-hero-full { grid-template-columns: 1fr; }
    .preview-hero-split { grid-template-columns: 1fr; }
    .preview-hero-img { display: none; }
    .hero-split-image { display: none; }
    .preview-services-row { flex-direction: column; }
    .preview-stats-bar { flex-wrap: wrap; }
    .stat-divider { display: none; }
    .project-thumbs img { width: 40px; height: 30px; }
    .client-logos { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2rem; }
    .page-hero { padding: 140px 0 60px; }
    .value-card { padding: 24px; }
    .process-step { gap: 16px; }
    .process-number { width: 40px; height: 40px; font-size: 1rem; }
    .process-step:not(:last-child)::before { left: 19px; }
    .example-card { margin-bottom: 50px; padding-bottom: 50px; }
    .example-details h3 { font-size: 1.5rem; }
    /* Modal responsive */
    .hide-on-mobile { display: none !important; }
    .modal-overlay { padding: 20px; align-items: center; }
    .modal { padding: 24px 20px 20px; max-height: 80vh; border-radius: 16px; }
    .modal-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 20px; }
    .modal .btn { padding: 12px 20px; font-size: 0.95rem; }
    .modal-step h2 { font-size: 1.25rem; margin-bottom: 6px; }
    .modal-desc { margin-bottom: 16px; }
    .modal-buttons { margin-top: 16px; }
    .modal-form .form-group { margin-bottom: 12px; }
    .modal-form .form-group:last-child { margin-bottom: 16px; }
    .option-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .option-card { padding: 12px 10px; }
    .option-list { gap: 8px; }
    .option-card-wide { padding: 14px 16px; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .calendar-days { gap: 4px; }
    .calendar-day { padding: 8px 4px; }
    .day-name { font-size: 0.6rem; }
    .day-number { font-size: 0.9rem; }
    .time-slots { grid-template-columns: repeat(3, 1fr); }
}

/* ========== ADMIN STYLES ========== */

/* Login */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
}

.admin-login-card {
    background: white;
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.admin-login-logo {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 24px;
}

.admin-login-card h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.admin-login-card > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.admin-login-card .form-group {
    text-align: left;
    margin-bottom: 16px;
}

.admin-login-card label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.admin-login-card input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.admin-login-card input:focus {
    outline: none;
    border-color: var(--primary);
}

.admin-error {
    color: #ef4444;
    font-size: 0.85rem;
    min-height: 20px;
    margin-bottom: 8px;
}

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

/* Dashboard Layout */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--bg-subtle);
}

.admin-sidebar {
    width: 240px;
    background: white;
    border-right: 1px solid var(--border);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 0.95rem;
}

.admin-sidebar-logo .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.admin-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: none;
    background: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
}

.admin-nav-btn:hover {
    background: var(--bg-subtle);
    color: var(--text);
}

.admin-nav-btn.active {
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 600;
}

.admin-logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: none;
    background: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
}

.admin-logout-btn:hover {
    background: #fef2f2;
    color: #ef4444;
}

/* Main Content */
.admin-main {
    flex: 1;
    margin-left: 240px;
    padding: 32px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.admin-header h1 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

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

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

.admin-filter select {
    padding: 8px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
}

.admin-refresh {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Stats */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.admin-stat-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.admin-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text);
}

.admin-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.admin-stat-card.pending .admin-stat-number { color: #f59e0b; }
.admin-stat-card.confirmed .admin-stat-number { color: var(--primary); }
.admin-stat-card.completed .admin-stat-number { color: var(--success); }

/* Views */
.admin-view { display: none; }
.admin-view.active { display: block; }

/* Table */
.admin-table-wrap {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
}

.admin-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr {
    cursor: pointer;
    transition: background 0.15s;
}

.admin-table tbody tr:hover {
    background: var(--bg-subtle);
}

.table-date {
    display: block;
    font-weight: 600;
}

.table-time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.table-name {
    display: block;
    font-weight: 600;
}

.table-email {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.confirmed {
    background: #dbeafe;
    color: #1e40af;
}

.status-badge.completed {
    background: #dcfce7;
    color: #166534;
}

/* Empty State */
.admin-empty {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
}

.admin-empty svg {
    margin-bottom: 12px;
    opacity: 0.4;
}

/* Calendar View */
.admin-calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.admin-calendar-header h2 {
    font-size: 1.1rem;
    min-width: 280px;
    text-align: center;
}

.admin-calendar-grid {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.cal-header-row {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
}

.cal-day-header {
    padding: 12px 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.cal-day-header span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 2px;
}

.cal-day-header.today {
    color: var(--primary);
}

.cal-day-header.today span {
    color: var(--primary);
}

.cal-body {
    max-height: 600px;
    overflow-y: auto;
}

.cal-row {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    border-bottom: 1px solid var(--border);
}

.cal-row:last-child {
    border-bottom: none;
}

.cal-time-label {
    padding: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cal-cell {
    min-height: 36px;
    border-left: 1px solid var(--border);
    padding: 2px 4px;
    display: flex;
    align-items: center;
}

.cal-cell.booked {
    cursor: pointer;
    border-radius: 4px;
    margin: 2px;
    padding: 4px 8px;
    transition: opacity 0.15s;
}

.cal-cell.booked:hover {
    opacity: 0.8;
}

.cal-cell.booked.pending {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.cal-cell.booked.confirmed {
    background: #dbeafe;
    border-left-color: var(--primary);
}

.cal-cell.booked.completed {
    background: #dcfce7;
    border-left-color: var(--success);
}

.cal-booking-name {
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Detail Modal */
.admin-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.admin-modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 560px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-modal h2 {
    margin-bottom: 24px;
    padding-right: 40px;
}

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

.detail-item.full {
    grid-column: 1 / -1;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text);
}

.detail-value a {
    color: var(--primary);
    text-decoration: none;
}

.detail-value a:hover {
    text-decoration: underline;
}

.admin-detail-actions {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.btn-danger {
    padding: 10px 20px;
    background: white;
    color: #ef4444;
    border: 2px solid #fecaca;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

.btn-secondary {
    padding: 10px 20px;
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--text-muted);
}

/* Revenue View */
.revenue-cards {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.revenue-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.revenue-card.main {
    background: var(--primary);
    color: white;
    border: none;
}

.revenue-card-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 8px;
}

.revenue-card.main .revenue-card-label {
    opacity: 0.85;
}

.revenue-card-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.revenue-card-sub {
    display: block;
    font-size: 0.8rem;
    margin-top: 8px;
    opacity: 0.6;
}

.revenue-card.main .revenue-card-sub {
    opacity: 0.75;
}

.hidden { display: none !important; }

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-sidebar {
        display: none;
    }
    .admin-main {
        margin-left: 0;
        padding: 20px;
    }
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-header {
        flex-direction: column;
        gap: 16px;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .admin-table th:nth-child(3),
    .admin-table td:nth-child(3),
    .admin-table th:nth-child(4),
    .admin-table td:nth-child(4) {
        display: none;
    }
    .revenue-cards {
        grid-template-columns: 1fr;
    }
}

/* ========== EXAMPLES SEARCH ========== */
.examples-search {
    padding: 16px 0;
    background: linear-gradient(to bottom, white, #f9fafb);
}

.search-box-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 24px;
}

.search-box-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s;
}

.search-box-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.search-box-wrapper .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.popular-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.category-tag {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    color: #4b5563;
}

.category-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #f5f3ff;
}

.category-tag.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .examples-search {
        padding: 12px 0;
    }

    .search-box-wrapper {
        margin-bottom: 16px;
    }

    .search-box-wrapper input {
        font-size: 14px;
        padding: 12px 40px 12px 16px;
    }

    .popular-categories {
        gap: 6px;
    }

    .category-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
}
