:root {
    --primary: #0B9BB5;
    --primary-dark: #077f97;
    --secondary: #0A2F57;
    --bg: #F7FAFC;
    --text: #1E293B;
    --muted: #64748B;
    --white: #FFFFFF;
    --line: #DDE7EF;
    --shadow: 0 20px 60px rgba(10, 47, 87, 0.12);
    --soft-shadow: 0 12px 35px rgba(10, 47, 87, 0.08);
    --radius: 8px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

body.popup-open,
body.nav-open {
    overflow: hidden;
}

body.auth-page {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(10, 47, 87, 0.9), rgba(11, 155, 181, 0.78)),
        url("../img/hero-real-electro.png") center / cover no-repeat;
}

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

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

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

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

.narrow {
    max-width: 820px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(221, 231, 239, 0.75);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0;
    margin-right: auto;
}

.brand-mark {
    width: 50px;
    height: 50px;
}

.brand-text {
    font-size: 23px;
    line-height: 1;
}

.brand-text small {
    font-size: 13px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    color: #26364A;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    transform: scaleX(0);
    background: var(--primary);
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--primary);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #078DA6);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(11, 155, 181, 0.26);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0AA7C2, var(--primary-dark));
}

.btn-ghost-light,
.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-light:hover,
.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary);
}

.btn-wide {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--secondary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: clamp(420px, 52vh, 540px);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 47, 87, 0.94) 0%, rgba(10, 47, 87, 0.82) 45%, rgba(11, 155, 181, 0.5) 100%),
        url("../img/hero-real-electro.png") center / cover no-repeat;
    z-index: -1;
}

.hero-content {
    padding: 58px 0 70px;
    color: var(--white);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-eyebrow {
    color: #BEEAF1;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    color: var(--white);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 3px 18px rgba(4, 20, 38, 0.38);
}

.hero p:not(.eyebrow) {
    max-width: 590px;
    margin: 18px 0 0;
    color: var(--white);
    font-size: clamp(18px, 1.8vw, 22px);
    text-shadow: 0 2px 12px rgba(4, 20, 38, 0.28);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.section {
    padding: 92px 0;
    background: var(--white);
}

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

.section-heading {
    margin-bottom: 34px;
}

.section-heading.centered {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

h1,
h2,
h3 {
    margin: 0;
    color: #142337;
    line-height: 1.18;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(30px, 4vw, 46px);
}

h3 {
    font-size: 19px;
}

p {
    margin: 0;
}

.section-heading h2 + p,
.rich-text p + p,
.narrow p + p {
    margin-top: 18px;
}

.section-heading h2 + p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
}

.section-heading.centered h2 + p {
    margin-left: auto;
    margin-right: auto;
}

.rich-text {
    color: var(--muted);
    font-size: 17px;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 18px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 28px rgba(10, 47, 87, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 155, 181, 0.35);
    box-shadow: var(--soft-shadow);
}

.service-card-media {
    width: calc(100% + 36px);
    height: 98px;
    margin: 0 -18px 0;
    overflow: hidden;
    background: #EDF6F8;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.service-card .icon-bubble {
    width: 58px;
    height: 58px;
    margin-top: -29px;
    border: 5px solid var(--white);
    box-shadow: 0 12px 24px rgba(11, 155, 181, 0.2);
}

.service-card .icon-bubble svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    margin-top: 14px;
    font-size: 16px;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.icon-bubble {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #087E96);
    box-shadow: 0 14px 26px rgba(11, 155, 181, 0.24);
}

.icon-bubble svg,
.cta-icon svg,
.why-grid svg,
.contact-info svg,
.popup-note svg,
.floating-inquiry svg,
.popup-close svg,
.site-footer svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-bubble-large {
    width: 86px;
    height: 86px;
}

.icon-bubble-large svg {
    width: 36px;
    height: 36px;
}

.text-link {
    margin-top: auto;
    padding-top: 18px;
    color: var(--primary);
    font-weight: 800;
}

.why-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

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

.why-grid article,
.feature-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(10, 47, 87, 0.05);
}

.why-grid span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--primary);
    background: #E7F8FB;
}

