:root {
    --teal-900: #061a44;
    --teal-800: #062766;
    --teal-700: #0a45a6;
    --teal-100: #e7eefc;
    --aqua-50: #f5f7fb;
    --orange: #ff7a1a;
    --orange-dark: #e95f00;
    --yellow: #ffb31a;
    --green: #1fb45b;
    --blue: #164da8;
    --ink: #12203a;
    --muted: #64748b;
    --line: #dce5f2;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(6, 26, 68, 0.12);
    --radius: 8px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    background: var(--white);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

.promo-bar {
    position: relative;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 46px;
    padding: 8px 52px;
    color: var(--white);
    background: linear-gradient(90deg, #061a44, #0a45a6);
    font-size: 0.94rem;
    font-weight: 800;
}

.promo-bar a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 16px;
    border-radius: 4px;
    color: var(--white);
    background: var(--orange);
}

.promo-bar button {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 28px;
    height: 28px;
    border: 0;
    color: var(--white);
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.25rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 86px;
    padding: 14px max(24px, calc((100vw - var(--container)) / 2));
    color: var(--ink);
    border-bottom: 1px solid rgba(220, 229, 242, 0.9);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    width: 100%;
    max-width: 100vw;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 32px rgba(6, 26, 68, 0.1);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    padding: 0;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.brand img {
    width: clamp(210px, 23vw, 330px);
    height: auto;
    max-height: 62px;
    filter: drop-shadow(0 8px 14px rgba(6, 26, 68, 0.12));
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.92rem;
    font-weight: 800;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    color: #263954;
}

.site-nav svg {
    width: 15px;
    height: 15px;
}

.quote-button {
    min-width: 172px;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    color: var(--white) !important;
    background: var(--orange);
    box-shadow: 0 10px 22px rgba(255, 122, 26, 0.26);
}

.quote-button:hover,
.orange-cta:hover,
.submit-button:hover,
.package-card a:hover {
    background: var(--orange-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--teal-800);
}

.hero {
    position: relative;
    min-height: 620px;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(255, 122, 26, 0.1), transparent 40%),
        linear-gradient(135deg, #0a45a6 0%, #062766 52%, #061a44 100%);
    overflow: hidden;
}

.network-lines {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(28deg, transparent 48%, rgba(255, 255, 255, 0.24) 49%, transparent 51%),
        linear-gradient(145deg, transparent 49%, rgba(255, 122, 26, 0.18) 50%, transparent 51%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 210px 160px, 240px 190px, 58px 58px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    align-items: center;
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 24px 96px;
}

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

.hero-art {
    position: relative;
    width: min(112%, 760px);
    margin: 0 auto;
    transform: translate(-5%, -18px);
}

.hero-art::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 2%;
    height: 34%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
    transform: skewX(-8deg);
}

.hero-image-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 10%;
    top: 8%;
    bottom: 9%;
    z-index: -1;
    border: 1px solid rgba(255, 122, 26, 0.32);
    border-radius: 8px;
    transform: rotate(-3deg);
}

.hero-image-frame::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 12%;
    bottom: 8%;
    z-index: -1;
    height: 18%;
    border-radius: 8px;
    background: rgba(3, 18, 51, 0.26);
    filter: blur(22px);
}

.hero-image-frame img {
    width: 100%;
    max-height: 565px;
    aspect-ratio: 1180 / 702;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 30px 42px rgba(0, 16, 48, 0.3));
}

.hero-label {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    width: min(68%, 360px);
    padding: 12px 20px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 122, 26, 0.12), transparent),
        rgba(6, 39, 102, 0.88);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 34px rgba(4, 16, 43, 0.26);
    transform: translateX(-50%);
    font-size: clamp(0.84rem, 1.1vw, 1rem);
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

.hero-offer {
    padding-top: 0;
    min-width: 0;
    transform: translateY(-12px);
}

.promo-title {
    margin: 0 0 18px;
    color: var(--yellow);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 530px;
    margin: 0 auto 20px;
}

