/* ═══════════════════════════════════════════════════════════════════════════
   Mortea — Beauty Discovery Platform
   Premium Landing Design System
   Dark, luxurious, elegant — inspired by Blacklane / Airbnb
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    --bg: #0D0D0D;
    --bg-elevated: #111111;
    --card: #161616;
    --card-hover: #1C1C1C;
    --card-border: #222222;
    --card-border-hover: #333333;
    --accent: #D4B08C;
    --accent-soft: rgba(212, 176, 140, 0.12);
    --accent-glow: rgba(212, 176, 140, 0.25);
    --text: #FFFFFF;
    --text-secondary: #CFCFCF;
    --text-muted: #8A8A8A;
    --text-faint: #5A5A5A;
    --star: #D4B08C;
    --star-empty: #3A3A3A;
    --success: #7CB87C;
    --error: #D4756B;

    /* Radii */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(212, 176, 140, 0.08);
    --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 176, 140, 0.08);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --container-max: 1200px;
    --container-padding: 32px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    background: var(--bg);
    overflow-x: hidden;
    letter-spacing: 0.005em;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .cta-title, .nav-logo, .footer-logo {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Selection ──────────────────────────────────────────────────────────── */
::selection {
    background: rgba(212, 176, 140, 0.3);
    color: var(--text);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
nav.scrolled {
    background: rgba(13, 13, 13, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-left: 2px;
    box-shadow: 0 0 12px var(--accent-glow);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-link {
    font-size: 14.5px;
    font-weight: 450;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--text); }

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

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--accent);
    color: #0D0D0D;
    font-weight: 600;
}
.btn-primary:hover {
    background: #E0C4A0;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(212, 176, 140, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
}
.btn-outline-light {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}
.btn-lg {
    padding: 16px 44px;
    font-size: 16px;
    font-weight: 600;
}

/* ── Hamburger ──────────────────────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ────────────────────────────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 24px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    display: block;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: all 0.2s;
    text-align: center;
}
.mobile-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}
.mobile-menu .mobile-login-btn {
    margin-top: 16px;
    background: var(--accent);
    color: #0D0D0D;
    font-weight: 600;
    padding: 14px 48px;
    border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 32px 100px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 50% 50% at 50% 0%, rgba(212, 176, 140, 0.06), transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212, 176, 140, 0.03), transparent 70%),
        var(--bg);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 176, 140, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 176, 140, 0.02) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    max-width: 780px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.08;
}
.hero-title-accent {
    color: var(--accent);
    font-style: italic;
}
.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 56px;
    font-weight: 400;
}

/* ── Search Card ────────────────────────────────────────────────────────── */
.search-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 680px;
    margin: 0 auto;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.search-card:focus-within {
    border-color: rgba(212, 176, 140, 0.35);
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(212, 176, 140, 0.06);
}
.search-box {
    display: flex;
    align-items: center;
}
.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 0 20px;
    min-width: 0;
}
.search-icon {
    font-size: 18px;
    flex-shrink: 0;
    opacity: 0.5;
    filter: grayscale(0.3);
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: transparent;
    min-width: 0;
    padding: 14px 0;
}
.search-input::placeholder {
    color: var(--text-faint);
}
.search-divider {
    width: 1px;
    height: 40px;
    background: var(--card-border);
    flex-shrink: 0;
}
.btn-search {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    background: var(--accent);
    color: #0D0D0D;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}
.btn-search:hover {
    background: #E0C4A0;
    box-shadow: 0 8px 28px rgba(212, 176, 140, 0.3);
    transform: translateY(-1px);
}

/* ── Service Chips ──────────────────────────────────────────────────────── */
.service-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}
.chip-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 4px;
}
.chip {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.2s var(--ease);
    letter-spacing: 0.01em;
}
.chip:hover {
    color: var(--accent);
    border-color: rgba(212, 176, 140, 0.35);
    background: rgba(212, 176, 140, 0.08);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS - Universal
   ═══════════════════════════════════════════════════════════════════════════ */
.section {
    padding: 120px var(--container-padding);
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 72px;
}
.section-title {
    font-size: clamp(34px, 5vw, 52px);
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.section-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 44px 24px 36px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 240px;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}
.category-card:hover {
    border-color: rgba(212, 176, 140, 0.25);
    background: var(--card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.category-card:hover::before {
    opacity: 1;
}
.category-icon {
    font-size: 44px;
    margin-bottom: 20px;
    transition: transform 0.35s var(--ease-spring);
    position: relative;
    z-index: 1;
}
.category-card:hover .category-icon {
    transform: scale(1.1);
}
.category-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.35s var(--ease);
    position: relative;
    z-index: 1;
}
.category-card:hover .category-icon-circle {
    transform: scale(1.08);
    box-shadow: 0 0 32px rgba(212, 176, 140, 0.12);
}
.cat-medical { background: rgba(212, 176, 140, 0.1); }
.cat-hair { background: rgba(180, 160, 140, 0.1); }
.cat-nails { background: rgba(200, 140, 160, 0.1); }
.cat-lashes { background: rgba(160, 170, 200, 0.1); }
.cat-skin { background: rgba(170, 200, 170, 0.1); }

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.category-count {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROVIDER CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.provider-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--ease);
    cursor: pointer;
}
.provider-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.pc-photo {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--card-hover);
    position: relative;
}
.pc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.provider-card:hover .pc-photo img {
    transform: scale(1.05);
}
.pc-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: rgba(212, 176, 140, 0.3);
    background: var(--card);
}
.pc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--accent);
    color: #0D0D0D;
    padding: 5px 12px;
    border-radius: var(--radius-xs);
    z-index: 2;
}
.pc-info {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pc-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.pc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.stars {
    color: var(--star);
    letter-spacing: 2px;
    font-size: 15px;
}
.rating-num {
    font-weight: 600;
    color: var(--text);
}
.review-count {
    color: var(--text-muted);
    font-size: 13px;
}
.pc-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pc-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    background: rgba(212, 176, 140, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    align-self: flex-start;
}
.pc-location {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.pc-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}
.pc-service-tag {
    font-size: 11px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-radius: var(--radius-xs);
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.pc-price {
    font-size: 13px;
    color: var(--text-muted);
}
.pc-price strong {
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
}
.pc-view-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.provider-card:hover .pc-view-btn {
    color: #E0C4A0;
}

.view-all-container {
    text-align: center;
    margin-top: 48px;
}
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.25s;
    letter-spacing: 0.01em;
}
.view-all-link:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

/* ── Empty state ────────────────────────────────────────────────────────── */
.provider-empty {
    text-align: center;
    padding: 64px 32px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    grid-column: 1 / -1;
}
.provider-empty p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}
.provider-empty p a {
    color: var(--accent);
    font-weight: 500;
    transition: opacity 0.2s;
}
.provider-empty p a:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212, 176, 140, 0.06), transparent),
        var(--bg-elevated);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(34px, 5vw, 52px);
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 700;
}
.cta-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-section .btn-primary {
    padding: 18px 52px;
    font-size: 17px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.about-text {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-elevated);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px var(--container-padding) 32px;
}
.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}
.footer-tagline {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 14.5px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    max-width: var(--container-max);
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: var(--text-faint);
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤960px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .provider-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-btn-desktop { display: none; }
    .hamburger { display: flex; }

    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    .hero-title {
        font-size: clamp(36px, 10vw, 52px);
    }

    .search-card {
        border-radius: var(--radius-lg);
        padding: 10px;
    }
    .search-box {
        flex-direction: column;
        gap: 2px;
    }
    .search-field {
        width: 100%;
        padding: 8px 16px;
    }
    .search-divider {
        width: calc(100% - 32px);
        height: 1px;
        margin: 0 auto;
    }
    .btn-search {
        width: 100%;
        margin-top: 8px;
        border-radius: var(--radius);
    }

    .provider-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pc-photo {
        height: 200px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .category-card {
        padding: 32px 16px 28px;
        min-height: 180px;
    }
    .category-name {
        font-size: 18px;
    }

    .section {
        padding: 72px 20px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 32px;
    }

    .footer {
        padding: 56px 20px 28px;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .service-chips { gap: 8px; }
    .chip { font-size: 13px; padding: 7px 15px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .section-title {
        font-size: 28px;
    }
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .category-card {
        padding: 24px 12px;
        min-height: 150px;
    }
    .category-icon-circle {
        width: 56px;
        height: 56px;
    }
    .category-icon {
        font-size: 32px;
    }
    .category-name {
        font-size: 16px;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .pc-photo {
        height: 180px;
    }
    .pc-info {
        padding: 16px;
    }
    .pc-name {
        font-size: 18px;
    }
    .btn-search {
        font-size: 14px;
        padding: 14px 24px;
    }
}