.why-grid p,
.feature-grid p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.intro-split {
    align-items: center;
}

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

.process-grid article {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(10, 47, 87, 0.05);
}

.process-grid span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-weight: 900;
}

.process-grid p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.visual-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.visual-strip article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.visual-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.visual-strip h3 {
    padding: 20px;
    font-size: 18px;
}

.image-feature-section {
    padding-top: 0;
}

.image-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
}

.image-feature-reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.image-feature img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg);
    box-shadow: var(--soft-shadow);
}

.image-feature p:not(.eyebrow) {
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

/* About page */
.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
    gap: 72px;
    align-items: start;
}

.about-intro-grid h2 { max-width: 560px; }

.about-lead-copy p:first-child {
    color: var(--secondary);
    font-size: 19px;
    font-weight: 700;
}

.about-promises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.about-promises article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    padding: 28px;
}

.about-promises article + article { border-left: 1px solid var(--line); }

.about-promises span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: #EAF7FA;
}

.about-promises svg { width: 25px; height: 25px; }
.about-promises h3 { font-size: 17px; }
.about-promises p { margin-top: 5px; color: var(--muted); font-size: 14px; }

.about-quality-feature {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
}

.about-quality-feature img { min-height: 430px; object-fit: cover; }

.about-check-list {
    display: grid;
    gap: 12px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.about-check-list li {
    display: grid;
    grid-template-columns: 23px 1fr;
    gap: 11px;
    color: var(--secondary);
    font-weight: 700;
}

.about-check-list li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 13px;
}

.about-process-grid article { min-height: 220px; }

.about-region-band {
    padding: 56px 0;
    color: var(--white);
    background: var(--secondary);
}

.about-region-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.about-region-band .eyebrow { color: #77D8E7; }
.about-region-band h2 { color: var(--white); }
.about-region-band p:not(.eyebrow) { margin-top: 15px; color: #D7E5EF; }

.about-area-list { display: flex; flex-wrap: wrap; gap: 10px; }

.about-area-list span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    font-size: 14px;
    font-weight: 700;
}

.cta-band {
    padding: 46px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.cta-compact {
    margin-top: 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.cta-inner > div {
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 20px;
    align-items: center;
}

.cta-icon {
    grid-row: span 2;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.94);
}

.cta-inner h2,
.cta-inner p {
    color: var(--white);
}

.subpage-hero {
    padding: 54px 0 76px;
    background: linear-gradient(180deg, #FFFFFF, #F1F7FA);
}

.service-breadcrumb-band {
    padding: 28px 0;
    background: #F2F6F9;
    border-bottom: 1px solid #E5EDF3;
}

.service-detail-page {
    background: var(--white);
}

.service-detail-hero {
    padding: 58px 0 46px;
    background: var(--white);
}

.subpage-hero-inner {
    display: grid;
    grid-template-columns: 1fr minmax(340px, 520px);
    gap: 48px;
    align-items: center;
}

.subpage-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
}

.detail-title h1 {
    font-size: clamp(34px, 4vw, 54px);
}

.subpage-hero p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 19px;
}

.detail-title p {
    max-width: 360px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.75;
}

.subpage-hero img,
.gain-panel img,
.reference-card img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--soft-shadow);
}

.subpage-hero img {
    aspect-ratio: 16 / 10;
    object-position: center;
}

.detail-hero-grid img {
    width: 100%;
    min-height: 330px;
    border-radius: 0;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--primary);
}

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

.detail-title {
    display: flex;
    align-items: center;
    gap: 34px;
}

.detail-title .icon-bubble {
    margin: 0;
}

.service-copy {
    padding: 20px 0 72px;
    background: var(--white);
}

.service-detail-container {
    max-width: 1040px;
}

.service-copy h2 {
    font-size: clamp(26px, 3vw, 34px);
}

