:root {
    --navy-950: #091b33;
    --navy-900: #102a4c;
    --navy-800: #173b68;
    --blue-700: #1f57a7;
    --blue-600: #2e6bc3;
    --blue-500: #4aa8ed;
    --blue-100: #e7f2fc;
    --blue-50: #f3f8fd;
    --ink: #172033;
    --muted: #647083;
    --soft: #f6f8fb;
    --surface: #ffffff;
    --line: #dde4ed;
    --line-strong: #c8d2df;
    --line-green: #06c755;
    --accent-orange: #e85613;
    --facebook: #1877f2;
    --shadow-sm: 0 8px 24px rgba(16, 42, 76, 0.08);
    --shadow-md: 0 18px 50px rgba(16, 42, 76, 0.13);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Prompt", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

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

button {
    border: 0;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(74, 168, 237, 0.45);
    outline-offset: 3px;
}

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

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.align-left {
    margin-inline: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--blue-700);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #b9dcf7;
}

.section-title {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.section-description {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: #fff;
    background: var(--blue-600);
    box-shadow: 0 10px 26px rgba(46, 107, 195, 0.25);
}

.button-primary:hover {
    background: var(--blue-700);
    box-shadow: 0 14px 30px rgba(46, 107, 195, 0.3);
}

.button-secondary {
    color: var(--navy-900);
    background: #fff;
    border-color: var(--line-strong);
}

.button-secondary:hover {
    border-color: var(--blue-600);
}

.button-ghost-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.button-ghost-light:hover {
    background: rgba(255, 255, 255, 0.14);
}

.button-line {
    color: #fff;
    background: var(--line-green);
}

.button-line:hover {
    background: #05b54d;
}

.button-facebook {
    color: #fff;
    background: var(--facebook);
}

.button-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-weight: 700;
}

.text-link i {
    transition: transform 180ms ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(221, 228, 237, 0.85);
    backdrop-filter: blur(16px);
}

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

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

.brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(9, 27, 51, 0.12);
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    color: var(--navy-950);
    font-size: 1rem;
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.7rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    position: relative;
    color: #4e5a6c;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: var(--blue-600);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--navy-950);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    background: var(--blue-50);
    border-radius: 11px;
    font-size: 1.2rem;
}

.mobile-menu {
    display: none;
    padding: 8px 0 18px;
    border-top: 1px solid var(--line);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    color: #3d4a5e;
    border-bottom: 1px solid #edf1f5;
    font-weight: 600;
}

.mobile-menu .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 15px;
}

.mobile-menu .mobile-menu-actions .button {
    min-height: 50px;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-bottom-width: 1px;
}

.mobile-menu .mobile-menu-actions .button-secondary {
    border-bottom-color: var(--line-strong);
}

.mobile-menu .mobile-menu-actions .button-line {
    color: #fff;
    border-bottom-color: transparent;
}

/* Home hero */
.home-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--navy-950);
}

.home-hero::before,
.home-hero::after,
.page-hero::before {
    position: absolute;
    border-radius: 999px;
    content: "";
    pointer-events: none;
}

.home-hero::before {
    top: -190px;
    right: -110px;
    width: 520px;
    height: 520px;
    background: rgba(74, 168, 237, 0.13);
    filter: blur(12px);
}

.home-hero::after {
    bottom: -250px;
    left: 28%;
    width: 480px;
    height: 480px;
    background: rgba(46, 107, 195, 0.16);
}

.hero-carousel-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.hero-slide-viewport {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.hero-slides {
    display: flex;
    transform: translate3d(0, 0, 0);
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-slides.is-jumping {
    transition: none;
}

.hero-slide {
    flex: 0 0 100%;
    min-width: 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    min-height: 610px;
    align-items: center;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.75fr);
    gap: 54px;
    padding: 52px 0 34px;
}

.hero-grid > * {
    min-width: 0;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.75rem, 4.4vw, 4.55rem);
    line-height: 1.06;
    letter-spacing: -0.042em;
}

