/* ================================================================
   ซ่อมมือถือเพชรบุรี.com — minimal white design system
   ================================================================ */

/* Reset */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img,svg,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
input,textarea,select { font: inherit; }
ul,ol { list-style: none; }

/* Tokens */
:root {
    --bg: #FFFFFF;
    --surface: #FAFAFA;
    --surface-2: #F5F5F5;
    --border: #EDEDED;
    --border-strong: #D4D4D4;
    --text: #0A0A0A;
    --text-muted: #6B7280;
    --text-subtle: #9CA3AF;
    --accent: #0A0A0A;
    --accent-hover: #262626;

    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 999px;

    --container: 1200px;
    --container-narrow: 900px;

    --font: 'IBM Plex Sans Thai', system-ui, -apple-system, "Segoe UI", sans-serif;

    --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* Base */
body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    font-weight: 400;
}

::selection { background: var(--text); color: var(--bg); }

/* Typography */
h1,h2,h3,h4,h5,h6 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--text-muted); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--text-muted); }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* Section */
.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.section-sm { padding: clamp(48px, 7vw, 80px) 0; position: relative; }

/* Surface section pattern (dotted background) */
.section-surface {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.section-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    pointer-events: none;
}
.section-surface > .container { position: relative; z-index: 1; }

/* Lined section pattern (vertical lines) */
.section-lined {
    position: relative;
    overflow: hidden;
}
.section-lined::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 500px at 20% 50%, rgba(0,0,0,0.03), transparent 60%),
        radial-gradient(circle 500px at 80% 50%, rgba(0,0,0,0.03), transparent 60%),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(0,0,0,0.025) 79px, rgba(0,0,0,0.025) 80px);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 75%);
    pointer-events: none;
}
.section-lined::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.06), transparent);
    pointer-events: none;
}
.section-lined > .container { position: relative; z-index: 1; }

/* Section with floating shapes (testimonials, location) */
.section-shapes {
    position: relative;
    overflow: hidden;
}
.section-shapes::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    border: 1px dashed var(--border);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}
.section-shapes::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -120px;
    width: 360px;
    height: 360px;
    background-image: radial-gradient(circle, var(--border-strong) 1px, transparent 1px);
    background-size: 18px 18px;
    border-radius: 50%;
    mask-image: radial-gradient(circle, #000 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, #000 40%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}
.section-shapes > .container { position: relative; z-index: 1; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { max-width: 600px; margin: 0 auto; }

/* Navbar */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-brand {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-brand .dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--text);
    border-radius: 50%;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
    padding: 8px 14px;
    font-size: 0.92rem;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--text); background: var(--surface); }
.nav-menu .btn { margin-left: 12px; }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text);
}
.nav-toggle:hover { background: var(--surface); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
    background: var(--bg);
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--surface); border-color: var(--text); }
.btn-ghost {
    background: transparent;
    color: var(--text);
}
.btn-ghost:hover { background: var(--surface); }
.btn svg { width: 18px; height: 18px; }

/* Hero */
.hero {
    padding: clamp(56px, 8vw, 100px) 0 clamp(64px, 10vw, 120px);
    position: relative;
    overflow: hidden;
}

