:root {
    --navy-950: #07131f;
    --navy-900: #0b1f31;
    --navy-800: #12334b;
    --blue-700: #095f86;
    --cyan-500: #21b7d7;
    --cyan-100: #ddf6fb;
    --orange-500: #ff7a1a;
    --orange-100: #fff0e5;
    --slate-700: #384d5c;
    --slate-500: #687c8b;
    --slate-200: #dbe4e9;
    --slate-100: #eef3f6;
    --white: #ffffff;
    --shadow-sm: 0 8px 28px rgba(7, 31, 49, 0.08);
    --shadow-lg: 0 24px 64px rgba(7, 31, 49, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy-950);
    background: var(--white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--navy-950);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.45rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(1.85rem, 3vw, 3.15rem);
}

h3 {
    font-size: 1.32rem;
}

p {
    color: var(--slate-700);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.content-narrow {
    width: min(calc(100% - 40px), 920px);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    background: var(--orange-500);
    content: "";
}

.eyebrow.light {
    color: var(--cyan-100);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.91rem;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--orange-500);
    box-shadow: 0 12px 30px rgba(255, 122, 26, 0.28);
}

.button-secondary {
    color: var(--navy-950);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-light {
    color: var(--navy-950);
    background: var(--white);
}

.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.topbar {
    color: #cbdce6;
    background: var(--navy-950);
    font-size: 0.79rem;
}

.topbar-inner {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar p {
    margin: 0;
    color: #cbdce6;
}

.topbar-actions {
    display: flex;
    gap: 20px;
    color: var(--white);
    font-weight: 700;
}

.site-header {
    position: relative;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}

.header-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 30px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 190px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.main-nav > a,
.nav-dropdown-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 13px;
    color: var(--navy-900);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.91rem;
    font-weight: 700;
    transition: color 160ms ease, background 160ms ease;
}

.main-nav > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
    color: var(--blue-700);
    background: var(--slate-100);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle span {
    margin-left: 6px;
    font-size: 1rem;
}

.service-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: -180px;
    width: min(860px, calc(100vw - 40px));
    padding: 22px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(8px);
    transition: 160ms ease;
}

.nav-dropdown:hover .service-menu,
.nav-dropdown:focus-within .service-menu,
.nav-dropdown.is-open .service-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.service-menu::before {
    position: absolute;
    top: -10px;
    right: 230px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-left: 1px solid var(--slate-200);
    content: "";
    transform: rotate(45deg);
}

.service-menu-all {
    display: block;
    margin-bottom: 14px;
    padding-bottom: 14px;
    color: var(--blue-700);
    border-bottom: 1px solid var(--slate-200);
    font-weight: 800;
}

.service-menu-grid {
    display: grid;
    max-height: 430px;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px 12px;
    overflow-y: auto;
}

.service-menu-grid a {
    padding: 7px 9px;
    border-radius: 7px;
    color: var(--slate-700);
    font-size: 0.82rem;
    font-weight: 600;
}

.service-menu-grid a:hover {
    color: var(--blue-700);
    background: var(--cyan-100);
}

.header-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 17px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
}

.menu-toggle {
    display: none;
}

.breadcrumbs {
    background: #f6f9fa;
    border-bottom: 1px solid var(--slate-200);
}

.breadcrumb-list {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    color: var(--slate-500);
    font-size: 0.78rem;
    white-space: nowrap;
}

.breadcrumb-list a {
    color: var(--blue-700);
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero::before,
.hero::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    filter: blur(4px);
}

.hero::before {
    top: -300px;
    right: -120px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(33, 183, 215, 0.25), transparent 67%);
}

.hero::after {
    bottom: -370px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.18), transparent 66%);
}

.hero-track {
    position: relative;
    z-index: 2;
}

.hero-slide {
    display: none;
    min-height: 680px;
    align-items: center;
    animation: heroFade 600ms ease;
}

.hero-slide.is-active {
    display: flex;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
    gap: 54px;
}

.hero-copy {
    padding-block: 90px 110px;
}

.hero-copy .eyebrow {
    color: var(--cyan-500);
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 850px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(2.6rem, 5.3vw, 5.4rem);
}

.hero-copy .hero-subtitle {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--cyan-100);
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.hero-copy p {
    max-width: 720px;
    margin-bottom: 32px;
    color: #d7e4eb;
    font-size: 1.08rem;
}

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

.hero-visual {
    position: relative;
    display: flex;
    min-height: 500px;
    align-items: center;
    justify-content: center;
}

.hero-visual::before {
    position: absolute;
    width: 420px;
    height: 420px;
    background: linear-gradient(145deg, rgba(33, 183, 215, 0.18), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 48% 52% 44% 56%;
    content: "";
    transform: rotate(-10deg);
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 510px);
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.33));
}

.hero-spec {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 50px;
    width: 210px;
    padding: 16px 18px;
    color: var(--navy-950);
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.hero-spec strong,
.hero-spec span {
    display: block;
}

.hero-spec strong {
    font-size: 1.15rem;
}

.hero-spec span {
    color: var(--slate-500);
    font-size: 0.75rem;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    bottom: 38px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.38);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: 180ms ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--orange-500);
    border-radius: 999px;
}

