/* ==============================================
   Santa Monica Refrigerator Repair — Homepage
   Premium clean coastal design · CSS-only visual
   ============================================== */

:root {
    /* Slate / navy main accent */
    --navy:        #21405f;
    --navy-deep:   #16314c;
    --slate:       #355476;
    --slate-soft:  #5a738e;

    /* Secondary muted ocean / teal */
    --teal:        #5a8aa3;
    --teal-soft:   #cfe1eb;

    /* Text */
    --text:        #1c2a3a;
    --text-body:   #4a5a6e;
    --text-muted:  #7d8a9c;
    --text-light:  #a4adbb;

    /* Surfaces */
    --bg:          #ffffff;
    --bg-warm:     #f6f5f2;       /* soft warm gray */
    --bg-cool:     #f1f4f8;       /* cool soft */
    --bg-section:  #fbfaf8;
    --line:        #e6e8ec;
    --line-soft:   #eef0f3;

    /* Effects */
    --shadow-sm:   0 1px 2px rgba(28,46,75,.04);
    --shadow-md:   0 4px 14px rgba(28,46,75,.06);
    --shadow-lg:   0 18px 50px rgba(28,46,75,.10);

    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   28px;

    --container:   1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

/* ============ HEADER ============ */
.site-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(150deg, var(--navy) 0%, var(--slate) 100%);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 2px 6px rgba(28,46,75,.18);
}
.logo-mark-top, .logo-mark-bottom {
    display: block;
    width: 18px;
    border-radius: 2px;
    background: rgba(255,255,255,.85);
}
.logo-mark-top    { height: 8px; }
.logo-mark-bottom { height: 12px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-line1 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--slate-soft);
    text-transform: uppercase;
}
.logo-line2 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.005em;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    transition: color .2s;
    position: relative;
}
.nav-link:hover { color: var(--navy); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--navy);
    transition: width .25s;
}
.nav-link:hover::after { width: 100%; }

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--navy);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s, transform .15s, box-shadow .2s;
    flex-shrink: 0;
}
.header-phone:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(28,46,75,.18);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--navy);
    transition: .25s;
    border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background:
        radial-gradient(ellipse 70% 60% at 100% 0%, rgba(90,138,163,.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(33,64,95,.05) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-warm) 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) 1.05fr;
    gap: 60px;
    align-items: center;
}

.hero-text { max-width: 540px; }

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-soft);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.025em;
    color: var(--text);
    margin-bottom: 22px;
}
.hero-h1-accent { color: var(--navy); }

.hero-lead {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    transition: all .2s;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .005em;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(28,46,75,.18);
}

.btn-ghost {
    background: #fff;
    color: var(--navy);
    border-color: var(--line);
}
.btn-ghost:hover {
    border-color: var(--navy);
    background: #fff;
    transform: translateY(-1px);
}

.hero-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}
.hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: var(--text-body);
    font-weight: 500;
}
.hero-meta-dot {
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(90,138,163,.18);
}

/* ============ HERO VISUAL — CSS ONLY ============ */
.hero-visual {
    position: relative;
    aspect-ratio: 5 / 4.4;
    width: 100%;
}

.hv-stage {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, #f4f7fa 0%, #e8eef4 50%, #dde6ef 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 30px 60px -20px rgba(28,46,75,.18),
        inset 0 1px 0 rgba(255,255,255,.9);
}

/* Soft glows */
.hv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}
.hv-glow-1 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(90,138,163,.55) 0%, transparent 70%);
    top: -80px; right: -60px;
}
.hv-glow-2 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(33,64,95,.30) 0%, transparent 70%);
    bottom: -70px; left: -50px;
}

/* Subtle grid */
.hv-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(33,64,95,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(33,64,95,.06) 1px, transparent 1px);
    background-size: 44px 44px;
    background-position: -1px -1px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 40%, transparent 100%);
    opacity: .65;
}

/* Decorative blocks suggesting cabinetry / cards */
.hv-block {
    position: absolute;
    border-radius: 14px;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.7);
}
.hv-block-1 {
    width: 38%; height: 62%;
    right: 6%; bottom: 8%;
    background: linear-gradient(160deg, rgba(255,255,255,.85) 0%, rgba(240,244,250,.6) 100%);
    box-shadow: 0 16px 40px -16px rgba(28,46,75,.15);
}
.hv-block-2 {
    width: 22%; height: 30%;
    left: 8%; top: 10%;
    background: linear-gradient(150deg, rgba(33,64,95,.08) 0%, rgba(33,64,95,.03) 100%);
    border: 1px solid rgba(33,64,95,.08);
}
.hv-line-1 {
    position: absolute;
    width: 70%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(33,64,95,.18), transparent);
    top: 50%;
    left: 15%;
}

