/* ============================================
   COPENHAGEN STAFF CLUB - Design System
   Authentic, human, premium
   ============================================ */

:root {
    --primary: #FF6B35;
    --primary-dark: #e55a22;
    --primary-light: #ff8f5c;
    --primary-subtle: #fff5f0;

    --gradient: linear-gradient(135deg, #FF6B35 0%, #ff8f5c 100%);
    --gradient-dark: linear-gradient(135deg, #141414 0%, #232323 100%);

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #232323;
    --gray-900: #141414;
    --black: #030712;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --section-py: 88px;
    --container: 1140px;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.12);

    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--gray-700); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Typography */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}
.tag-light { color: rgba(255,255,255,0.5); }

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.18;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 520px;
    margin: 14px auto 0;
    line-height: 1.7;
}

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

.text-white { color: var(--white) !important; }
.text-white-muted { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.7; }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

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

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--gray-400); color: var(--gray-900); }

.btn-white {
    background: var(--white);
    color: var(--gray-900);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--gray-400); color: var(--gray-800); }

.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav { padding: 10px 22px; font-size: 14px; border-radius: var(--radius-md); }

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--ease);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; }
.logo-white { filter: brightness(0) invert(1); }
.logo-footer { /* show original brand colours on dark background */ }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--gray-600); }
.nav-links a:not(.btn):hover { color: var(--gray-900); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--ease); }

/* ============================================
   Hero - Split layout with photo
   ============================================ */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.google-inline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.google-inline-stars { display: flex; gap: 1px; }
.star-filled { color: #FBBC05; font-size: 14px; line-height: 1; }
.google-inline-text { font-size: 13px; color: var(--gray-500); font-weight: 500; }

.hero-title {
    font-size: clamp(34px, 4.5vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 18px;
}
.hero-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.hero-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; }
.hero-stat span { font-size: 13px; color: var(--gray-400); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--gray-200); }

/* Hero Image */
.hero-visual { position: relative; }
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--gray-100);
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-md);
}
.hero-image-badge svg { color: #16a34a; }

/* ============================================
   Brand Carousel - infinite scroll
   ============================================ */
.brand-carousel {
    padding: 40px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
    overflow: hidden;
}
.carousel-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 24px;
}
.carousel-track-wrapper { overflow: hidden; position: relative; }
.carousel-track-wrapper::before,
.carousel-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.carousel-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--gray-50), transparent); }
.carousel-track-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--gray-50), transparent); }

.carousel-track {
    display: flex;
    align-items: center;
    animation: scroll-logos 25s linear infinite;
    width: max-content;
}
.carousel-logo {
    flex-shrink: 0;
    height: 36px;
    opacity: 0.7;
    transition: opacity var(--ease), transform var(--ease);
}
.carousel-logo:hover { opacity: 1; transform: scale(1.08); }
.carousel-logo img { height: 100%; width: auto; object-fit: contain; }

/* Floating Book Staff CTA */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(255,107,53,0.35);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-decoration: none;
}
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.floating-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 32px rgba(255,107,53,0.45);
    transform: translateY(-2px) scale(1.03);
}

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1001;
    display: flex;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    padding: 3px;
    box-shadow: var(--shadow-sm);
    transition: all var(--ease);
}
.navbar.scrolled ~ .lang-switcher,
.lang-switcher.scrolled {
    background: rgba(255,255,255,0.95);
}
.lang-btn {
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    cursor: pointer;
    color: var(--gray-400);
    transition: all var(--ease);
    letter-spacing: 0.5px;
}
.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}
.lang-btn:hover:not(.active) {
    color: var(--gray-700);
}

/* ============================================
   Difference Section - Cards with photos
   ============================================ */
.difference-section {
    padding: var(--section-py) 0;
}
.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.diff-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all var(--ease);
}
.diff-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.diff-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-100);
}
.diff-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.diff-card:first-child .diff-card-img img { object-position: top; }
.diff-card:last-child .diff-card-img img { object-position: top; }
.diff-card:hover .diff-card-img img { transform: scale(1.05); }

.diff-card-content { padding: 28px 24px; }
.diff-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.diff-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.diff-card p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* ============================================
   How Section - Horizontal steps
   ============================================ */
.how-section {
    padding: var(--section-py) 0;
    background: var(--gray-900);
    color: var(--white);
}
.how-content { max-width: 540px; margin-bottom: 56px; }
.how-content .section-title { color: var(--white); }

.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.how-step {
    flex: 1;
    padding: 0 20px;
}
.how-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
}
.how-step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.how-step p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; }

.how-step-line {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    margin-top: 20px;
}