.service-body-text {
    display: grid;
    gap: 16px;
    max-width: 980px;
    margin-top: 18px;
}

.service-intro {
    max-width: 900px;
    margin-bottom: 10px;
    line-height: 1.65;
}

.service-body-text p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.detail-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 76px;
    margin-top: 48px;
    margin-bottom: 58px;
}

.detail-benefit {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
}

.detail-benefit > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--primary);
}

.detail-benefit svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-benefit h3 {
    font-size: 18px;
}

.detail-benefit p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 16px;
}

.service-situations {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 58px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #FBFDFE;
}

.service-situations h2 {
    font-size: clamp(24px, 3vw, 32px);
}

.process-strip {
    margin-bottom: 58px;
}

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

.process-strip .process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-strip .process-grid article {
    min-height: 190px;
    background: #FBFDFE;
}

.lead-text {
    margin: 18px 0 20px;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 700;
}

.narrow > p:not(.lead-text) {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
    gap: 58px;
    align-items: start;
}

.split-section p {
    color: var(--muted);
}

.benefit-list {
    display: grid;
    gap: 16px;
}

.benefit-list.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.benefit-list div,
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 800;
}

.benefit-list span,
.check-list li::before {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-weight: 900;
}

.gain-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 26px;
    align-items: center;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #EDF5F8, #FFFFFF);
}

.gain-panel > div {
    padding: 34px 36px;
}

.gain-panel img {
    height: 100%;
    min-height: 280px;
    border-radius: 0;
    box-shadow: none;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li::before {
    content: "✓";
}

.service-detail-cta {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #FBFDFE;
}

.service-detail-cta-inner {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 22px;
    align-items: center;
}

.service-detail-cta .cta-icon {
    color: var(--primary);
    background: #E7F8FB;
}

.service-detail-cta h2 {
    font-size: clamp(22px, 3vw, 30px);
}

.service-detail-cta p {
    margin-top: 4px;
    color: var(--muted);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.reference-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.reference-card img {
    height: 250px;
    border-radius: 0;
    box-shadow: none;
}

.reference-card div {
    padding: 26px;
}

.reference-card h2 {
    font-size: 23px;
}

.reference-card p {
    margin-top: 10px;
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 42px;
    align-items: start;
}

.contact-info,
.contact-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.contact-info h2 {
    margin-bottom: 26px;
}

.contact-info a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 2px 14px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.contact-info a span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: #E7F8FB;
}

.contact-info strong {
    color: var(--text);
}

.map-placeholder {
    min-height: 230px;
    display: grid;
    place-content: center;
    margin-top: 24px;
    padding: 28px;
    text-align: center;
    border-radius: var(--radius);
    color: var(--secondary);
    background:
        linear-gradient(135deg, rgba(11, 155, 181, 0.12), rgba(10, 47, 87, 0.08)),
        repeating-linear-gradient(45deg, #E9F1F6 0 12px, #F7FAFC 12px 24px);
}

.map-placeholder span {
    font-size: 28px;
    font-weight: 800;
}

.map-card {
    margin-top: 24px;
}

.map-card img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--bg);
}

.map-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
}

/* Contact page */
.contact-layout-refined {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 68px;
}

