:root {
    --navy: #0A1628;
    --navy-2: #172A58;
    --card: #1E3A6F;
    --blue: #3B82F6;
    --blue-dark: #2563EB;
    --blue-light: #93C5FD;
    --white: #FFFFFF;
    --gray: #D0D0D0;
    --muted: #888888;
    --line: #4A5A7A;
    --gold: #ECC94B;
    --mint: #48BB78;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow-blue: 0 12px 30px rgba(59, 130, 246, 0.25);
    --shadow-gold: 0 10px 30px rgba(236, 201, 75, 0.25);
    --shadow-mint: 0 10px 30px rgba(72, 187, 120, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--gray);
    line-height: 1.65;
    font-size: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.display {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 640px;
}

.muted {
    color: var(--muted);
    font-size: 0.85rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: var(--blue-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 12px 0;
    font-weight: 700;
    z-index: 200;
}

.skip-link:focus {
    left: 0;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

#site-header {
    min-height: 72px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 90, 122, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 72px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.logo span {
    color: var(--blue);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

.main-nav a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.main-nav a.active {
    color: var(--white);
    border-bottom-color: var(--blue);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.header-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    transition: color 0.25s ease;
}

.header-phone:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-sm {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.03) rotate(-0.5deg);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: var(--card);
    color: var(--white);
    border-color: var(--line);
}

.btn-secondary:hover {
    background: var(--mint);
    color: var(--navy);
    border-color: var(--mint);
    transform: scale(1.03);
    box-shadow: var(--shadow-mint);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(147, 197, 253, 0.25);
}

.btn-call {
    background: transparent;
    color: var(--white);
    border-color: var(--blue);
}

.btn-call:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.03) rotate(-0.5deg);
    box-shadow: var(--shadow-gold);
}

.btn:active {
    transform: scale(0.97);
}

main a:not(.btn):not(.pill):not(.card-link):not(.blog-card):not(.gallery-link) {
    color: var(--blue-light);
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

main a:not(.btn):not(.pill):not(.card-link):not(.blog-card):not(.gallery-link):hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

main a:not(.btn):not(.pill):visited {
    color: var(--blue-light);
}

main a:not(.btn):not(.pill):visited:hover {
    color: var(--gold);
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: var(--navy-2);
    border-top: 1px solid rgba(74, 90, 122, 0.35);
    border-bottom: 1px solid rgba(74, 90, 122, 0.35);
}

.section-head {
    max-width: 680px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-head p {
    margin-top: 0.9rem;
    color: var(--gray);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.card h3 {
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--gray);
}

.card .icon {
    font-size: 1.6rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 14px;
    margin-bottom: 1.1rem;
}

.card-link {
    display: block;
    color: inherit;
}

.card-link .more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-light);
    transition: color 0.25s ease;
}

.card-link:hover .more {
    color: var(--gold);
}

.pill {
    display: inline-block;
    background: var(--navy-2);
    border: 1px solid var(--line);
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.pill:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: scale(1.12) rotate(-3deg) translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.pill-blue:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.pill-outline {
    background: transparent;
}

.pill-outline:hover {
    background: var(--mint);
    border-color: var(--mint);
    color: var(--navy);
    box-shadow: var(--shadow-mint);
}

.pill:active {
    transform: scale(0.95);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.7rem;
}

.city-pills a:nth-child(3n+1):hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.city-pills a:nth-child(3n+2):hover {
    background: var(--mint);
    border-color: var(--mint);
    color: var(--navy);
    box-shadow: var(--shadow-mint);
}

.city-pills a:nth-child(3n):hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.hero {
    padding: 5rem 0 4.5rem;
    background: radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.18), transparent 45%), radial-gradient(circle at 10% 90%, rgba(23, 42, 88, 0.9), transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 span {
    color: var(--blue);
}

.hero .lead {
    margin: 1.2rem 0 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
    list-style: none;
    font-size: 0.85rem;
    color: var(--muted);
}

.trust-row li::before {
    content: "\2726";
    color: var(--gold);
    margin-right: 0.45rem;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 320px;
}
.hero-visual img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--line);
}

.map-ring {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px dashed var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-ring::before {
    content: "";
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px dashed rgba(74, 90, 122, 0.6);
}

.map-ring::after {
    content: "";
    position: absolute;
    inset: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35), rgba(59, 130, 246, 0.05) 70%);
    animation: pulse 3.5s ease-in-out infinite;
}