.trust-strip {
    position: relative;
    z-index: 8;
    margin-top: -28px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.trust-item {
    padding: 22px 24px;
    border-right: 1px solid var(--slate-200);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    margin-bottom: 4px;
    color: var(--navy-900);
    font-size: 1.06rem;
}

.trust-item span {
    color: var(--slate-500);
    font-size: 0.78rem;
}

.section {
    padding-block: 100px;
}

.section-muted {
    background: var(--slate-100);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 700px;
    margin-bottom: 0;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.compact {
    margin-bottom: 26px;
}

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

.service-card {
    position: relative;
    display: grid;
    min-height: 260px;
    padding: 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    border-color: rgba(33, 183, 215, 0.55);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.service-card-number {
    position: absolute;
    top: 14px;
    right: 20px;
    color: var(--slate-100);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.service-card > div:last-child {
    position: relative;
    z-index: 2;
    align-self: end;
}

.service-card span {
    color: var(--blue-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 10px 0 12px;
}

.service-card p {
    margin-bottom: 16px;
    color: var(--slate-500);
    font-size: 0.88rem;
}

.text-link {
    color: var(--blue-700);
    font-size: 0.86rem;
    font-weight: 800;
}

.text-link span {
    margin-left: 5px;
    color: var(--orange-500);
    font-size: inherit;
}

.split-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.image-stage {
    position: relative;
    min-height: 530px;
    background: linear-gradient(145deg, var(--cyan-100), #f7fbfc);
    border-radius: var(--radius-lg);
}

.image-stage::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px dashed rgba(9, 95, 134, 0.25);
    border-radius: 24px;
    content: "";
}

.image-stage img {
    position: absolute;
    z-index: 2;
    right: -25px;
    bottom: 10px;
    width: 105%;
    filter: drop-shadow(0 24px 32px rgba(7, 31, 49, 0.2));
}

.feature-list {
    display: grid;
    margin: 30px 0;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding: 14px 14px 14px 42px;
    background: var(--slate-100);
    border-radius: var(--radius-sm);
    color: var(--navy-800);
    font-size: 0.87rem;
    font-weight: 700;
}

.feature-list li::before {
    position: absolute;
    top: 15px;
    left: 16px;
    color: var(--orange-500);
    content: "✓";
    font-weight: 800;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-showcase-full {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.product-image {
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(145deg, #f8fafb, var(--slate-100));
    border-radius: 14px;
}

.product-image img {
    width: 92%;
    transition: transform 200ms ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card span {
    color: var(--blue-700);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 8px 0 6px;
}

.product-card p {
    margin: 0;
    color: var(--slate-500);
    font-size: 0.82rem;
}

.page-intro {
    position: relative;
    padding-block: 72px;
    overflow: hidden;
    background: linear-gradient(125deg, #eff8fa 0%, #ffffff 60%, #fff3e9 100%);
    border-bottom: 1px solid var(--slate-200);
}

.page-intro::after {
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(33, 183, 215, 0.2), transparent 68%);
    border-radius: 50%;
    content: "";
}

.page-intro-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
    gap: 50px;
}

.page-intro h1 {
    max-width: 900px;
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 5vw, 4.6rem);
}

.page-intro p {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 1.03rem;
}

.page-intro-image {
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(9, 95, 134, 0.15);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.page-intro-image img {
    width: 92%;
    filter: drop-shadow(0 18px 24px rgba(7, 31, 49, 0.18));
}

.detail-banner {
    position: relative;
    display: flex;
    min-height: 500px;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--navy-900);
}

.detail-banner::before,
.detail-banner::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
}

.detail-banner::before {
    background: linear-gradient(90deg, rgba(5, 18, 30, 0.94) 0%, rgba(5, 18, 30, 0.78) 42%, rgba(5, 18, 30, 0.25) 76%, rgba(5, 18, 30, 0.08) 100%);
}

.detail-banner::after {
    background: linear-gradient(0deg, rgba(5, 18, 30, 0.35) 0%, transparent 34%);
}

.detail-banner-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.detail-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 88px;
}

.detail-banner-copy {
    max-width: 780px;
    color: #ffffff;
}

.detail-banner-copy h1 {
    max-width: 920px;
    margin: 12px 0 22px;
    color: #ffffff;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.detail-banner-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.article-layout {
    display: grid;
    align-items: start;
    padding-block: 80px;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 55px;
}

.longform-content section {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--slate-200);
}

.longform-content section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.longform-content h2 {
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.longform-content p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.85;
}

.article-sidebar {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 16px;
}

.sidebar-card {
    padding: 24px;
    background: var(--navy-900);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.sidebar-card.light {
    background: var(--slate-100);
}

.sidebar-card h2,
.sidebar-card p,
.sidebar-card li {
    color: var(--white);
}

.sidebar-card.light h2,
.sidebar-card.light p,
.sidebar-card.light li {
    color: var(--navy-900);
}

.sidebar-card h2 {
    margin-bottom: 12px;
    font-size: 1.32rem;
}

.sidebar-card p,
.sidebar-card li {
    font-size: 0.84rem;
}

.sidebar-card ul {
    padding-left: 18px;
    margin: 0;
}

.sidebar-card .button {
    width: 100%;
    margin-top: 12px;
}

.word-count-note {
    display: inline-flex;
    margin-top: 18px;
    padding: 7px 12px;
    color: var(--blue-700);
    background: var(--cyan-100);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.quote-cta {
    padding-block: 28px;
    background: var(--white);
}

.quote-cta-inner {
    position: relative;
    display: flex;
    min-height: 230px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 46px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
    border-radius: var(--radius-lg);
}

.quote-cta-inner::after {
    position: absolute;
    right: -80px;
    bottom: -190px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 183, 215, 0.28), transparent 66%);
    border-radius: 50%;
    content: "";
}

.quote-cta h2 {
    margin-bottom: 12px;
    color: var(--white);
}

.quote-cta p {
    margin: 0;
    color: #cbdde7;
    font-size: 0.86rem;
}

.quote-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.faq-section {
    padding-block: 95px;
    background: var(--slate-100);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    box-shadow: 0 5px 14px rgba(7, 31, 49, 0.035);
}

.faq-item summary {
    position: relative;
    padding: 20px 58px 20px 22px;
    color: var(--navy-900);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

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

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: var(--blue-700);
    background: var(--cyan-100);
    border-radius: 50%;
    content: "+";
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--slate-700);
}

.region-links-section {
    padding-block: 85px;
}

.region-links {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
}

.region-links a {
    padding: 9px 7px;
    color: var(--slate-700);
    background: var(--slate-100);
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    transition: 150ms ease;
}

.region-links a:hover {
    color: var(--blue-700);
    background: var(--cyan-100);
    border-color: rgba(33, 183, 215, 0.3);
}

.district-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.district-card {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
}

.district-card h3 {
    margin-bottom: 10px;
}

.district-card p {
    margin-bottom: 12px;
    font-size: 0.84rem;
}

.neighborhood-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.neighborhood-links a {
    padding: 5px 9px;
    color: var(--blue-700);
    background: var(--cyan-100);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

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

.branch-card {
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.branch-card span {
    color: var(--orange-500);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.branch-card h3 {
    margin: 9px 0 10px;
}

.branch-card p {
    margin-bottom: 14px;
    font-size: 0.87rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
}

.contact-panel {
    padding: 35px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: var(--radius-lg);
}

.contact-panel h2,
.contact-panel p {
    color: var(--white);
}

.contact-panel p {
    opacity: 0.78;
}

.contact-links {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 17px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.request-card {
    padding: 35px;
    background: var(--slate-100);
    border-radius: var(--radius-lg);
}

.request-checklist {
    display: grid;
    padding: 0;
    margin: 26px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
}

.request-checklist li {
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.about-copy {
    columns: 2;
    column-gap: 55px;
}

.about-copy p {
    break-inside: avoid;
}

.model-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.model-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.model-table th,
.model-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.85rem;
    text-align: left;
}

.model-table th {
    color: var(--white);
    background: var(--navy-900);
}

.model-table tr:last-child td {
    border-bottom: 0;
}

.not-found {
    display: grid;
    min-height: 60vh;
    place-items: center;
    padding-block: 80px;
    text-align: center;
}

.not-found strong {
    display: block;
    color: var(--cyan-500);
    font-size: 6rem;
    line-height: 1;
}

.site-footer {
    padding-top: 70px;
    color: #bed0da;
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    padding-bottom: 50px;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 45px;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 18px;
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
}

.footer-brand p {
    max-width: 360px;
    color: #bed0da;
    font-size: 0.84rem;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li,
.site-footer a {
    color: #bed0da;
    font-size: 0.82rem;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    padding-block: 20px;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #8199a8;
    font-size: 0.72rem;
}

.sticky-contact {
    position: fixed;
    z-index: 9999;
    bottom: 15px;
    left: 50%;
    display: none;
    width: 90%;
    max-width: 510px;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
    transform: translateX(-50%);
    border: 4px solid #ffd400;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    animation: border-glow 1.2s infinite, wiggle 2.5s infinite;
}

.contact-btn {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    border: 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.15;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-call {
    background: #f55b14;
}

.btn-call:hover {
    color: var(--white);
    background: #020e28;
}

.btn-whatsapp {
    background: #25d366;
}

.btn-whatsapp:hover {
    color: var(--white);
    background: #073819;
}

.btn-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: currentColor;
}

@keyframes border-glow {
    0%, 100% {
        border-color: #ffd400;
        box-shadow: 0 0 8px 2px rgba(255, 212, 0, 0.7);
    }
    50% {
        border-color: #ff3d3d;
        box-shadow: 0 0 18px 6px rgba(255, 61, 61, 0.85);
    }
}

@keyframes wiggle {
    0%, 90%, 100% { transform: translateX(-50%) scale(1); }
    92% { transform: translateX(-50%) scale(1.04); }
    94% { transform: translateX(-50%) scale(0.98); }
    96% { transform: translateX(-50%) scale(1.03); }
    98% { transform: translateX(-50%) scale(1); }
}

:focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
