/* ===========================
   DESIGN SYSTEM — COMP-HARVEST
   Bold dark · Professional IT
   =========================== */
:root {
    --bg:           #0B1220;
    --surface:      #111D32;
    --surface-el:   #172341;
    --surface-high: #1E2D4E;
    --blue:         #3B82F6;
    --blue-hover:   #60A5FA;
    --blue-dim:     rgba(59,130,246,0.12);
    --blue-border:  rgba(59,130,246,0.28);
    --amber:        #F59E0B;
    --amber-dim:    rgba(245,158,11,0.12);
    --text:         #F1F5F9;
    --text-muted:   #94A3B8;
    --text-subtle:  #64748B;
    --border:       rgba(255,255,255,0.08);
    --border-mid:   rgba(255,255,255,0.13);
    --green:        #22C55E;
    --green-dim:    rgba(34,197,94,0.12);
    --shadow-card:  0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.4);
    --radius:       12px;
    --radius-sm:    8px;
    --radius-btn:   8px;
    --container:    1200px;
    --font-display: 'Sora', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    /* Backward-compat aliases */
    --cyan:       #3B82F6;
    --muted:      #94A3B8;
    --font-mono:  'DM Sans', sans-serif;
    --font-ui:    'Sora', sans-serif;
    --shadow-cyan: 0 4px 24px rgba(0,0,0,0.3);
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes mapPulse {
    0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0;   }
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.45; }
}
@keyframes pageEntrance {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   HEADER / NAV
   =========================== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(11,18,32,0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
nav {
    max-width: var(--container);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
    width: 34px; height: 34px;
    background: var(--blue);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    color: #fff;
    box-shadow: 0 0 8px rgba(59,130,246,0.18);
    flex-shrink: 0;
    transition: background 0.2s;
}
.logo:hover .logo-mark { background: var(--blue-hover); }
.logo-name {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text);
    text-transform: uppercase;
}
.logo-img {
    height: 46px; width: auto; display: block;
    transition: opacity 0.2s; flex-shrink: 0;
}
.logo:hover .logo-img { opacity: 0.82; }
.logo-img-sm { height: 30px; }

/* Nav links */
.nav-links {
    display: flex; align-items: center; gap: 28px;
    margin-left: auto; margin-right: 28px;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 500;
    color: var(--text-muted);
    display: inline-block;
    position: relative; padding-bottom: 4px;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { transform: scaleX(1); }

/* Nav CTA */
.nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue); color: #fff;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 600;
    padding: 8px 18px; border-radius: var(--radius-btn);
    white-space: nowrap; flex-shrink: 0;
    transition: all 0.2s ease;
}
.nav-cta:hover {
    background: var(--blue-hover);
    box-shadow: 0 4px 16px rgba(59,130,246,0.35);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.25s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   MAIN
   =========================== */
main { padding-top: 64px; }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
    padding: 72px 24px 64px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(59,130,246,0.06), transparent);
    pointer-events: none;
}
.page-hero-inner {
    position: relative; z-index: 1;
    max-width: var(--container); margin: 0 auto;
    animation: pageEntrance 0.45s ease 0.05s both;
}
.page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--blue);
    margin-bottom: 14px; letter-spacing: 0.03em;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 5vw, 52px); font-weight: 700;
    color: var(--text); line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.page-hero-sub {
    font-size: 16px; color: var(--text-muted);
    line-height: 1.7; max-width: 560px;
}

/* ===========================
   SECTION COMMONS
   =========================== */
section { padding: 88px 24px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--blue);
    margin-bottom: 12px; letter-spacing: 0.03em;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 38px); font-weight: 700;
    color: var(--text); line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 44px;
}
.section-lead {
    font-size: 16px; color: var(--text-muted);
    line-height: 1.7; max-width: 600px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue); color: #fff;
    font-family: var(--font-body);
    font-size: 15px; font-weight: 600;
    padding: 13px 26px; border-radius: var(--radius-btn);
    border: none; cursor: pointer; transition: all 0.2s ease;
}
.btn-primary:hover {
    background: var(--blue-hover);
    box-shadow: 0 6px 20px rgba(59,130,246,0.35);
    transform: translateY(-1px);
}
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text);
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    padding: 12px 26px; border-radius: var(--radius-btn);
    border: 1px solid var(--border-mid); transition: all 0.2s ease;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.22);
}
.btn-phone {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; width: 100%;
    background: var(--blue); color: #fff;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    padding: 15px 24px; border-radius: var(--radius-btn);
    transition: all 0.2s ease; letter-spacing: -0.01em;
}
.btn-phone:hover {
    background: var(--blue-hover);
    box-shadow: 0 6px 24px rgba(59,130,246,0.4);
    transform: translateY(-1px);
}