/* Glass card — service status */
.hv-card {
    position: absolute;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow:
        0 20px 40px -10px rgba(28,46,75,.18),
        0 1px 0 rgba(255,255,255,.9) inset;
    z-index: 3;
}

.hv-card-status {
    top: 11%;
    left: 8%;
    width: 230px;
    animation: floatA 6s ease-in-out infinite;
}

.hv-card-service {
    bottom: 14%;
    right: 7%;
    width: 215px;
    animation: floatB 7s ease-in-out infinite;
}

.hv-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.hv-status-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #4ea085;
    box-shadow: 0 0 0 4px rgba(78,160,133,.20);
    flex-shrink: 0;
}

.hv-svc-icon {
    width: 22px; height: 22px;
    border-radius: 6px;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hv-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--slate-soft);
}

.hv-card-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-body);
    border-bottom: 1px dashed var(--line);
}
.hv-card-line:last-of-type { border-bottom: none; }
.hv-card-line strong {
    font-size: 15px;
    color: var(--navy);
    font-weight: 800;
}

.hv-bar {
    margin-top: 10px;
    height: 4px;
    background: var(--bg-cool);
    border-radius: 2px;
    overflow: hidden;
}
.hv-bar span {
    display: block;
    height: 100%;
    width: 84%;
    background: linear-gradient(90deg, var(--teal) 0%, var(--navy) 100%);
    border-radius: 2px;
}

.hv-card-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}
.hv-card-sub {
    font-size: 12.5px;
    color: var(--slate-soft);
    font-weight: 500;
}

/* Floating chips */
.hv-chip {
    position: absolute;
    background: var(--navy);
    color: #fff;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 12px 24px -8px rgba(28,46,75,.30);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hv-chip-warranty {
    top: 50%;
    left: 18%;
    animation: floatC 5.5s ease-in-out infinite;
}
.hv-chip-brands {
    bottom: 8%;
    left: 12%;
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--line);
    font-size: 11.5px;
    box-shadow: 0 10px 20px -8px rgba(28,46,75,.12);
    animation: floatD 6.5s ease-in-out infinite;
}
.hv-chip-dot {
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
}

@keyframes floatA {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
}
@keyframes floatB {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}
@keyframes floatC {
    0%,100% { transform: translate(0,0); }
    50%     { transform: translate(4px,-6px); }
}
@keyframes floatD {
    0%,100% { transform: translate(0,0); }
    50%     { transform: translate(-3px,-7px); }
}

/* ============ TRUST BAND ============ */
.trust-band {
    background: var(--bg-warm);
    padding: 56px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

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

.trust-item {
    padding-top: 14px;
    border-top: 2px solid var(--navy);
}

.trust-num {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--teal);
    margin-bottom: 10px;
}

.trust-item h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.55;
}

/* ============ SECTION HEAD ============ */
.section { padding: 90px 0; }

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--teal-soft); }

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.65;
}

/* ============ TYPES ============ */
.types-section {
    background: var(--bg);
}

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

.type-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
}
.type-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.type-card:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.type-card:hover::before { transform: scaleX(1); }

.type-card-mark {
    width: 56px; height: 70px;
    background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-cool) 100%);
    border-radius: 8px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    border: 1px solid var(--line-soft);
}
.type-card-mark span {
    display: block;
    width: 100%;
    height: 8px;
    background: var(--slate-soft);
    border-radius: 2px;
    opacity: .35;
}
.type-card-mark span.tall { height: 42px; }
.type-card-mark span.short { height: 14px; width: 70%; }
.type-card-mark span.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--slate);
    opacity: .55;
}
.type-card-mark .type-card-line {
    height: 1px;
    background: var(--slate-soft);
    opacity: .25;
}

.type-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -.005em;
}

.type-card p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.55;
}

/* ============ PROBLEMS ============ */
.problems-section {
    background: var(--bg-warm);
}

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

.problem-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    color: inherit;
    text-decoration: none;
}
.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy);
}
.problem-card > div { flex: 1; }

.problem-num {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .02em;
}

.problem-card h3 {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 5px;
    letter-spacing: -.005em;
}