/* Map background (faded) */
.hero-map {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -3;
    pointer-events: none;
    opacity: 0.18;
    filter: grayscale(100%) contrast(0.85);
    mask-image: radial-gradient(ellipse 85% 90% at 50% 40%, #000 15%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 40%, #000 15%, transparent 75%);
}
.hero-map iframe {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    border: 0;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 800px at 10% -10%, rgba(255,255,255,0.6), transparent 55%),
        radial-gradient(circle 600px at 95% 10%, rgba(255,255,255,0.5), transparent 50%),
        radial-gradient(circle 700px at 50% 110%, rgba(255,255,255,0.65), transparent 50%),
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px;
    mask-image: linear-gradient(to bottom, #000 65%, transparent 95%);
    -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 95%);
    z-index: -2;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(0,0,0,0.018) 60px, rgba(0,0,0,0.018) 61px);
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 20%, #000 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, transparent 20%, #000 80%);
    z-index: -1;
    pointer-events: none;
}
.hero-shape-1, .hero-shape-2, .hero-shape-3, .hero-shape-4, .hero-shape-5, .hero-shape-6, .hero-shape-7 {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
.hero-shape-1 {
    top: 5%;
    left: -200px;
    width: 480px;
    height: 480px;
    border: 1px dashed var(--border-strong);
    border-radius: 50%;
    opacity: 0.4;
}
.hero-shape-1::before {
    content: "";
    position: absolute;
    inset: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
}
.hero-shape-1::after {
    content: "";
    position: absolute;
    inset: 70px;
    border: 1px dashed var(--border);
    border-radius: 50%;
    opacity: 0.6;
}
.hero-shape-2 {
    top: 8%;
    right: -120px;
    width: 280px;
    height: 280px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    opacity: 0.5;
}
.hero-shape-2::before {
    content: "";
    position: absolute;
    inset: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
}
.hero-shape-3 {
    bottom: -100px;
    left: 20%;
    width: 180px;
    height: 180px;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.06), transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 11px, rgba(0,0,0,0.05) 11px, rgba(0,0,0,0.05) 12px);
    border-radius: 44px;
    transform: rotate(-15deg);
    border: 1px solid var(--border);
}
.hero-shape-4 {
    top: 32%;
    right: 4%;
    width: 14px;
    height: 14px;
    background:
        linear-gradient(to right, var(--text-muted) 40%, transparent 40% 60%, var(--text-muted) 60%),
        linear-gradient(to bottom, var(--text-muted) 40%, transparent 40% 60%, var(--text-muted) 60%);
    background-size: 14px 2px, 2px 14px;
    background-repeat: no-repeat;
    background-position: center, center;
    opacity: 0.4;
}
.hero-shape-4::before, .hero-shape-4::after {
    content: "";
    position: absolute;
    width: 14px; height: 14px;
    background: inherit;
    opacity: 0.6;
}
.hero-shape-4::before { top: -80px; left: -200px; }
.hero-shape-4::after { top: 120px; left: -60px; }
.hero-shape-5 {
    top: 50%;
    left: 8%;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--text-muted);
    border-radius: 4px;
    transform: rotate(45deg);
    opacity: 0.3;
}
.hero-shape-6 {
    bottom: 18%;
    right: 12%;
    width: 70px;
    height: 70px;
    background-image: radial-gradient(circle, var(--text-muted) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: 0.35;
    mask-image: radial-gradient(circle, #000 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 70%);
}
.hero-shape-7 {
    top: 65%;
    left: 42%;
    width: 60px;
    height: 1px;
    background: var(--text-muted);
    opacity: 0.25;
}
.hero-shape-7::before, .hero-shape-7::after {
    content: "";
    position: absolute;
    height: 1px;
    background: var(--text-muted);
}
.hero-shape-7::before { width: 40px; top: 8px; left: 8px; }
.hero-shape-7::after { width: 24px; top: -8px; left: 20px; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.hero-content { text-align: left; }
.hero-content .hero-eyebrow { margin-bottom: 28px; }
.hero-content h1 { margin-bottom: 24px; text-align: left; }
.hero-content .lead { margin: 0 0 36px; max-width: 540px; text-align: left; }
.hero-content .hero-actions { justify-content: flex-start; }

/* Phone mockup visual */
.hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.08), transparent 65%);
    filter: blur(20px);
    z-index: 0;
}
.phone-mockup {
    position: relative;
    width: 72%;
    max-width: 320px;
    aspect-ratio: 9 / 19;
    background: var(--bg);
    border-radius: 38px;
    padding: 12px;
    border: 1px solid var(--border-strong);
    box-shadow:
        0 50px 100px -20px rgba(0,0,0,0.18),
        0 30px 60px -30px rgba(0,0,0,0.12),
        inset 0 0 0 2px var(--bg);
    z-index: 1;
    animation: phoneFloat 6s ease-in-out infinite;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 22px;
    background: var(--text);
    border-radius: 14px;
    z-index: 2;
}
.phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    padding: 0 4px 8px;
    margin-top: 14px;
}
.phone-status-icons { display: flex; gap: 4px; align-items: center; }
.phone-status-icons svg { width: 12px; height: 12px; }
.phone-success {
    width: 64px; height: 64px;
    margin: 12px auto 4px;
    background: var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    position: relative;
}
.phone-success::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 2px solid var(--text);
    border-radius: 50%;
    opacity: 0.15;
    animation: pulse-ring 2s ease-out infinite;
}
.phone-success svg { width: 32px; height: 32px; }
.phone-title {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
}
.phone-sub {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.phone-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.phone-card-icon {
    width: 28px; height: 28px;
    background: var(--surface);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.phone-card-icon svg { width: 14px; height: 14px; }
.phone-card-text { flex: 1; min-width: 0; }
.phone-card-label { font-size: 10px; color: var(--text-muted); line-height: 1.2; }
.phone-card-value { font-size: 11px; font-weight: 600; color: var(--text); }
.phone-card-badge {
    font-size: 9px;
    padding: 3px 8px;
    background: var(--text);
    color: var(--bg);
    border-radius: 999px;
    font-weight: 600;
    flex-shrink: 0;
}
.phone-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: auto;
    color: var(--text);
}
.phone-rating svg { width: 14px; height: 14px; }

/* Floating badges around phone */
.float-badge {
    position: absolute;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: floatY 5s ease-in-out infinite;
}
.float-badge-icon {
    width: 32px; height: 32px;
    background: var(--text);
    color: var(--bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.float-badge-icon svg { width: 16px; height: 16px; }
.float-badge-text { font-size: 0.78rem; line-height: 1.3; }
.float-badge-label { color: var(--text-muted); font-size: 0.7rem; }
.float-badge-value { font-weight: 700; color: var(--text); font-size: 0.85rem; }

.float-badge-1 { top: 8%; left: -8%; animation-delay: 0s; }
.float-badge-2 { top: 38%; right: -10%; animation-delay: 1.5s; }
.float-badge-3 { bottom: 12%; left: 0%; animation-delay: 3s; }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .phone-mockup, .float-badge, .phone-success::before {
        animation: none;
    }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}
.hero-eyebrow .pulse {
    width: 6px; height: 6px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero h1 { margin-bottom: 24px; }
.hero .lead { max-width: 680px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 720px;
    margin: 72px auto 0;
    padding-top: 56px;
    border-top: 1px solid var(--border);
    position: relative;
}
.hero-stats::before,
.hero-stats::after {
    content: "";
    position: absolute;
    top: 56px;
    bottom: 0;
    width: 1px;
    background: var(--border);
}
.hero-stats::before { left: 33.333%; }
.hero-stats::after { left: 66.666%; }
.hero-stat {
    padding: 0 16px;
}
.hero-stat-value {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Steps (How it works) */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: stepcount;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
    z-index: 0;
}
.step {
    text-align: center;
    counter-increment: stepcount;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}
.step::before {
    content: counter(stepcount);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 700;
    color: var(--text);
    opacity: 0.04;
    line-height: 1;
    letter-spacing: -0.04em;
    z-index: -1;
    pointer-events: none;
}
.step-num {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 0 0 6px var(--bg);
}
.step-num::before {
    content: counter(stepcount);
}
.step:hover .step-num {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-2px);
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; line-height: 1.6; }

/* Brand chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.chip {
    padding: 8px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}
.chip::before {
    content: "";
    width: 5px; height: 5px;
    background: var(--border-strong);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    transition: var(--transition);
}
.chip:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-2px);
}
.chip:hover::before { background: var(--bg); }

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    line-height: 1;
    color: var(--text);
    opacity: 0.06;
    font-family: Georgia, serif;
    pointer-events: none;
    transition: var(--transition);
}
.testimonial:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.testimonial:hover::before { opacity: 0.1; transform: translateY(2px); }
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--text);
    position: relative;
    z-index: 1;
}
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-quote, .testimonial-author { position: relative; z-index: 1; }
.testimonial-quote {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    width: 40px; height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
}
.testimonial-info { font-size: 0.85rem; }
.testimonial-name { font-weight: 600; color: var(--text); }
.testimonial-meta { color: var(--text-muted); font-size: 0.78rem; }

/* FAQ */
.faq {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--text);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item[open]::before { transform: scaleY(1); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "";
    width: 24px; height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--surface); }
.faq-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Service cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.03) 50%);
    pointer-events: none;
}
.card::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 32px;
    width: 40px;
    height: 3px;
    background: var(--text);
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.card:hover::after { transform: scaleX(1); }
.card-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.card:hover .card-icon {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card p { font-size: 0.95rem; line-height: 1.65; }

/* Feature list */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
}
.feature-list svg { width: 18px; height: 18px; color: var(--text); flex-shrink: 0; }