/* ===========================
   SERVICE CARDS
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}
.service-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    display: flex; flex-direction: column; gap: 14px;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(59,130,246,0.15);
}
.service-card.featured {
    border-color: var(--blue-border);
    background: linear-gradient(145deg, var(--surface), rgba(59,130,246,0.04));
}
.card-icon-wrap {
    width: 48px; height: 48px; background: var(--blue-dim);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: var(--blue);
}
.card-icon { width: 24px; height: 24px; }
.card-badge {
    font-size: 11px; font-weight: 700; color: #fff;
    background: var(--amber); padding: 3px 9px;
    border-radius: 20px; letter-spacing: 0.03em;
}
.card-header {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 12px;
}
.card-title {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    color: var(--text); line-height: 1.25;
}
.card-body { font-size: 14px; line-height: 1.7; color: var(--text-muted); flex: 1; }
.card-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: var(--blue);
    margin-top: 4px; transition: gap 0.2s;
}
.service-card:hover .card-cta { gap: 10px; }

/* ===========================
   STAT CHIPS
   =========================== */
.stat-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.stat-chip {
    display: flex; align-items: center; gap: 8px;
    background: var(--surface-el); border: 1px solid var(--border);
    border-radius: 40px; padding: 7px 16px;
    font-size: 13px; font-weight: 500; color: var(--text-muted);
}
.stat-chip strong { color: var(--text); font-weight: 700; }

/* ===========================
   SPEC TABLE
   =========================== */
.spec-box {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-card);
}
.spec-box-header {
    background: var(--surface-el); padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
}
.spec-box-title {
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    color: var(--text); letter-spacing: -0.01em;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td {
    padding: 12px 22px; font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child {
    color: var(--text-muted); font-weight: 500; width: 48%;
    background: rgba(255,255,255,0.012);
}
.spec-table td:last-child { color: var(--text); }
.status-badge {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green); font-weight: 600;
}
.status-dot {
    width: 7px; height: 7px; background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(34,197,94,0.5);
    animation: statusPulse 2s ease infinite;
}

/* ===========================
   MAP CARD
   =========================== */
.map-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-card);
}
.map-area { position: relative; height: 300px; overflow: hidden; }
.map-area iframe {
    width: 100%; height: 100%; display: block; border: 0;
    filter: brightness(0.92) saturate(1.1);
}
.map-footer {
    padding: 12px 20px; border-top: 1px solid var(--border);
    display: flex; justify-content: center;
}
.map-link {
    font-size: 13px; font-weight: 500; color: var(--blue);
    display: flex; align-items: center; gap: 6px; transition: opacity 0.2s;
}
.map-link:hover { opacity: 0.72; }

/* ===========================
   CONTACT INFO CARD
   =========================== */
.contact-info-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 24px;
    display: flex; flex-direction: column; gap: 20px;
}
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row-icon {
    width: 36px; height: 36px; background: var(--blue-dim);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; color: var(--blue); flex-shrink: 0;
}
.contact-row-label {
    font-size: 11px; font-weight: 600; color: var(--text-subtle);
    text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px;
}
.contact-row-value {
    font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.5;
}
.contact-row-sub { font-size: 13px; color: var(--text-muted); margin-top: 1px; }
.contact-divider { height: 1px; background: var(--border); }

/* ===========================
   LEAD FORM
   =========================== */