/* ============================================
   Photo Grid
   ============================================ */
.photo-grid-section { padding: 0; }
.photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.photo-grid-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-grid-item:hover img { transform: scale(1.08); }

/* ============================================
   Pricing
   ============================================ */
.pricing-section { padding: var(--section-py) 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: all var(--ease);
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pricing-card-featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}
.pricing-card-featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header h3 { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.pricing-card-header p { font-size: 14px; color: var(--gray-400); margin-bottom: 20px; }

.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.price { font-size: 52px; font-weight: 900; color: var(--gray-900); letter-spacing: -0.03em; line-height: 1; }
.price-unit { font-size: 15px; color: var(--gray-400); font-weight: 500; }

.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); }
.pricing-features li svg { color: var(--primary); flex-shrink: 0; }

/* ============================================
   Reviews - Dark Map Section
   ============================================ */
.reviews-map-section {
    position: relative;
    padding: var(--section-py) 0;
    min-height: 600px;
    background: var(--gray-900);
    overflow: hidden;
}
.reviews-map-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
}
.map-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Fallback dark pattern if map doesn't load */
.reviews-map-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255,107,53,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(255,107,53,0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(100,100,150,0.05) 0%, transparent 60%);
}

.reviews-map-content {
    position: relative;
    z-index: 1;
}

.reviews-map-header {
    text-align: center;
    margin-bottom: 48px;
}
.reviews-map-header .section-title {
    margin-top: 20px;
}

/* Google Badge - Large */
.google-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
}
.google-badge-rating { display: flex; align-items: center; gap: 8px; }
.google-score { font-size: 20px; font-weight: 800; color: var(--white); }
.google-stars-row { display: flex; gap: 1px; }
.google-stars-row .star-filled { color: #FBBC05; font-size: 16px; }
.google-badge-label { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; display: block; margin-top: 2px; }

/* Review Ticker */
.review-ticker {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    padding-bottom: 60px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.review-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}
.track-left  { animation: rc-scroll-left  40s linear infinite; }
.track-right { animation: rc-scroll-right 40s linear infinite; }

@keyframes rc-scroll-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes rc-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.review-card {
    flex: 0 0 280px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    backdrop-filter: blur(8px);
}
.rc-stars { color: #FBBC05; font-size: 12px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
    font-style: italic;
    margin: 0 0 10px;
}
.review-card span { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 500; }

/* Cost Calculator */
.calc-widget {
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}
.calc-intro { margin-bottom: 28px; }
.calc-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin: 0 0 4px;
}
.calc-desc { font-size: 13px; color: var(--gray-400); margin: 0; }
.calc-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}
.calc-controls { display: flex; flex-direction: column; gap: 28px; }
.calc-slider-group { display: flex; flex-direction: column; gap: 10px; }
.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.calc-slider-header span { font-size: 13px; font-weight: 500; color: var(--gray-500); }
.calc-slider-header strong { font-size: 26px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--gray-100);
    outline: none;
    cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gray-900);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.15s, box-shadow 0.15s;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.12); box-shadow: 0 3px 10px rgba(0,0,0,0.2); }
.calc-range::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--gray-900); cursor: pointer; border: none; }
.calc-slider-ends { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray-300); }
.calc-result-panel { text-align: right; min-width: 150px; }
.calc-total {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.calc-rate-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-100);
    border-radius: 20px;
    padding: 4px 10px;
    transition: all 0.25s;
    margin-bottom: 12px;
}
.calc-rate-badge.partnership { background: #fff7ed; color: var(--primary); }
.calc-fine-print { font-size: 11px; color: var(--gray-300); margin: 0; line-height: 1.6; max-width: 160px; margin-left: auto; }
.calc-overflow {
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-500);
    padding: 12px 16px;
    background: var(--gray-50, #f9fafb);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    line-height: 1.6;
}
.calc-overflow a { color: var(--primary); font-weight: 600; }

/* ============================================
   App Teaser
   ============================================ */
.app-teaser { padding: var(--section-py) 0; background: var(--gray-50); }

.app-teaser-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 72px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.app-teaser-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.12), transparent 70%);
    pointer-events: none;
}
.app-teaser-content { position: relative; z-index: 1; }
.app-teaser-content .section-title { font-size: clamp(26px, 3.5vw, 36px); margin-bottom: 14px; }

.app-features-mini { display: flex; gap: 20px; margin: 28px 0; flex-wrap: wrap; }
.app-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}
.app-feature-item svg { color: var(--primary-light); }