/* Reviews CTA */
.reviews-cta {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 32px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.reviews-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 400px at 50% -50%, rgba(0,0,0,0.05), transparent 70%),
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0);
    background-size: 100% 100%, 20px 20px;
    pointer-events: none;
}
.reviews-cta > * { position: relative; z-index: 1; }
.reviews-cta-icon {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--surface);
    border-radius: var(--radius-md);
    color: var(--text);
    position: relative;
}
.reviews-cta-icon svg { width: 32px; height: 32px; }
.reviews-cta h3 { margin-bottom: 12px; font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
.reviews-cta p { margin-bottom: 28px; line-height: 1.65; }

/* Map */
.map {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 480px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}
.map iframe {
    width: 100%; height: 100%; border: 0;
}
.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.map-placeholder:hover { background: var(--surface-2); }
.map-placeholder svg { width: 48px; height: 48px; color: var(--text-muted); }
.map-placeholder p { font-weight: 500; color: var(--text); }
.map-actions { text-align: center; margin-top: 24px; }

/* Footer */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 500px at 50% 100%, rgba(0,0,0,0.04), transparent 60%),
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 100% 100%, 24px 24px;
    mask-image: linear-gradient(to top, #000 60%, transparent);
    -webkit-mask-image: linear-gradient(to top, #000 60%, transparent);
    pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--text);
}
.footer p, .footer li { font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer a { transition: var(--transition); }
.footer a:hover { color: var(--text); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-subtle);
}

/* Address */
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list svg { width: 18px; height: 18px; color: var(--text); flex-shrink: 0; margin-top: 3px; }
.contact-list strong { color: var(--text); font-weight: 600; }

/* Mobile */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-content { text-align: center; }
    .hero-content h1 { text-align: center; }
    .hero-content .lead { margin: 0 auto 36px; text-align: center; }
    .hero-content .hero-actions { justify-content: center; }
    .hero-visual { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .steps::before { display: none; }
    .testimonials { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu a { padding: 12px 16px; font-size: 1rem; }
    .nav-menu .btn { margin-left: 0; margin-top: 8px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { width: 100%; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; margin-top: 56px; }
    .hero-stats::before, .hero-stats::after { display: none; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .faq-item summary { padding: 16px 18px; font-size: 0.95rem; }
    .faq-body { padding: 0 18px 18px; }
    .float-badge { padding: 8px 10px; }
    .float-badge-text { font-size: 0.7rem; }
    .float-badge-value { font-size: 0.78rem; }
    .float-badge-icon { width: 26px; height: 26px; }
    .float-badge-icon svg { width: 13px; height: 13px; }
    .phone-mockup { animation: none; }
}