.hero-copy h1 span {
    color: #8ecbf4;
}

.hero-copy > p {
    max-width: 650px;
    margin: 20px 0 0;
    color: #c5d3e4;
    font-size: 1.05rem;
}

.hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.hero-proof-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #dcebf7;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 600;
}

.hero-proof-list i {
    color: #8ecbf4;
}

.hero-package-highlight {
    display: flex;
    width: fit-content;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px 12px;
    margin-top: 22px;
    padding: 12px 15px;
    color: #dcebf7;
    background: rgba(46, 107, 195, 0.3);
    border: 1px solid rgba(142, 203, 244, 0.48);
    border-radius: 13px;
}

.hero-package-highlight span,
.hero-package-highlight small {
    font-size: 0.74rem;
}

.hero-package-highlight strong {
    color: #fff;
    font-size: 1.35rem;
}

.hero-package-highlight small {
    color: #aedefa;
}

.hero-carousel-navigation {
    order: -1;
    padding: 14px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0 12px;
}

.hero-carousel-current {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hero-carousel-current > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #aedefa;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-carousel-current > strong {
    overflow: hidden;
    color: #fff;
    font-size: 0.88rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-carousel-current small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9eb1c6;
    font-size: 0.68rem;
    white-space: nowrap;
}

.hero-carousel-current b {
    color: #dcebf7;
}

.hero-carousel-current small span::before {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.35);
    content: "·";
}

.hero-carousel-controls {
    display: flex;
    gap: 7px;
}

.hero-carousel-controls button {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #e8f3fc;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-carousel-controls button:hover,
.hero-carousel-controls button:focus-visible {
    color: #fff;
    background: rgba(74, 168, 237, 0.25);
    border-color: rgba(142, 203, 244, 0.72);
}

.hero-service-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

.hero-service-tab {
    display: grid;
    min-width: 0;
    min-height: 68px;
    align-items: center;
    padding: 9px 10px;
    color: #dce8f4;
    text-align: left;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-service-tab:hover,
.hero-service-tab:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(142, 203, 244, 0.64);
    transform: translateY(-2px);
}

.hero-service-tab.active {
    color: #fff;
    background: rgba(46, 107, 195, 0.34);
    border-color: #78bee9;
    box-shadow: inset 0 0 0 1px rgba(142, 203, 244, 0.12);
}

.hero-service-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: #9ad3f7;
    background: rgba(74, 168, 237, 0.14);
    border-radius: 10px;
}

.hero-service-tab strong,
.hero-service-tab small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-service-tab strong {
    font-size: 0.73rem;
}

.hero-service-tab small {
    margin-top: 1px;
    color: #aebfd0;
    font-size: 0.61rem;
    font-weight: 400;
}

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

.hero-visual {
    position: relative;
    padding: 18px 0 24px 18px;
}

.hero-visual::before {
    position: absolute;
    inset: 0 22px 0 0;
    border: 1px solid rgba(142, 203, 244, 0.45);
    border-radius: var(--radius-lg);
    content: "";
    transform: translate(18px, 18px);
}

.hero-visual img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 8px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-caption {
    position: absolute;
    right: -14px;
    bottom: 0;
    left: 54px;
    display: grid;
    padding: 18px 20px;
    color: var(--ink);
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.hero-caption strong {
    color: var(--navy-950);
}

.hero-caption span {
    color: var(--muted);
    font-size: 0.78rem;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

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

.trust-item {
    display: flex;
    min-height: 110px;
    align-items: center;
    gap: 15px;
    padding: 24px 28px;
    border-right: 1px solid var(--line);
}

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

.trust-icon,
.card-icon,
.process-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--blue-700);
    background: var(--blue-100);
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.trust-item strong {
    display: block;
    color: var(--navy-950);
    font-size: 0.95rem;
}

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

/* Home services */
.featured-service {
    display: grid;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    grid-template-columns: 1.05fr 0.95fr;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.service-overview-target {
    scroll-margin-top: 100px;
}

.featured-service.service-target-highlight,
.service-preview-card.service-target-highlight {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(74, 168, 237, 0.18), var(--shadow-md);
}

.featured-service-media {
    position: relative;
    min-height: 440px;
    overflow: hidden;
}

.featured-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.featured-service:hover .featured-service-media img {
    transform: scale(1.035);
}

.featured-service-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(9, 27, 51, 0.62));
    content: "";
}