/* Phone Mockup */
.app-teaser-visual { position: relative; z-index: 1; }
.phone-mockup {
    width: 240px;
    height: 480px;
    background: var(--gray-900);
    border-radius: 32px;
    padding: 10px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.phone-screen { width: 100%; height: 100%; background: var(--white); border-radius: 24px; overflow: hidden; }
.phone-header { padding: 14px 18px 10px; display: flex; justify-content: space-between; align-items: center; }
.phone-time { font-size: 13px; font-weight: 600; color: var(--gray-900); }
.phone-app-title { font-size: 15px; font-weight: 800; color: var(--gray-900); }
.phone-content { padding: 14px; }
.phone-card { background: var(--gray-50); border-radius: var(--radius-md); padding: 18px; }
.phone-card-title { font-size: 17px; font-weight: 800; color: var(--gray-900); margin-bottom: 3px; }
.phone-card-subtitle { font-size: 12px; color: var(--gray-400); margin-bottom: 14px; }
.phone-staff-row { display: flex; gap: 6px; margin-bottom: 14px; }
.phone-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--gradient); color: white; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.avatar-pink { background: linear-gradient(135deg, #a855f7, #ec4899); }
.avatar-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.phone-btn { background: var(--primary); color: white; text-align: center; padding: 10px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; }

/* ============================================
   CTA Section - with photo bg
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--section-py) 0;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gray-900);
}
.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,24,39,0.95), rgba(17,24,39,0.7));
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; color: var(--gray-500); }
.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a, .footer-links p { display: block; font-size: 14px; color: var(--gray-500); margin-bottom: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 20px; padding-bottom: 16px; font-size: 13px; color: var(--gray-600); }
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   Form Pages
   ============================================ */
.page-header { padding: 130px 0 50px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.page-header .section-title { margin-bottom: 10px; }
.page-header .section-desc { margin: 0 auto; }

.form-section { padding: 64px 0 var(--section-py); }
.form-container { max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group-full { grid-column: 1 / -1; }

.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.form-label .required { color: var(--primary); }

/* Join page hero stats */
.join-hero-copy { }
.join-hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.join-stat { display: flex; flex-direction: column; gap: 2px; padding-right: 28px; }
.join-stat strong { font-size: 24px; font-weight: 800; color: var(--gray-900); letter-spacing: -0.02em; line-height: 1; }
.join-stat span { font-size: 12px; color: var(--gray-400); }
.join-stat-divider { width: 1px; height: 32px; background: var(--gray-200); margin-right: 28px; }

/* Join page "what to expect" grid */
.join-expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.join-expect-item h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.join-expect-item p { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin: 0; }
@media (max-width: 900px) { .join-expect-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .join-expect-grid { grid-template-columns: 1fr; gap: 20px; } }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all var(--ease);
    outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.form-radio-label {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 18px; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-full); cursor: pointer;
    font-size: 14px; font-weight: 500; color: var(--gray-600);
    transition: all var(--ease);
}
.form-radio-label:hover { border-color: var(--primary); }
.form-radio-label input { display: none; }
.form-radio-label:has(input:checked) { border-color: var(--primary); background: var(--primary-subtle); color: var(--primary); }

.form-checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); cursor: pointer; }
.form-checkbox-label input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--primary); }

.form-divider { border: none; border-top: 1px solid var(--gray-100); margin: 28px 0; }
.form-section-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.form-section-desc { font-size: 14px; color: var(--gray-400); margin-bottom: 20px; }
.form-submit-area { margin-top: 36px; display: flex; align-items: center; gap: 14px; }

.form-success { display: none; text-align: center; padding: 56px 36px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); }
.form-success.show { display: block; }
.form-success-icon { width: 56px; height: 56px; background: #f0fdf4; color: #16a34a; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.form-success p { font-size: 15px; color: var(--gray-500); }

/* File Upload */
.file-upload-area { border: 2px dashed var(--gray-200); border-radius: var(--radius-md); padding: 28px; text-align: center; cursor: pointer; transition: all var(--ease); }
.file-upload-area:hover { border-color: var(--primary); background: var(--primary-subtle); }
.file-upload-area svg { color: var(--gray-400); margin-bottom: 6px; }
.file-upload-area p { font-size: 14px; color: var(--gray-500); }
.file-upload-area span { color: var(--primary); font-weight: 600; }
.file-upload-area input { display: none; }

.file-preview { display: none; align-items: center; gap: 10px; margin-top: 10px; padding: 9px 14px; background: var(--gray-50); border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-600); }
.file-preview.show { display: flex; }
.file-preview .remove-file { margin-left: auto; background: none; border: none; color: var(--gray-400); cursor: pointer; font-size: 18px; }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.checkbox-grid .form-checkbox-label { padding: 9px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); transition: all var(--ease); }
.checkbox-grid .form-checkbox-label:hover { border-color: var(--primary); }
.checkbox-grid .form-checkbox-label:has(input:checked) { border-color: var(--primary); background: var(--primary-subtle); }