.problem-card p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.55;
}

/* ============ BRANDS ============ */
.brands-section { background: var(--bg); }

.brand-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    max-width: 900px;
    margin: 0 auto;
}

.brand-pill {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    background: #fff;
    transition: all .2s;
}
.brand-pill:hover {
    border-color: var(--navy);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============ AREAS ============ */
.areas-section {
    background: var(--bg-warm);
}

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

.areas-text h2 {
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 14px 0 18px;
}

.areas-text p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.areas-note {
    font-size: 14.5px !important;
    color: var(--slate-soft) !important;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 18px !important;
}

.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px 32px;
    box-shadow: var(--shadow-sm);
}

.areas-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
}
.areas-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(90,138,163,.18);
}

/* ============ CLIENTS ============ */
.clients-section { background: var(--bg); }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.client-card {
    background: var(--bg-warm);
    border-radius: 12px;
    padding: 22px 14px;
    text-align: center;
    border: 1px solid var(--line-soft);
    transition: all .2s;
}
.client-card:hover {
    background: #fff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.client-card span {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.005em;
}

/* ============ CONTACT ============ */
.contact-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,138,163,.30) 0%, transparent 70%);
    pointer-events: none;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-side h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 14px 0 16px;
}

.contact-side p {
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-phone-block {
    display: block;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 26px;
    transition: all .2s;
}
.contact-phone-block:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-2px);
}

.contact-phone-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal-soft);
    margin-bottom: 6px;
}
.contact-phone-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
}

.contact-points {
    list-style: none;
}
.contact-points li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
    margin-bottom: 12px;
    line-height: 1.5;
}
.contact-points li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.30);
}

.hp-field { display: none; }

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-row label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.005em;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(33,64,95,.10);
}

.form-row textarea { font-family: inherit; min-height: 100px; }

.form-submit {
    width: 100%;
    margin-top: 8px;
    font-size: 15px;
    padding: 16px 24px;
}

.form-thanks {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(78,160,133,.10);
    border: 1px solid rgba(78,160,133,.30);
    border-radius: 10px;
    color: #2d6e58;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ============ FAQ ============ */
.faq-section { background: var(--bg); }

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: border-color .2s, box-shadow .2s;
    overflow: hidden;
}
.faq-item[open] {
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    letter-spacing: -.005em;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--bg-warm);
    flex-shrink: 0;
    position: relative;
    transition: background .2s, transform .25s;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 9px; height: 1.8px;
    background: var(--navy);
    border-radius: 1px;
    transform: translate(-50%,-50%);
    transition: transform .25s;
}
.faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }

.faq-item[open] .faq-toggle {
    background: var(--navy);
    transform: rotate(180deg);
}
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
    background: #fff;
}
.faq-item[open] .faq-toggle::after { transform: translate(-50%,-50%) rotate(0); }

.faq-item p {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.65;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}
.footer-logo strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.005em;
}
.footer-brand-sub {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    max-width: 360px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 14px;
}

.footer-phone {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    transition: color .2s;
}
.footer-phone:hover { color: var(--navy-deep); }

.footer-small {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 22px 0;
    background: #fff;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============ INNER PAGES ============ */
.page-hero {
    padding: 70px 0 60px;
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(90,138,163,.10) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-warm) 100%);
    border-bottom: 1px solid var(--line-soft);
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumb a {
    color: var(--slate);
    font-weight: 500;
    transition: color .2s;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--text-light); }
.breadcrumb-current { color: var(--text); font-weight: 600; }

.page-hero h1 {
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.022em;
    color: var(--text);
    margin-bottom: 18px;
    max-width: 880px;
}

.page-hero .lead {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: 28px;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Article body */
.page-body {
    padding: 70px 0;
}
.page-body .container {
    max-width: 920px;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.article {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.75;
}

.article h2 {
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -.015em;
    margin: 44px 0 16px;
}
.article h2:first-child { margin-top: 0; }

.article h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    margin: 28px 0 10px;
    letter-spacing: -.005em;
}

.article p {
    margin-bottom: 16px;
    color: var(--text-body);
}

.article p strong { color: var(--text); font-weight: 700; }

.article ul {
    list-style: none;
    margin: 8px 0 22px;
    padding: 0;
}
.article ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-body);
    line-height: 1.65;
}
.article ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(90,138,163,.15);
}

.article a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(33,64,95,.30);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s;
}
.article a:hover { text-decoration-color: var(--navy); }