.map-core {
    position: relative;
    z-index: 2;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-blue);
}

.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(236, 201, 75, 0.7);
}

.map-dot.d1 {
    top: 12%;
    left: 24%;
}

.map-dot.d2 {
    top: 30%;
    right: 8%;
    background: var(--mint);
    box-shadow: 0 0 12px rgba(72, 187, 120, 0.7);
}

.map-dot.d3 {
    bottom: 16%;
    left: 12%;
    background: var(--blue-light);
    box-shadow: 0 0 12px rgba(147, 197, 253, 0.7);
}

.map-dot.d4 {
    bottom: 8%;
    right: 26%;
}

.float-card {
    position: absolute;
    bottom: 4%;
    right: 0;
    background: rgba(23, 42, 88, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.8rem;
    color: var(--white);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    animation: floaty 5s ease-in-out infinite;
}

.float-card .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 10px rgba(72, 187, 120, 0.8);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.page-hero {
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at 85% 0%, rgba(59, 130, 246, 0.15), transparent 40%);
    border-bottom: 1px solid rgba(74, 90, 122, 0.35);
}

.page-hero .lead {
    margin-top: 1rem;
}

.page-hero .hero-actions {
    margin-top: 1.6rem;
    margin-bottom: 0;
}

.breadcrumbs {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
}

.breadcrumbs a {
    color: var(--muted);
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs span {
    margin: 0 0.4rem;
    color: var(--line);
}

.steps {
    list-style: none;
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.steps li {
    counter-increment: step;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.steps li:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.steps li::before {
    content: counter(step, decimal-leading-zero);
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
    border: 1px solid var(--gold);
    border-radius: 100px;
    padding: 0.15rem 0.75rem;
    margin-bottom: 0.9rem;
}

.steps h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.steps p {
    font-size: 0.92rem;
}

.price-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.price-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(236, 201, 75, 0.35);
}

.price-card .price-range {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0.5rem 0 1rem;
}

.price-card .price-range small {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

.price-card ul {
    list-style: none;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

.price-card li {
    font-size: 0.92rem;
    padding: 0.32rem 0;
    border-bottom: 1px dashed rgba(74, 90, 122, 0.4);
}

.price-card li::before {
    content: "\2713";
    color: var(--mint);
    font-weight: 700;
    margin-right: 0.55rem;
}

.badge {
    display: inline-block;
    background: rgba(236, 201, 75, 0.15);
    border: 1px solid rgba(236, 201, 75, 0.5);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.price-table th {
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white);
    font-weight: 600;
    padding: 0.8rem 1rem;
    background: var(--navy-2);
    border-bottom: 1px solid var(--line);
}

.price-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(74, 90, 122, 0.35);
}

.price-table tr:hover td {
    background: rgba(59, 130, 246, 0.08);
}

.price-table .amount {
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.table-scroll {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
}

.quote-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.stars {
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

.quote-card blockquote {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

.cta-box {
    background: linear-gradient(135deg, var(--navy-2), var(--card));
    border: 1px solid var(--blue);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.18);
}

.cta-box h2 {
    margin-bottom: 0.7rem;
}

.cta-box p {
    max-width: 560px;
    margin: 0 auto 1.6rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem 1.25rem;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-light);
    margin-bottom: 0.4rem;
}

.form-label .req {
    color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--navy);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: all 0.25s ease;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--gold);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form-select {
    appearance: none;
    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 fill='%2393C5FD' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-textarea {
    min-height: 110px;
    resize: vertical;
}

.form-help {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.35rem;
}

.form-section {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.form-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.form-section .section-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem 1.25rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
}

.checkbox-item:hover {
    border-color: var(--gold);
    background: rgba(236, 201, 75, 0.06);
}

.checkbox-item input {
    accent-color: var(--blue);
    width: 17px;
    height: 17px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-item .price-note {
    color: var(--gold);
    font-size: 0.8rem;
    white-space: nowrap;
    margin-left: auto;
    padding-left: 0.5rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: none;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    margin-top: 1.25rem;
}

.form-status.success {
    display: block;
    background: rgba(72, 187, 120, 0.12);
    border: 1px solid var(--mint);
    color: #A7F3C9;
}

.form-status.error {
    display: block;
    background: rgba(236, 201, 75, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 0.9rem;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item[open] {
    border-color: var(--blue);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--gold);
}

.faq-item .faq-answer {
    padding: 0 1.4rem 1.25rem;
    font-size: 0.95rem;
}

.faq-category {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--blue-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2.25rem 0 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--card);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.gallery-item .frame {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--navy-2), var(--card) 60%, rgba(59, 130, 246, 0.35));
}

.gallery-item figcaption {
    padding: 0.9rem 1.1rem;
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.gallery-item .badge {
    flex-shrink: 0;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--navy-2);
    border: 1px solid var(--line);
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: scale(1.12) rotate(-3deg) translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.filter-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}

.blog-card .frame {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--navy-2), rgba(59, 130, 246, 0.3));
}

.blog-card .body {
    padding: 1.25rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin: 0.6rem 0 0.5rem;
}

.blog-card:hover h3 {
    color: var(--gold);
}

.blog-card p {
    font-size: 0.9rem;
    flex-grow: 1;
}

.blog-card .meta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1rem;
}

.search-input {
    max-width: 420px;
    margin: 0 auto 1.25rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.25rem;
}

.pagination button {
    background: var(--navy-2);
    border: 1px solid var(--line);
    color: var(--gray);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    min-width: 42px;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pagination button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination button.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
}

.article-body h2 {
    margin: 2.25rem 0 0.9rem;
    font-size: 1.5rem;
}

.article-body p {
    margin-bottom: 1.1rem;
}

.article-body ul {
    margin: 0 0 1.1rem 1.25rem;
}

.article-body li {
    margin-bottom: 0.4rem;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.75rem;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.estimate-bar {
    position: sticky;
    bottom: 1rem;
    z-index: 40;
    background: rgba(23, 42, 88, 0.96);
    backdrop-filter: blur(8px);
    border: 1px solid var(--blue);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    margin-top: 2rem;
}

.estimate-bar .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue-light);
}