/* Steps grid for join page */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--gray-100); transition: all var(--ease); }
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.step-icon { color: var(--primary); margin-bottom: 16px; }
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ============================================
   Services Page
   ============================================ */
.services-section { padding: var(--section-py) 0; }
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block-reverse { direction: rtl; }
.service-block-reverse > * { direction: ltr; }
.service-block-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}
.service-block-visual img { width: 100%; height: 100%; object-fit: cover; }
.service-block-content h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--gray-900); margin-bottom: 12px; line-height: 1.2; }
.service-block-content p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.service-roles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.role-tag {
    padding: 6px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

/* Stats bar */
.stats-bar { padding: 56px 0; background: var(--gray-900); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item strong { display: block; font-size: 36px; font-weight: 900; color: var(--white); letter-spacing: -0.03em; margin-bottom: 4px; }
.stat-item span { font-size: 14px; color: var(--gray-400); font-weight: 500; }

/* ============================================
   FAQ Page
   ============================================ */
.faq-section { padding: var(--section-py) 0; }
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--gray-100);
    padding: 0;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    text-align: left;
    transition: color var(--ease);
    gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gray-400);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-question { color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 22px 0;
}
.faq-answer p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Active nav link */
.nav-links a.active { color: var(--primary) !important; }

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */
.legal-section { padding: var(--section-py) 0; }
.legal-container { max-width: 720px; margin: 0 auto; }
.legal-container h2 {
    font-size: 22px; font-weight: 800; color: var(--gray-900);
    margin: 40px 0 12px; padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}
.legal-container h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.legal-container p {
    font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 14px;
}
.legal-container ul {
    margin: 8px 0 18px 20px; list-style: disc;
}
.legal-container li {
    font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 6px;
}
.legal-container a { color: var(--primary); font-weight: 500; }
.legal-container a:hover { text-decoration: underline; }
.legal-meta {
    font-size: 13px; color: var(--gray-400); margin-bottom: 32px;
}

/* Enterprise card */
.enterprise-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-top: 40px;
}
.enterprise-content h3 { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.enterprise-content p { font-size: 15px; color: var(--gray-500); max-width: 500px; }

/* Pricing explainer */
.pricing-explainer { margin-top: 72px; text-align: center; }
.pricing-explainer h3 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 32px; }
.explainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.explainer-item { padding: 28px 24px; background: var(--gray-50); border-radius: var(--radius-lg); text-align: left; }
.explainer-icon { color: var(--primary); margin-bottom: 14px; }
.explainer-item h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.explainer-item p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* Staff types */
.staff-types { margin-top: 56px; text-align: center; }
.staff-types h3 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 20px; }

/* ============================================
   Contact / Get in Touch Page
   ============================================ */
.contact-section { padding: 64px 0 var(--section-py); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}
.contact-info { padding-top: 8px; }
.contact-info-block { margin-bottom: 32px; }
.contact-info-block h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.contact-info-block p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}
.contact-info-block a {
    color: var(--primary);
    font-weight: 500;
}
.contact-info-block a:hover { text-decoration: underline; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    :root { --section-py: 72px; }

    .hero-grid,
    .difference-grid,
    .pricing-grid,
    .steps-grid,
    .service-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-block-reverse { direction: ltr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .explainer-grid { grid-template-columns: 1fr; }
    .enterprise-card { flex-direction: column; text-align: center; }

    .hero-visual { order: -1; }
    .hero-image-wrapper { aspect-ratio: 16/9; }

    .how-steps { flex-direction: column; gap: 24px; }
    .how-step-line { width: 40px; height: 1px; margin: 0 0 0 20px; }

    .photo-grid { grid-template-columns: repeat(3, 1fr); }
    .photo-grid-item:nth-child(4), .photo-grid-item:nth-child(5) { display: none; }

    .review-bubbles { grid-template-columns: 1fr 1fr; }

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

    .app-teaser-card { grid-template-columns: 1fr; padding: 40px; }
    .app-teaser-visual { display: flex; justify-content: center; }

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

@media (max-width: 768px) {
    :root { --section-py: 56px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a:not(.btn) { font-size: 18px; }
    .nav-toggle { display: flex; z-index: 1001; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-stat-divider { display: none; }

    .photo-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-grid-item:nth-child(3) { display: none; }

    .review-bubbles { grid-template-columns: 1fr; }

    .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .phone-mockup { width: 200px; height: 400px; }
}