.feature-badge {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.93);
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 700;
}

.featured-service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 64px);
}

.featured-service-content h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.featured-service-content p {
    margin: 18px 0 0;
    color: var(--muted);
}

.feature-list,
.detail-list {
    display: grid;
    gap: 13px;
    margin: 26px 0 32px;
    padding: 0;
    list-style: none;
}

.feature-list li,
.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #3d4a5e;
}

.feature-list i,
.detail-list i {
    margin-top: 5px;
    color: var(--blue-600);
}

.service-preview-grid {
    display: grid;
    margin-top: 24px;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-preview-card {
    position: relative;
    display: flex;
    min-height: 390px;
    overflow: hidden;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-preview-card:hover {
    border-color: #a9cbea;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.service-preview-media {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--blue-50);
}

.service-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.service-preview-card:hover .service-preview-media img {
    transform: scale(1.04);
}

.service-preview-card-body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.service-card-number {
    position: absolute;
    top: 22px;
    right: 23px;
    color: #9aa9ba;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.1rem;
}

.service-preview-card h3 {
    margin: 22px 0 9px;
    color: var(--navy-950);
    font-size: 1.12rem;
}

.service-preview-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 0.88rem;
}

.service-preview-card .text-link {
    margin-top: auto;
    font-size: 0.86rem;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* About and process */
.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
}

.about-visual {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    background: var(--navy-950);
    border-radius: var(--radius-lg);
}

.about-visual img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    opacity: 0.88;
}

.about-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 22px;
    color: #fff;
    background: rgba(9, 27, 51, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    backdrop-filter: blur(9px);
}

.about-note strong {
    display: block;
    font-size: 1.05rem;
}

.about-note span {
    color: #cbd9e8;
    font-size: 0.8rem;
}

.about-copy > p {
    margin: 22px 0 0;
    color: var(--muted);
}

.about-values {
    display: grid;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-value {
    padding: 18px;
    background: var(--blue-50);
    border: 1px solid #d5e6f5;
    border-radius: 14px;
}

.about-value strong {
    display: block;
    color: var(--navy-950);
    font-size: 0.92rem;
}

.about-value span {
    color: var(--muted);
    font-size: 0.78rem;
}

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

.process-card {
    position: relative;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #cad4e1;
    font-size: 1.9rem;
    font-weight: 700;
}

.process-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
}

.process-card h3 {
    margin: 24px 0 8px;
    color: var(--navy-950);
    font-size: 1rem;
}

.process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

/* Social and contact */
.social-card {
    display: grid;
    align-items: center;
    padding: 42px;
    color: #fff;
    background: var(--navy-900);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    grid-template-columns: 1fr auto;
    gap: 30px;
}

.social-card h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.25;
}

.social-card p {
    margin: 10px 0 0;
    color: #c8d8e9;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f9fd 0%, #eef5fb 100%);
}

.contact-section::after {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 560px;
    height: 560px;
    background: rgba(74, 168, 237, 0.13);
    border-radius: 999px;
    content: "";
}

.contact-section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}

.contact-lead-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 30px;
}

.contact-direct-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    color: #fff;
    background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-direct-card::before {
    position: absolute;
    right: -105px;
    bottom: -125px;
    width: 320px;
    height: 320px;
    background: rgba(74, 168, 237, 0.14);
    border-radius: 999px;
    content: "";
}

.contact-qr-copy {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.contact-card-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
    background: var(--line-green);
    border-radius: 17px;
    box-shadow: 0 14px 30px rgba(6, 199, 85, 0.25);
    font-size: 1.7rem;
}