.countdown div {
    display: grid;
    place-items: center;
    min-height: 66px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.countdown strong {
    display: block;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1;
}

.countdown span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.hero-bullets {
    display: grid;
    gap: 10px;
    max-width: 590px;
    margin: 0 auto 30px;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.08rem;
    font-weight: 600;
}

.orange-cta {
    display: grid;
    place-items: center;
    width: min(260px, 100%);
    min-height: 64px;
    margin: 0 auto;
    border-radius: 8px;
    color: var(--white);
    background: var(--orange);
    text-align: center;
    text-transform: uppercase;
}

.orange-cta strong {
    font-size: 1.12rem;
}

.orange-cta span {
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-wave {
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -1px;
    height: 96px;
    background: var(--white);
    border-radius: 52% 48% 0 0 / 74% 68% 0 0;
}

.hero-wave::before {
    content: none;
    position: absolute;
    left: 0;
    right: 0;
    top: -54px;
    height: 92px;
    background: rgba(219, 234, 254, 0.72);
    border-radius: 50% 44% 0 0 / 100% 90% 0 0;
}

.review-section {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 220px repeat(3, 1fr);
    gap: 18px;
    max-width: var(--container);
    margin: -12px auto 0;
    padding: 0 24px 34px;
    background: var(--white);
}

.google-score {
    padding: 34px 0;
    text-align: center;
}

.google-score strong {
    display: block;
    color: var(--ink);
    font-size: 1.45rem;
    text-transform: uppercase;
}

.stars {
    color: #f8b400;
    font-size: 2rem;
    letter-spacing: 1px;
}

.stars.small {
    font-size: 1.05rem;
}

.google-score p {
    margin: 4px 0 0;
    color: #4285f4;
    font-size: 2rem;
    font-weight: 500;
}

.review-card {
    min-height: 204px;
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 30px rgba(6, 26, 68, 0.08);
}

.review-head {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    align-items: center;
}

.avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: #5942b7;
    font-weight: 900;
}

.review-head small {
    display: block;
    color: var(--muted);
}

.review-head b {
    color: #4285f4;
    font-size: 1.25rem;
}

.quick-consult {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 120px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 22px 24px 84px;
    background: var(--white);
}

.wa-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: 10px 20px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, #159947, #1fb45b);
    box-shadow: 0 14px 28px rgba(31, 180, 91, 0.22);
    font-weight: 900;
}

.wa-pill svg {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    stroke-width: 2.2;
}

.wa-pill small {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
}

.wa-pill small b {
    display: inline-flex;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.24);
    font-size: 0.62rem;
}

.portfolio-section {
    position: relative;
    padding: 92px max(24px, calc((100vw - var(--container)) / 2));
    background: linear-gradient(180deg, #edf3ff 0%, #f8fafc 100%);
    text-align: center;
}

.portfolio-section::before {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    top: -62px;
    height: 116px;
    background: var(--white);
    border-radius: 0 0 50% 50% / 0 0 90% 80%;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--orange-dark);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.portfolio-section h2,
.section h2,
.system-copy h2,
.process-section h2,
.company-section h2,
.contact-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    line-height: 1.1;
}

.section-lead,
.system-copy p,
.company-section p,
.contact-copy p {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.portfolio-card {
    overflow: hidden;
    min-height: 210px;
    border: 1px solid rgba(220, 229, 242, 0.88);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: left;
}

.portfolio-card.image-card {
    display: flex;
    flex-direction: column;
    border-width: 1px;
    border-radius: var(--radius);
}

.portfolio-card.image-card > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #edf3ff;
}

.portfolio-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
}

.portfolio-body span,
.product-card span {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--teal-800);
    background: var(--teal-100);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.portfolio-body h3,
.product-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.25rem;
}

.portfolio-body p,
.product-card p {
    margin: 0;
    color: var(--muted);
}

.portfolio-body small {
    margin-top: auto;
    color: #ff6500;
    font-weight: 900;
}

.browser-top {
    display: flex;
    gap: 5px;
    height: 28px;
    padding: 9px;
    background: #f4f7fb;
}

.browser-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
}

.browser-top span:nth-child(2) {
    background: #ffbd2e;
}

.browser-top span:nth-child(3) {
    background: #28c840;
}

.mock-screen {
    display: grid;
    grid-template-columns: 22% 1fr;
    min-height: 170px;
}

.mock-sidebar {
    background: rgba(0, 0, 0, 0.2);
}

.mock-content {
    display: grid;
    align-content: center;
    gap: 8px;
    min-height: 170px;
    padding: 18px;
    color: var(--white);
}

.mock-content b {
    font-size: 0.77rem;
    text-transform: uppercase;
}

.mock-content strong {
    font-size: 1.15rem;
    line-height: 1.15;
}

.mock-content p {
    margin: 0;
    opacity: 0.86;
}

.mock-lines {
    display: grid;
    gap: 6px;
    margin-top: 6px;
}

.mock-lines i {
    display: block;
    height: 7px;
    width: 82%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
}

.mock-lines i:nth-child(2) {
    width: 66%;
}

.mock-lines i:nth-child(3) {
    width: 46%;
}