.form-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow-card);
}
.form-card-title {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    color: var(--text); margin-bottom: 6px; letter-spacing: -0.02em;
}
.form-card-sub {
    font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px;
}
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-label .req { color: var(--blue); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
    background: var(--surface-el); border: 1px solid var(--border-mid);
    border-radius: var(--radius-sm); padding: 11px 14px;
    font-family: var(--font-body); font-size: 14px; color: var(--text);
    outline: none; width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-subtle); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(59,130,246,0.5);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px; cursor: pointer;
}
.form-select option { background: var(--surface-el); color: var(--text); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-submit {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%;
    background: var(--blue); color: #fff;
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    padding: 14px 24px; border-radius: var(--radius-btn);
    border: none; cursor: pointer; transition: all 0.2s ease;
    margin-top: 4px; letter-spacing: -0.01em;
}
.form-submit:hover {
    background: var(--blue-hover);
    box-shadow: 0 6px 20px rgba(59,130,246,0.35);
    transform: translateY(-1px);
}
.form-note {
    font-size: 12px; color: var(--text-subtle);
    text-align: center; line-height: 1.6;
}
.form-success {
    display: none; text-align: center;
    padding: 40px 20px; flex-direction: column; align-items: center; gap: 14px;
}
.form-success.show { display: flex; }
.success-icon {
    width: 52px; height: 52px; background: var(--green-dim);
    border: 2px solid var(--green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green); font-size: 22px;
}
.success-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); }
.success-sub { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 360px; }

/* ===========================
   WIZARD FORM
   =========================== */
.wiz-steps {
    display: flex; align-items: flex-start; margin-bottom: 28px; position: relative;
}
.wiz-step {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    flex: 1; position: relative;
}
.wiz-step:not(:last-child)::after {
    content: ''; position: absolute; top: 15px; left: 55%; right: -55%;
    height: 1px; background: var(--border); z-index: 0; transition: background 0.3s;
}
.wiz-step.done:not(:last-child)::after { background: var(--blue); }
.wiz-num {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    border: 1px solid var(--border); color: var(--text-subtle);
    background: var(--surface-el); position: relative; z-index: 1;
    transition: all 0.25s ease;
}
.wiz-step.active .wiz-num { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 0 14px rgba(59,130,246,0.4); }
.wiz-step.done .wiz-num { background: var(--blue-dim); color: var(--blue); border-color: var(--blue-border); }
.wiz-label { font-size: 11px; color: var(--text-subtle); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; transition: color 0.25s; }
.wiz-step.active .wiz-label { color: var(--blue); }
.wiz-step.done .wiz-label { color: var(--text-muted); }

.wiz-panel { display: none; }
.wiz-panel.active { display: block; animation: fadeUp 0.28s ease; }

.topic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }
.topic-btn {
    background: var(--surface-el); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 16px 14px;
    cursor: pointer; transition: all 0.2s ease;
    display: flex; flex-direction: column; gap: 8px; text-align: left; width: 100%;
}
.topic-btn:hover { border-color: var(--blue-border); background: rgba(59,130,246,0.07); }
.topic-btn.selected { border-color: var(--blue); background: var(--blue-dim); box-shadow: 0 0 0 1px var(--blue); }
.topic-icon {
    width: 36px; height: 36px; background: var(--blue-dim);
    border-radius: 8px; display: flex; align-items: center;
    justify-content: center; color: var(--blue); transition: all 0.2s;
}
.topic-btn.selected .topic-icon { background: var(--blue); color: #fff; }
.topic-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.2; }
.topic-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

.wiz-nav { display: flex; gap: 10px; margin-top: 20px; }
.wiz-back-btn {
    background: none; border: 1px solid var(--border); color: var(--text-muted);
    padding: 11px 18px; border-radius: var(--radius-btn);
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.18s; flex-shrink: 0;
}
.wiz-back-btn:hover { color: var(--text); border-color: var(--border-mid); }
.wiz-next-btn {
    flex: 1; background: var(--blue); color: #fff; border: none;
    padding: 13px 24px; border-radius: var(--radius-btn);
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    cursor: pointer; transition: all 0.18s;
}
.wiz-next-btn:hover:not(:disabled) { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.35); }
.wiz-next-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.wiz-fields { display: flex; flex-direction: column; gap: 14px; }
.wiz-success { text-align: center; padding: 32px 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; }

@media (max-width: 480px) { .topic-grid { grid-template-columns: 1fr; } }

/* ===========================
   HOURS CARD
   =========================== */