.contact-qr-copy h3 {
    margin: 8px 0 0;
    font-size: clamp(1.65rem, 2.5vw, 2.15rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.contact-qr-copy > p {
    max-width: 360px;
    margin: 12px 0 22px;
    color: #c9d9e9;
    font-size: 0.9rem;
}

.contact-qr-link {
    display: block;
    width: min(100%, 230px);
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease;
}

.contact-qr-link:hover {
    transform: translateY(-3px);
}

.contact-qr-image {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.contact-line-id {
    margin: 15px 0 14px;
    color: #fff;
    font-size: 1rem;
}

.contact-direct-links {
    position: relative;
    z-index: 1;
    display: grid;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    gap: 9px;
}

.contact-direct-links a {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 13px;
    padding: 10px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    transition: background-color 180ms ease, transform 180ms ease;
}

.contact-direct-links a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.contact-direct-links i {
    display: inline-flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #8fd0ff;
    background: rgba(74, 168, 237, 0.15);
    border-radius: 11px;
}

.contact-direct-links span,
.contact-direct-links strong,
.contact-direct-links small {
    display: block;
}

.contact-direct-links strong {
    font-size: 0.88rem;
}

.contact-direct-links small {
    color: #b9cadd;
    font-size: 0.7rem;
}

.contact-form-card {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-heading > span {
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 700;
}

.contact-form-heading h3 {
    margin: 7px 0 0;
    color: var(--navy-950);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    line-height: 1.3;
}

.contact-form-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.contact-inline-form {
    margin-top: 24px;
    padding: 0;
    gap: 17px;
}

.contact-inline-form .field-label {
    font-size: 0.9rem;
}

.contact-inline-form .field-input {
    min-height: 54px;
    padding: 13px 15px;
    font-size: 0.9rem;
}

.contact-inline-form .field-textarea {
    min-height: 110px;
}

.contact-inline-form .button-block {
    min-height: 54px;
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    color: #b7c4d3;
    background: #071629;
}

.footer-grid {
    display: grid;
    padding: 60px 0 42px;
    grid-template-columns: 1.25fr 0.8fr 0.9fr;
    gap: 70px;
}

.footer-brand p {
    max-width: 420px;
    margin: 18px 0 0;
    color: #94a5b8;
    font-size: 0.88rem;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span {
    color: #fff;
}

.footer-heading {
    margin: 0 0 18px;
    color: #fff;
    font-size: 0.95rem;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    color: #a8b7c8;
    font-size: 0.82rem;
    transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact i {
    width: 22px;
    color: #80bce8;
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #718397;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #d1dbe6;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

/* Services page */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 82px;
    color: #fff;
    background: var(--navy-950);
}

.page-hero::before {
    top: -240px;
    right: -90px;
    width: 560px;
    height: 560px;
    background: rgba(74, 168, 237, 0.13);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: end;
    grid-template-columns: 1fr auto;
    gap: 50px;
}

.page-hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(2.65rem, 6vw, 5.2rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 700px;
    margin: 22px 0 0;
    color: #c5d3e4;
}

.page-hero-stat {
    min-width: 170px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    text-align: center;
}

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

.page-hero-stat strong {
    color: #8ecbf4;
    font-size: 2.7rem;
    line-height: 1;
}

.page-hero-stat span {
    margin-top: 8px;
    color: #d5e2ee;
    font-size: 0.82rem;
}

.service-jump-wrap {
    position: sticky;
    z-index: 35;
    top: 76px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.service-jump {
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.service-jump a {
    padding: 9px 13px;
    color: #4f5b6d;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
}

.service-jump a:hover {
    color: var(--blue-700);
    border-color: #a9cbea;
}

.services-main {
    background: var(--soft);
}

.service-detail {
    display: grid;
    overflow: hidden;
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    grid-template-columns: 0.9fr 1.1fr;
}

.service-detail.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.service-detail.reverse .service-detail-media {
    order: 2;
}

.service-detail-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--navy-900);
}

.service-detail-media > img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.service-number {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.service-gallery {
    display: grid;
    height: 100%;
    min-height: 520px;
    grid-template-columns: 1fr 1fr;
}

.service-gallery img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.solar-gallery {
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.solar-gallery img {
    min-height: 0;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 64px);
}

.service-detail-content h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.16;
}

.service-detail-content > p {
    margin: 17px 0 0;
    color: var(--muted);
}

.service-subtitle {
    margin: 26px 0 0;
    color: var(--navy-900);
    font-size: 1rem;
    line-height: 1.35;
}

.solar-detail-list {
    gap: 9px;
    margin: 14px 0 0;
    font-size: 0.9rem;
}

.solar-service-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 13px;
    color: var(--navy-900) !important;
    background: var(--blue-50);
    border: 1px solid #d7e7f5;
    border-radius: 12px;
    font-weight: 700;
}

.solar-service-option i {
    color: var(--blue-600);
}

.package-title {
    margin-top: 24px;
}

.package-title + .price-table-wrap {
    margin-top: 12px;
}

.price-lead {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 24px 0 0;
}

.price-lead strong {
    color: var(--blue-700);
    font-size: 2.25rem;
    line-height: 1;
}

.price-lead span {
    color: var(--muted);
    font-size: 0.9rem;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.chip-list span {
    padding: 7px 11px;
    color: var(--navy-900);
    background: var(--blue-50);
    border: 1px solid #d7e7f5;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 600;
}

.service-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.price-table-wrap {
    overflow-x: auto;
    margin-top: 26px;
    border: 1px solid var(--line);
    border-radius: 15px;
}

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

.price-table th,
.price-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--line);
}

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

.price-table th {
    color: var(--navy-900);
    background: var(--blue-50);
    font-weight: 700;
    text-align: left;
}

.price-table td {
    color: #4f5b6d;
}

.price-table th:last-child,
.price-table td:last-child {
    color: var(--blue-700);
    font-weight: 700;
    text-align: right;
}

.subservice-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.subservice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 15px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 0.82rem;
}

.subservice-item strong {
    color: var(--blue-700);
}

/* Dialogs and floating contact */
.contact-dialog {
    width: min(calc(100% - 32px), 460px);
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.contact-dialog::backdrop {
    background: rgba(5, 16, 31, 0.66);
    backdrop-filter: blur(4px);
}

.dialog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.dialog-head h2 {
    margin: 0;
    color: var(--navy-950);
    font-size: 1.2rem;
}

.dialog-close {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: var(--soft);
    border-radius: 10px;
}

.dialog-body {
    padding: 24px;
}

.dialog-body > p {
    margin: 0 0 18px;
    color: var(--muted);
}

.dialog-actions {
    display: grid;
    gap: 10px;
}

.phone-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.qr-image {
    width: 230px;
    height: 230px;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.qr-copy {
    text-align: center;
}

.floating-actions {
    position: fixed;
    z-index: 45;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 10px;
}

.floating-action {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 180ms ease;
}

.floating-action:hover {
    transform: translateY(-3px);
}

.floating-action.line {
    background: var(--line-green);
}

.inquiry-widget {
    position: fixed;
    z-index: 44;
    bottom: 20px;
    left: 20px;
}

.inquiry-toggle {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 12px;
    padding: 9px 16px 9px 10px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.inquiry-toggle:hover {
    border-color: var(--blue-500);
    box-shadow: 0 16px 38px rgba(16, 42, 76, 0.18);
    transform: translateY(-2px);
}

.inquiry-toggle-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--blue-700);
    background: var(--blue-100);
    border-radius: 11px;
}

.inquiry-toggle-copy {
    display: grid;
    text-align: left;
}

.inquiry-toggle-copy strong {
    color: var(--navy-950);
    font-size: 0.8rem;
}

.inquiry-toggle-copy span {
    color: var(--muted);
    font-size: 0.68rem;
}

.inquiry-backdrop {
    display: none;
}

.inquiry-panel {
    position: fixed;
    z-index: 60;
    bottom: 86px;
    left: 20px;
    display: none;
    overflow-y: auto;
    width: min(calc(100% - 40px), 460px);
    max-height: calc(100vh - 112px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(9, 27, 51, 0.24);
    overscroll-behavior: contain;
}

.inquiry-panel.open {
    display: block;
}

.inquiry-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 22px 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.inquiry-head > div {
    display: grid;
    gap: 5px;
}

.inquiry-head span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 400;
    line-height: 1.5;
}

.inquiry-head strong {
    color: var(--accent-orange);
    font-size: 1.04rem;
    line-height: 1.45;
}

.inquiry-head button {
    display: inline-flex;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.05rem;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.inquiry-head button:hover {
    color: #fff;
    background: var(--navy-900);
    transform: rotate(6deg);
}

.inquiry-form {
    display: grid;
    gap: 14px;
    padding: 18px 22px 22px;
}

.field-group,
.radio-group {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.field-label,
.radio-group legend {
    color: var(--navy-950);
    font-size: 0.82rem;
    font-weight: 700;
}

.required-mark {
    margin-left: 2px;
    color: #d92d20;
}

.optional-label {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 400;
}

.radio-options {
    display: grid;
    gap: 7px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.76rem;
}

.radio-option input {
    accent-color: var(--blue-600);
}

.field-input {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    font-size: 0.82rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-input:focus {
    border-color: var(--blue-600);
    outline: 3px solid rgba(74, 168, 237, 0.17);
}

.field-select {
    cursor: pointer;
}

.field-textarea {
    min-height: 78px;
    resize: vertical;
    line-height: 1.5;
}

.inquiry-form .button-block {
    min-height: 50px;
    margin-top: 3px;
    border-radius: 999px;
    font-size: 0.86rem;
}

.form-status {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 0.68rem;
}

.form-status.error {
    color: #b42318;
}

.form-status.success {
    color: #08783e;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px;
    }

    .header-phone {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1.08fr 0.72fr;
        gap: 36px;
    }

    .service-preview-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .desktop-nav,
    .header-actions .button {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-grid,
    .about-grid,
    .contact-lead-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .contact-direct-card {
        display: grid;
        align-items: center;
        grid-template-columns: minmax(0, 0.9fr) minmax(250px, 1.1fr);
        gap: 30px;
    }

    .contact-direct-links {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .hero-grid {
        min-height: auto;
        gap: 38px;
        padding: 54px 0 34px;
    }

    .hero-service-tabs {
        display: flex;
        gap: 9px;
        overflow-x: auto;
        padding-bottom: 5px;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .hero-service-tabs::-webkit-scrollbar {
        display: none;
    }

    .hero-service-tab {
        flex: 0 0 205px;
        scroll-snap-align: start;
    }

    .hero-visual {
        width: min(100%, 600px);
        margin-inline: auto;
    }

    .hero-visual img {
        aspect-ratio: 5 / 4;
    }

    .floating-actions {
        display: none;
    }

    .inquiry-widget {
        display: block;
        bottom: 14px;
        left: 14px;
    }

    .inquiry-backdrop:not([hidden]) {
        position: fixed;
        z-index: 58;
        inset: 0;
        display: block;
        background: rgba(9, 27, 51, 0.46);
        backdrop-filter: blur(2px);
    }

    .inquiry-panel {
        bottom: 16px;
        left: 50%;
        width: min(calc(100% - 24px), 520px);
        max-height: calc(100dvh - 32px);
        transform: translateX(-50%);
        overscroll-behavior: contain;
    }

    .field-input {
        font-size: 1rem;
    }

    .featured-service,
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
    }

    .featured-service-media {
        min-height: 360px;
    }

    .service-detail.reverse .service-detail-media {
        order: 0;
    }

    .service-detail-media,
    .service-detail-media > img,
    .service-gallery,
    .service-gallery img {
        min-height: 410px;
    }

    .service-gallery.solar-gallery {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .service-gallery.solar-gallery img {
        min-height: 205px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 66px 0;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-copy {
        display: none;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .home-hero::before {
        right: -260px;
    }

    .hero-grid {
        min-height: auto;
        gap: 30px;
        padding: 44px 0 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.05rem, 8.5vw, 2.55rem);
    }

    .hero-copy > p {
        font-size: 0.98rem;
    }

    .hero-carousel-controls button {
        width: 40px;
        height: 40px;
    }

    .hero-carousel-current > span,
    .hero-carousel-current [data-carousel-state] {
        display: none;
    }

    .hero-carousel-current {
        gap: 9px;
    }

    .hero-carousel-current small span::before {
        content: none;
    }

    .hero-carousel-navigation {
        padding-bottom: 14px;
    }

    .hero-carousel-toolbar {
        gap: 12px;
        padding-top: 14px;
    }

    .hero-service-tab {
        flex-basis: min(72vw, 240px);
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-visual {
        padding-left: 0;
    }

    .hero-visual::before {
        right: 0;
        transform: translate(10px, 10px);
    }

    .hero-visual img {
        aspect-ratio: 4 / 3;
    }

    .hero-caption {
        right: 14px;
        left: 14px;
    }

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

    .trust-item {
        min-height: 90px;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .featured-service-media {
        min-height: 300px;
    }

    .featured-service-content {
        padding: 28px 24px;
    }

    .service-preview-grid,
    .process-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

    .service-preview-card {
        min-height: 210px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-visual,
    .about-visual img {
        min-height: 390px;
    }

    .social-card {
        padding: 30px 24px;
        grid-template-columns: 1fr;
    }

    .contact-lead-grid {
        gap: 40px;
    }

    .contact-section-heading {
        margin-bottom: 28px;
    }

    .contact-direct-card {
        display: block;
        padding: 28px 22px;
    }

    .contact-direct-links {
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .contact-form-card {
        padding: 28px 22px;
    }

    .contact-qr-link {
        width: min(100%, 220px);
    }

    .footer-grid {
        padding-top: 46px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand .brand-copy {
        display: grid;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .page-hero {
        padding: 70px 0 60px;
    }

    .page-hero-stat {
        min-width: 0;
        text-align: left;
    }

    .service-jump-wrap {
        position: relative;
        top: auto;
        overflow: visible;
        backdrop-filter: none;
    }

    .service-jump {
        display: grid;
        min-height: auto;
        padding: 13px 0;
        white-space: normal;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .service-jump a {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: flex-start;
        padding: 9px 11px;
        border-radius: 11px;
        line-height: 1.35;
    }

    .service-jump a:last-child {
        grid-column: 1 / -1;
    }

    .service-detail-media,
    .service-detail-media > img,
    .service-gallery,
    .service-gallery img {
        min-height: 320px;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

    .service-gallery img {
        min-height: 240px;
    }

    .service-gallery.solar-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .service-gallery.solar-gallery img {
        min-height: 160px;
    }

    .service-detail-content {
        padding: 30px 23px;
    }

    .service-cta-row .button {
        width: 100%;
    }

    .subservice-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .phone-pair {
        grid-template-columns: 1fr;
    }

    .inquiry-panel {
        bottom: 12px;
        left: 50%;
        width: calc(100% - 24px);
        max-height: calc(100dvh - 24px);
        overscroll-behavior: contain;
        transform: translateX(-50%);
    }

    .inquiry-head {
        gap: 12px;
        padding: 18px 17px 15px;
    }

    .inquiry-head strong {
        font-size: 0.95rem;
    }

    .inquiry-form {
        gap: 13px;
        padding: 16px 17px 19px;
    }

    .dialog-head {
        gap: 12px;
        padding: 18px;
    }

    .dialog-head h2 {
        font-size: 1.05rem;
    }

    .dialog-body {
        padding: 20px 18px;
    }

    .price-table {
        font-size: 0.76rem;
    }

    .price-table th,
    .price-table td {
        padding: 11px 9px;
    }
}

@media (max-width: 360px) {
    .page-hero h1 {
        font-size: 2.25rem;
        letter-spacing: -0.035em;
    }
}

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