.portfolio-card.teal .mock-content { background: linear-gradient(135deg, #073f9f, #0b55d9); }
.portfolio-card.blue .mock-content { background: linear-gradient(135deg, #174ea6, #3484f0); }
.portfolio-card.green .mock-content { background: linear-gradient(135deg, #ff6500, #ff9f2f); }
.portfolio-card.amber .mock-content { background: linear-gradient(135deg, #c57400, #ffb020); }
.portfolio-card.purple .mock-content { background: linear-gradient(135deg, #53389e, #8b5cf6); }
.portfolio-card.cyan .mock-content { background: linear-gradient(135deg, #0e7490, #22d3ee); }
.portfolio-card.slate .mock-content { background: linear-gradient(135deg, #334155, #64748b); }
.portfolio-card.orange .mock-content { background: linear-gradient(135deg, #ea580c, #fb923c); }

.section,
.system-section,
.local-seo-section,
.process-section,
.company-section,
.contact-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 92px 24px;
}

.portfolio-section,
.products,
.services,
.local-seo-section,
.system-section,
.packages,
.process-section,
.company-section,
.contact-section,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}

.section {
    text-align: center;
}

.products {
    max-width: none;
    background: var(--white);
}

.products > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 36px rgba(6, 26, 68, 0.08);
    text-align: left;
}

.product-card > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #edf3ff;
}

.product-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.product-card ul {
    display: grid;
    gap: 10px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.product-card li {
    display: flex;
    gap: 8px;
    color: #34475f;
    font-size: 0.94rem;
}

.product-card li svg {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    color: #ff6500;
    flex: 0 0 auto;
}

.service-grid,
.package-grid,
.step-grid {
    display: grid;
    gap: 22px;
    margin-top: 40px;
}

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

.service-card,
.package-card,
.step-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(6, 26, 68, 0.07);
}

.service-card {
    padding: 30px;
    text-align: left;
}

.service-card span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
}

.service-card svg {
    width: 26px;
    height: 26px;
}

.local-seo-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: center;
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--container)) / 2));
    padding-right: max(24px, calc((100vw - var(--container)) / 2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f8fbff;
}

.local-seo-section h2 {
    max-width: 640px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.7rem, 3.1vw, 2.45rem);
    line-height: 1.16;
}

.local-seo-section p {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.local-seo-section ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.local-seo-section li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #dbe6f6;
    border-radius: 8px;
    color: #233957;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(6, 26, 68, 0.06);
    font-weight: 800;
}

.local-seo-section li svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    color: #168f48;
    flex: 0 0 auto;
}

.service-card h3,
.package-card h3,
.step-grid h3 {
    margin: 20px 0 8px;
    font-size: 1.25rem;
}

.service-card p,
.package-card p,
.step-grid p {
    margin: 0;
    color: var(--muted);
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: #34475f;
    font-size: 0.93rem;
    line-height: 1.55;
}

.service-card li svg {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    color: #168f48;
    flex: 0 0 auto;
}

.system-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: center;
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--container)) / 2));
    padding-right: max(24px, calc((100vw - var(--container)) / 2));
    background: #edf3ff;
}

.system-copy p {
    margin-left: 0;
}

.system-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.system-list span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d9e6ff;
    border-radius: 8px;
    color: #073f9f;
    background: var(--white);
    font-weight: 800;
}

.system-list svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.packages {
    max-width: none;
    background: linear-gradient(180deg, #f8fafc, #fff7ed);
}

.package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px;
    text-align: left;
}

.package-card.featured {
    border-color: #ffb15d;
    box-shadow: 0 24px 48px rgba(255, 122, 26, 0.18);
}

.ribbon {
    position: absolute;
    right: 18px;
    top: -14px;
    padding: 7px 11px;
    border-radius: 8px;
    color: var(--white);
    background: var(--orange);
    font-size: 0.78rem;
    font-weight: 900;
}

.package-card > strong {
    display: block;
    color: var(--teal-700);
    font-size: 1.3rem;
}

.package-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.package-card li {
    display: flex;
    gap: 8px;
    color: #334348;
}

.package-card li svg {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.package-card a {
    display: grid;
    place-items: center;
    min-height: 46px;
    margin-top: auto;
    border-radius: 8px;
    color: var(--white);
    background: var(--orange);
    font-weight: 900;
}

.process-section {
    text-align: center;
}

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

.step-grid article {
    padding: 28px;
    text-align: left;
}

.step-grid span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
    font-weight: 900;
}

.company-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: center;
    max-width: none;
    padding-left: max(24px, calc((100vw - var(--container)) / 2));
    padding-right: max(24px, calc((100vw - var(--container)) / 2));
    background:
        linear-gradient(135deg, rgba(10, 69, 166, 0.08), rgba(255, 122, 26, 0.08)),
        #fbfdff;
    isolation: isolate;
}