.contact-info-refined {
    display: grid;
    gap: 32px;
    padding: 8px 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-info-refined h2 {
    margin: 0;
}

.contact-lead {
    margin-top: 17px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.contact-methods {
    display: grid;
    border-top: 1px solid var(--line);
}

.contact-info-refined .contact-method {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
}

.contact-info-refined .contact-method > span:last-child {
    width: auto;
    height: auto;
    display: grid;
    justify-items: start;
    border-radius: 0;
    background: transparent;
}

.contact-info-refined .contact-method-icon {
    width: 52px;
    height: 52px;
}

.contact-method-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-method small {
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-method strong {
    margin-top: 2px;
    font-size: 21px;
}

.contact-method em {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.contact-expectation {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 20px;
    border-left: 3px solid var(--primary);
    background: #EFF8FA;
}

.contact-expectation > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
}

.contact-expectation svg { width: 19px; height: 19px; }
.contact-expectation p { margin-top: 5px; color: var(--muted); font-size: 14px; }

.contact-form-refined {
    gap: 17px;
    padding: 38px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 22px 50px rgba(10, 47, 87, 0.12);
}

.contact-form-refined h2 {
    margin-top: -6px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-region-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
    gap: 70px;
    align-items: center;
}

.contact-map-visual {
    display: grid;
    place-items: center;
    min-height: 270px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.contact-map-visual img {
    width: min(100%, 360px);
    height: auto;
}

.contact-region-panel > div:last-child > p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 17px;
}

.contact-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.contact-area-tags span {
    padding: 9px 12px;
    border: 1px solid #CFE0E9;
    border-radius: 4px;
    color: var(--secondary);
    background: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.inquiry-form,
.contact-form {
    display: grid;
    gap: 18px;
}

.form-intro {
    margin-top: -6px;
    color: var(--muted);
    font-size: 15px;
}

.inquiry-form label,
.contact-form label {
    display: grid;
    gap: 8px;
    color: #26364A;
    font-size: 14px;
    font-weight: 800;
}

.inquiry-form strong,
.contact-form label span {
    color: #D93A3A;
}

.contact-form label span {
    color: #26364A;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #CED9E3;
    border-radius: 6px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 155, 181, 0.12);
}

.checkbox-label {
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    font-weight: 600;
    color: var(--muted);
}

.checkbox-label input {
    min-height: auto;
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.form-message {
    min-height: 24px;
    color: var(--primary);
    font-weight: 800;
}

.floating-inquiry {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 70;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #087E96);
    box-shadow: 0 18px 45px rgba(11, 155, 181, 0.36);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.floating-inquiry:hover {
    transform: translateY(-3px) scale(1.03);
}

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    background: rgba(10, 47, 87, 0.28);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.contact-popup {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: min(440px, 100%);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: -26px 0 70px rgba(10, 47, 87, 0.22);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.popup-open .popup-overlay {
    pointer-events: auto;
    opacity: 1;
}

.popup-open .contact-popup {
    transform: translateX(0);
}

.popup-head {
    position: relative;
    padding: 46px 32px 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.popup-head h2,
.popup-head p {
    color: var(--white);
}

.popup-head p {
    margin-top: 8px;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.contact-popup .inquiry-form {
    padding: 28px 32px 20px;
    overflow-y: auto;
}

.popup-note {
    display: flex;
    gap: 14px;
    margin: auto 32px 28px;
    padding: 16px;
    border-radius: var(--radius);
    color: var(--muted);
    background: #F4F8FB;
    font-size: 14px;
}

.popup-note svg {
    flex: 0 0 28px;
    color: var(--primary);
}

.site-footer {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
    padding: 46px 0;
}

.footer-main {
    display: grid;
    gap: 16px;
}

.footer-main h2 {
    max-width: 680px;
    color: var(--white);
    font-size: clamp(28px, 4vw, 42px);
}

.footer-main > p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.footer-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 38px;
    margin-top: 6px;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
}

.footer-contact svg {
    width: 28px;
    height: 28px;
}

.footer-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.footer-areas strong {
    color: var(--white);
}

.footer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
}

.auth-card {
    width: min(100%, 440px);
    display: grid;
    gap: 18px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.auth-logo {
    width: 62px;
    height: 62px;
}

.auth-card h1 {
    font-size: clamp(30px, 6vw, 42px);
}

.auth-card > p:not(.eyebrow):not(.auth-error) {
    color: var(--muted);
}

.auth-card label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.auth-error {
    padding: 12px 14px;
    border-radius: var(--radius);
    color: #9F1D1D;
    background: #FEE2E2;
    font-weight: 800;
}

@media (max-width: 980px) {
    :root {
        --header-height: 74px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 61;
    }

    .nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        z-index: 60;
        display: grid;
        gap: 0;
        padding: 18px 20px 26px;
        background: var(--white);
        box-shadow: var(--shadow);
        transform: translateY(-130%);
        transition: transform 0.25s ease;
    }

    .nav-open .main-nav {
        transform: translateY(0);
    }

    .main-nav a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
    }

    .main-nav a::after {
        display: none;
    }

    .services-grid,
    .why-grid,
    .feature-grid,
    .reference-grid,
    .visual-strip,
    .image-feature,
    .image-feature-reverse,
    .subpage-hero-inner,
    .detail-hero-grid,
    .split-section,
    .gain-panel,
    .contact-layout,
    .about-intro-grid,
    .about-region-inner,
    .contact-region-panel {
        grid-template-columns: 1fr;
    }

    .about-intro-grid,
    .about-region-inner {
        gap: 32px;
    }

    .contact-layout-refined,
    .contact-region-panel {
        gap: 42px;
    }

    .about-promises {
        grid-template-columns: 1fr;
    }

    .about-promises article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

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

    .why-grid,
    .feature-grid,
    .process-grid,
    .process-strip .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-title {
        align-items: flex-start;
    }

    .detail-benefits-grid {
        gap: 30px;
    }

    .service-detail-cta-inner {
        grid-template-columns: 72px 1fr;
    }

    .service-detail-cta-inner .btn {
        grid-column: 2;
        justify-self: start;
    }

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

    .hero {
        min-height: 460px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 38px 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .brand-text {
        font-size: 20px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 48px 0 60px;
    }

    .button-row,
    .button-row .btn,
    .cta-inner .btn {
        width: 100%;
    }

    .section {
        padding: 64px 0;
    }

    .services-grid,
    .why-grid,
    .feature-grid,
    .process-grid,
    .process-strip .process-grid,
    .visual-strip,
    .image-feature,
    .image-feature-reverse,
    .service-situations,
    .benefit-list.two-columns {
        grid-template-columns: 1fr;
    }

    .about-promises {
        margin-top: 38px;
    }

    .about-promises article {
        padding: 22px 20px;
    }

    .about-quality-feature img {
        min-height: 260px;
    }

    .about-region-band {
        padding: 42px 0;
    }

    .visual-strip img {
        height: 200px;
    }

    .service-card {
        min-height: auto;
    }

    .subpage-hero {
        padding: 42px 0 56px;
    }

    .contact-info,
    .contact-form {
        padding: 22px;
    }

    .contact-info-refined {
        padding: 0;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-visual {
        min-height: 220px;
        padding: 24px;
    }

    .service-breadcrumb-band {
        padding: 20px 0;
    }

    .service-detail-hero {
        padding: 38px 0 32px;
    }

    .detail-title {
        display: grid;
        gap: 18px;
    }

    .detail-title p {
        max-width: none;
        font-size: 18px;
    }

    .detail-hero-grid img {
        min-height: 240px;
    }

    .service-copy {
        padding: 10px 0 52px;
    }

    .detail-benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 34px;
        margin-bottom: 42px;
    }

    .gain-panel {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .gain-panel > div {
        padding: 24px;
    }

    .gain-panel img {
        min-height: 220px;
    }

    .service-detail-cta-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-detail-cta-inner .btn {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }

    .cta-inner > div {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta-icon {
        grid-row: auto;
    }

    .contact-popup {
        top: auto;
        bottom: 0;
        width: 100%;
        height: min(92dvh, 780px);
        border-radius: 18px 18px 0 0;
        transform: translateY(105%);
    }

    .popup-open .contact-popup {
        transform: translateY(0);
    }

    .popup-head,
    .contact-popup .inquiry-form {
        padding-left: 20px;
        padding-right: 20px;
    }

    .popup-note {
        margin-left: 20px;
        margin-right: 20px;
    }

    .floating-inquiry {
        right: 18px;
        bottom: 18px;
    }

    .footer-contact {
        font-size: 17px;
    }

    .footer-contacts,
    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .auth-card {
        padding: 26px;
    }
}