.estimate-bar .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.vehicle-picker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 2.25rem;
}

.vehicle-btn {
    background: var(--card);
    border: 1px solid var(--line);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.vehicle-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.length-field {
    max-width: 320px;
    margin: 0 auto 2rem;
    text-align: center;
}

.notice {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
}

.notice.gold {
    background: rgba(236, 201, 75, 0.08);
    border-color: rgba(236, 201, 75, 0.45);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split .prose p {
    margin-bottom: 1rem;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.stat-strip .stat {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    text-align: center;
}

.stat-strip .stat strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
}

.stat-strip .stat span {
    font-size: 0.82rem;
    color: var(--muted);
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 0.45rem 0;
    border-bottom: 1px dashed rgba(74, 90, 122, 0.4);
}

.check-list li::before {
    content: "\2713";
    color: var(--mint);
    font-weight: 700;
    margin-right: 0.6rem;
}

.site-footer {
    background: var(--navy-2);
    border-top: 1px solid var(--line);
    padding: 3.5rem 0 1.75rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-grid h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-light);
    margin-bottom: 1rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 0.45rem;
}

.footer-grid a {
    font-size: 0.88rem;
    color: var(--gray);
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

.footer-grid a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.footer-about p {
    font-size: 0.88rem;
    margin: 0.9rem 0 1.1rem;
    max-width: 300px;
}

.footer-bottom {
    border-top: 1px solid rgba(74, 90, 122, 0.4);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--blue-light);
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}

.noscript-nav {
    background: var(--navy-2);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

.noscript-nav a {
    color: var(--blue-light);
    margin-right: 1rem;
    text-decoration: underline;
}

@media (max-width: 960px) {
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        border-bottom: 1px solid var(--line);
        transform: translateY(-130%);
        transition: transform 0.3s ease;
        z-index: 90;
    }
    .main-nav.open {
        transform: translateY(0);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.5rem 1.25rem;
    }
    .main-nav a {
        display: block;
        padding: 0.8rem 0.25rem;
        border-bottom: 1px solid rgba(74, 90, 122, 0.3);
        font-size: 1rem;
    }
    .nav-toggle {
        display: flex;
    }
    .header-cta .btn {
        display: none;
    }
    .hero-grid,
    .split,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3.25rem 0;
    }
    .hero {
        padding: 3.5rem 0;
    }
    .grid-2,
    .grid-3,
    .grid-4,
    .gallery-grid,
    .blog-grid,
    .form-grid,
    .checkbox-grid,
    .stat-strip {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .header-phone {
        display: none;
    }
    .hero-visual {
        min-height: 280px;
    }
    .map-ring {
        width: 250px;
        height: 250px;
    }
    .estimate-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}