.company-section::before {
    content: none;
}

.company-intro,
.company-details {
    margin: 0;
    border-radius: 8px;
}

.company-intro {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding: 34px;
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 46px rgba(6, 26, 68, 0.08);
}

.company-intro::after {
    content: none;
}

.company-mark {
    text-align: center;
    position: static;
    display: inline-grid;
    place-items: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px 15px;
    border: 1px solid #dbe5f4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(6, 26, 68, 0.08);
}

.company-mark img {
    width: 184px;
    height: auto;
    object-fit: contain;
}

.company-intro h2,
.company-intro .section-kicker,
.company-intro p {
    position: relative;
    z-index: 1;
    color: var(--ink);
}

.company-intro .section-kicker {
    color: var(--orange-dark);
}

.company-intro h2 {
    max-width: 560px;
    font-size: clamp(1.7rem, 2.3vw, 2.35rem);
    line-height: 1.16;
    text-transform: none;
}

.company-intro p:not(.section-kicker) {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.company-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.company-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid #d9e6ff;
    border-radius: 8px;
    color: var(--teal-800);
    background: #f4f8ff;
    font-size: 0.76rem;
    font-weight: 900;
}

.company-details {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.company-details div {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(6, 26, 68, 0.06);
}

.company-details span {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
}

.company-details svg {
    width: 21px;
    height: 21px;
}

.company-details dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.company-details dd {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.55;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 36px;
    align-items: start;
}

.contact-copy {
    position: sticky;
    top: 120px;
}

.contact-copy p {
    margin-left: 0;
}

.contact-copy a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    margin-right: 16px;
    color: var(--teal-800);
    font-weight: 900;
}

.contact-copy .contact-wa {
    color: #168f48;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 900;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cfdae9;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.captcha-field {
    padding: 16px;
    border: 1px solid #d9e6ff;
    border-radius: 8px;
    background: #f8fbff;
}

.captcha-field span {
    color: var(--teal-800);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--teal-700);
    box-shadow: 0 0 0 4px rgba(11, 85, 217, 0.14);
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--orange);
    cursor: pointer;
    font-weight: 900;
}

.form-alert {
    grid-column: 1 / -1;
    padding: 13px 14px;
    border-radius: 8px;
    font-weight: 900;
}

.form-alert.success {
    color: #07513c;
    background: #def7ec;
}

.form-alert.warning {
    color: #7a4b00;
    background: #fff4d6;
}

.form-alert.error {
    color: #8a2418;
    background: #fff0ec;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 40px max(24px, calc((100vw - var(--container)) / 2));
    color: rgba(255, 255, 255, 0.82);
    background: #061a44;
}

.site-footer strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
}

.site-footer p {
    max-width: 580px;
    margin: 6px 0 0;
}

.site-footer div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    font-weight: 800;
}

.visitor-widget {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 72;
    width: min(330px, calc(100vw - 48px));
    color: var(--ink);
}

.visitor-toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(220, 229, 242, 0.86);
    border-radius: 8px 8px 0 0;
    color: var(--white);
    background: linear-gradient(135deg, #061a44, #0a45a6 62%, #ff7a1a);
    box-shadow: 0 14px 30px rgba(6, 26, 68, 0.18);
    cursor: pointer;
    font-weight: 900;
}

.visitor-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.visitor-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.visitor-widget.is-collapsed .visitor-toggle {
    border-radius: 8px;
}

.visitor-widget.is-collapsed .visitor-toggle svg:last-child {
    transform: rotate(180deg);
}

.visitor-widget.is-collapsed .visitor-panel {
    display: none;
}

.visitor-panel {
    overflow: hidden;
    border: 1px solid rgba(220, 229, 242, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(6, 26, 68, 0.18);
    backdrop-filter: blur(14px);
}

.visitor-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px 12px;
    color: var(--white);
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 179, 26, 0.72), transparent 30%),
        linear-gradient(135deg, #061a44, #0a45a6);
}

.visitor-live-dot {
    position: relative;
    flex: 0 0 13px;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: #27d76b;
    box-shadow: 0 0 0 6px rgba(39, 215, 107, 0.18);
}

.visitor-head strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.15;
}

.visitor-head small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    font-weight: 700;
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.visitor-grid div {
    min-width: 0;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
}

.visitor-grid span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.visitor-grid strong {
    display: block;
    color: var(--teal-800);
    font-size: clamp(1rem, 3vw, 1.28rem);
    line-height: 1.1;
}