.hours-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.hours-header {
    background: var(--surface-el); padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 12px; font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.07em;
}
.hours-row {
    display: flex; justify-content: space-between;
    padding: 11px 20px; font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day      { color: var(--text-muted); }
.hours-row .time-open { color: var(--green); font-weight: 500; }
.hours-row .time-ask  { color: var(--text-subtle); }

/* ===========================
   REVIEW SLIDER
   =========================== */
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.reviews-header-left {}
.reviews-header-left .section-eyebrow { margin-bottom: 10px; }
.reviews-header-left .section-title   { margin-bottom: 0; }
.rating-badge {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 14px 20px; flex-shrink: 0;
}
.rating-g-logo {
    font-size: 22px; font-weight: 700; line-height: 1;
    background: linear-gradient(135deg, #4285F4 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; font-family: 'Arial', sans-serif;
}
.rating-badge-inner {}
.rating-score {
    font-family: var(--font-display); font-size: 26px; font-weight: 700;
    color: var(--text); line-height: 1; margin-bottom: 3px;
}
.rating-stars-row { display: flex; gap: 2px; margin-bottom: 3px; }
.star-filled { color: #FBBC04; font-size: 14px; line-height: 1; }
.rating-count { font-size: 12px; color: var(--text-muted); }
.rating-count a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.slider-outer { position: relative; }
.slider-window { overflow: hidden; }
.slider-track {
    display: flex; gap: 18px;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.review-card {
    flex: 0 0 calc(33.333% - 12px);
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 26px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.review-card:hover { border-color: var(--blue-border); box-shadow: var(--shadow-card); }
.rc-top { display: flex; align-items: center; gap: 10px; }
.rc-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--blue-dim);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    color: var(--blue); flex-shrink: 0; overflow: hidden;
}
.rc-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.rc-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }
.rc-date { font-size: 12px; color: var(--text-subtle); margin-top: 2px; }
.rc-stars { display: flex; gap: 2px; }
.rc-star  { color: #FBBC04; font-size: 13px; }
.rc-text  { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.rc-source {
    display: flex; align-items: center; gap: 6px;
    padding-top: 12px; border-top: 1px solid var(--border);
    font-size: 12px; color: var(--text-subtle);
}
.rc-g {
    font-size: 13px; font-weight: 700;
    background: linear-gradient(135deg,#4285F4 25%,#34A853 25% 50%,#FBBC05 50% 75%,#EA4335 75%);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    background-clip:text; font-family:'Arial',sans-serif;
}

.slider-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 28px;
}
.slider-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border-mid);
    background: var(--surface); color: var(--text); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; font-size: 16px; flex-shrink: 0;
}
.slider-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.slider-btn:disabled { opacity: 0.3; cursor: default; }
.slider-dots-row { display: flex; gap: 6px; align-items: center; }
.slider-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border-mid); cursor: pointer;
    transition: all 0.2s; border: none; padding: 0;
}
.slider-dot.active { width: 20px; border-radius: 3px; background: var(--blue); }

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--surface); padding: 40px 24px 28px;
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: start; gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tagline { font-size: 13px; color: var(--text-subtle); line-height: 1.6; max-width: 260px; }
.footer-copy    { font-size: 12px; color: var(--text-subtle); margin-top: 12px; }
.footer-nav     { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; }
.footer-nav-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--text); }
.footer-right { text-align: right; }
.footer-phone { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.footer-address { font-size: 13px; color: var(--text-subtle); line-height: 1.6; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-nav   { grid-column: 1 / -1; order: 3; flex-direction: row; }
    .footer-right { text-align: left; }
    .review-card  { flex: 0 0 calc(50% - 9px); }
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-right { text-align: left; }
    .footer-nav   { align-items: flex-start; order: unset; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    section { padding: 64px 20px; }
    .page-hero { padding: 52px 20px 48px; }
    nav .nav-links {
        position: fixed; top: 64px; left: 0; right: 0;
        background: rgba(11,18,32,0.98);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        padding: 20px; flex-direction: column; gap: 16px;
        align-items: flex-start; border-bottom: 1px solid var(--border);
        transform: translateY(-110%); opacity: 0; pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease; z-index: 99;
    }
    nav .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    nav .nav-links a { font-size: 16px; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .review-card { flex: 0 0 100%; }
}