/* Callout */
.callout {
    background: var(--bg-warm);
    border-left: 3px solid var(--navy);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 28px 0;
}
.callout p { margin-bottom: 0; font-size: 15px; }
.callout strong { color: var(--navy); }

/* Sidebar */
.article-aside {
    align-self: start;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aside-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.aside-card h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 12px;
}

.aside-phone {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 6px;
}
.aside-phone:hover { color: var(--navy-deep); }

.aside-card p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 14px;
}

.aside-card .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
}

.aside-list {
    list-style: none;
}
.aside-list li {
    border-bottom: 1px solid var(--line-soft);
}
.aside-list li:last-child { border-bottom: none; }
.aside-list a {
    display: block;
    padding: 11px 0;
    font-size: 14px;
    color: var(--text-body);
    font-weight: 500;
    transition: color .2s, padding .2s;
}
.aside-list a:hover {
    color: var(--navy);
    padding-left: 6px;
}

/* CTA strip on inner pages */
.cta-strip {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90,138,163,.30) 0%, transparent 70%);
}

.cta-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.cta-strip h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -.015em;
}

.cta-strip p {
    color: rgba(255,255,255,.78);
    font-size: 15px;
}

.cta-strip-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-strip .btn-primary {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}
.cta-strip .btn-primary:hover {
    background: var(--bg-cool);
    border-color: var(--bg-cool);
}

.cta-strip .btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.30);
}
.cta-strip .btn-ghost:hover {
    background: rgba(255,255,255,.10);
    border-color: #fff;
}

/* Related links section */
.related-section {
    background: var(--bg-warm);
    padding: 70px 0;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 32px;
}
.related-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px 26px;
    transition: all .25s;
    display: block;
}
.related-card:hover {
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.related-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -.005em;
}
.related-card p {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 12px;
}
.related-arrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .04em;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .hero-inner { gap: 40px; }
    .card-grid,
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(4, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .article-grid { grid-template-columns: 1fr; gap: 40px; }
    .article-aside { position: static; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .header-inner { padding: 14px 20px; }
    .container { padding: 0 20px; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 18px 20px 22px;
        gap: 4px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }
    .main-nav.open { display: flex; }
    .main-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 15px;
    }
    .main-nav .nav-link:last-child { border-bottom: none; }
    .nav-link::after { display: none; }

    .menu-toggle { display: flex; }
    .header-phone span { display: none; }
    .header-phone { padding: 11px 13px; }

    .hero { padding: 50px 0 70px; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text { max-width: 100%; }
    .hero-visual { aspect-ratio: 5 / 4; max-width: 600px; margin: 0 auto; width: 100%; }
    .hv-card-status  { width: 200px; }
    .hv-card-service { width: 195px; }

    .section { padding: 64px 0; }
    .section-head { margin-bottom: 40px; }

    .areas-wrap { grid-template-columns: 1fr; gap: 32px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .contact-section { padding: 64px 0; }
    .page-hero { padding: 50px 0 44px; }
    .page-body { padding: 50px 0; }
    .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .related-grid { grid-template-columns: 1fr; }
    .article-grid { padding: 0 16px; }
    .aside-card { padding: 22px; }
    .container { padding: 0 16px; }
    .header-inner { padding: 12px 16px; }
    .logo-mark { width: 34px; height: 34px; border-radius: 8px; }
    .logo-line2 { font-size: 14px; }

    .hero { padding: 40px 0 56px; }
    .hero h1 { font-size: 36px; }
    .hero-lead { font-size: 15.5px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .hero-meta { gap: 10px 18px; }

    .hv-card-status { left: 5%; width: 175px; padding: 13px 14px; }
    .hv-card-service { right: 5%; width: 170px; padding: 13px 14px; }
    .hv-card-line strong { font-size: 14px; }
    .hv-chip-warranty { left: 6%; font-size: 11px; padding: 7px 12px; }
    .hv-chip-brands { left: 6%; font-size: 10.5px; padding: 7px 11px; bottom: 5%; }

    .trust-grid { grid-template-columns: 1fr; gap: 22px; }

    .card-grid,
    .problem-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-list { grid-template-columns: 1fr; padding: 24px; }

    .contact-form { padding: 24px; }
    .contact-phone-number { font-size: 26px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

    .faq-item summary { padding: 18px 20px; font-size: 14.5px; }
    .faq-item p { padding: 0 20px 20px; font-size: 14px; }
}