.floating-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, #159947, #1fb45b);
    box-shadow: 0 14px 28px rgba(31, 180, 91, 0.34);
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 15px;
    }

    .quote-button {
        min-width: 172px;
    }

    .quick-consult {
        gap: 18px 40px;
    }

    .portfolio-grid,
    .product-grid,
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .promo-bar {
        font-size: 1rem;
    }

    .site-header {
        min-height: 78px;
        padding: 14px 18px;
    }

    .brand {
        padding: 7px 11px;
    }

    .brand img {
        width: 238px;
        max-height: 46px;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        right: 18px;
        top: 17px;
        flex: 0 0 44px;
    }

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        border-radius: 8px;
        color: var(--ink);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        padding: 12px;
        border-radius: 8px;
    }

    .quote-button {
        min-width: 0;
        color: var(--white);
    }

    .hero {
        min-height: auto;
    }

    .hero-inner,
    .system-section,
    .local-seo-section,
    .company-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        width: 100%;
        max-width: 100vw;
        gap: 18px;
        padding-top: 34px;
    }

    .hero-offer {
        padding-top: 0;
    }

    .review-section {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .google-score {
        padding: 0;
    }

    .quick-consult {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-bottom: 56px;
    }

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

    .system-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-copy {
        position: static;
    }

    .company-section::before {
        content: none;
    }

    .company-intro {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .promo-bar {
        justify-content: flex-start;
        gap: 7px;
        padding: 8px 40px 8px 12px;
        font-size: 0.86rem;
        text-align: left;
    }

    .promo-bar a {
        min-height: 30px;
        padding: 3px 9px;
        max-width: 128px;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .promo-bar span {
        max-width: 168px;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-header {
        top: 0;
    }

    .brand img {
        width: 190px;
        max-height: 40px;
    }

    .hero-inner,
    .section,
    .system-section,
    .local-seo-section,
    .process-section,
    .company-section,
    .contact-section,
    .portfolio-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-inner {
        overflow: hidden;
        padding-top: 10px;
        padding-bottom: 102px;
    }

    .hero-art {
        overflow: visible;
        border-radius: 6px;
        width: min(100%, 470px);
        padding-bottom: 12px;
        transform: translateY(-8px);
    }

    .hero-offer {
        transform: translateY(-8px);
    }

    .hero-image-frame img {
        max-height: 360px;
        aspect-ratio: 1180 / 702;
        object-fit: contain;
        object-position: center;
    }

    .hero-label {
        bottom: -2px;
        width: 82%;
        border-width: 1px;
        font-size: 0.86rem;
    }

    .promo-title {
        font-size: 1.55rem;
        white-space: normal;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(0, 118px));
        justify-content: center;
        gap: 10px;
        max-width: 260px;
    }

    .countdown div {
        min-height: 58px;
    }

    .hero-bullets {
        font-size: 1rem;
    }

    .company-section {
        gap: 18px;
    }

    .company-section::before {
        content: none;
    }

    .company-intro {
        min-height: 0;
        padding: 24px;
    }

    .company-mark {
        width: 176px;
        min-height: 70px;
        margin-bottom: 20px;
    }

    .company-mark img {
        width: 146px;
    }

    .company-intro h2 {
        font-size: 1.52rem;
        line-height: 1.2;
    }

    .company-tags {
        gap: 8px;
        margin-top: 22px;
    }

    .company-tags span {
        min-height: 30px;
        padding: 6px 10px;
        font-size: 0.72rem;
    }

    .company-details {
        padding: 0;
    }

    .company-details div {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 16px;
    }

    .company-details span {
        width: 42px;
        height: 42px;
    }

    .company-details svg {
        width: 20px;
        height: 20px;
    }

    .quick-consult,
    .portfolio-grid,
    .product-grid,
    .service-grid,
    .package-grid,
    .step-grid,
    .system-list,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .full {
        grid-column: auto;
    }

    .portfolio-section h2,
    .section h2,
    .system-copy h2,
    .process-section h2,
    .contact-copy h2 {
        font-size: 2.05rem;
    }

    .company-section h2 {
        font-size: 1.52rem;
        line-height: 1.2;
    }

    .site-footer {
        flex-direction: column;
    }

    .visitor-widget {
        right: 8px;
        left: 8px;
        bottom: 72px;
        width: auto;
    }

    .visitor-toggle {
        display: flex;
    }

    .visitor-panel {
        border-radius: 0 0 8px 8px;
    }

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

    .floating-wa {
        right: 8px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }

    .floating-wa svg {
        width: 27px;
        height: 27px;
    }
}
