:root {
    --ink: #16191f;
    --ink-soft: #555b66;
    --paper: #f7f5f1;
    --paper-deep: #efebe4;
    --white: #ffffff;
    --red: #ef3d32;
    --red-dark: #cc291f;
    --red-soft: #ffe7e3;
    --green: #22a861;
    --green-dark: #16884b;
    --line: rgba(22, 25, 31, 0.12);
    --shadow: 0 24px 70px rgba(22, 25, 31, 0.12);
    --radius: 26px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

.section {
    padding: 112px 0;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 14px;
    z-index: 2000;
    transform: translateY(-150%);
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--white);
    background: var(--ink);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 500;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(247, 245, 241, .94);
    border-color: var(--line);
    box-shadow: 0 12px 30px rgba(22, 25, 31, .06);
    backdrop-filter: blur(16px);
}

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

.brand {
    width: 150px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: 52px;
    object-fit: contain;
}

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

.desktop-nav a,
.text-link {
    position: relative;
    font-size: 14px;
    font-weight: 680;
    letter-spacing: -.01em;
}

.desktop-nav a::after,
.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 2px;
    background: var(--red);
    transition: right .2s ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
    right: 0;
}

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

.button {
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 760;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button i {
    font-size: 12px;
    transition: transform .2s ease;
}

.button:hover i {
    transform: translateX(3px);
}

.button-small {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 11px;
    font-size: 13px;
}

.button-dark {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 10px 25px rgba(22, 25, 31, .15);
}

.button-dark:hover {
    background: #000;
}

.button-primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 32px rgba(239, 61, 50, .23);
}

.button-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 16px 34px rgba(239, 61, 50, .3);
}

.button-ghost {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, .5);
}

.button-ghost:hover {
    background: var(--white);
    border-color: rgba(22, 25, 31, .22);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, .65);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 82px 0 auto;
    padding: 28px 24px 34px;
    background: rgba(247, 245, 241, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 50px rgba(22, 25, 31, .12);
}

.mobile-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 720;
}

.section-shell {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 810px;
    padding: 152px 0 86px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(22, 25, 31, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 25, 31, .028) 1px, transparent 1px),
        var(--paper);
    background-size: 48px 48px;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(transparent, var(--paper));
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    width: 420px;
    height: 420px;
    top: 80px;
    right: 5%;
    background: radial-gradient(circle, rgba(239, 61, 50, .12), rgba(239, 61, 50, 0) 68%);
}

.hero-glow-two {
    width: 380px;
    height: 380px;
    left: -190px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(255, 185, 93, .15), rgba(255, 185, 93, 0) 70%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
    align-items: center;
    gap: 82px;
}

.eyebrow,
.kicker {
    margin: 0 0 20px;
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 830;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(239, 61, 50, .2);
    border-radius: 99px;
    background: rgba(255, 255, 255, .65);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(239, 61, 50, .1);
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(58px, 6.2vw, 92px);
    line-height: .98;
    letter-spacing: -.068em;
    font-weight: 840;
}

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

.hero-lead {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--ink-soft);
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: -.012em;
}

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

.hero-trust {
    display: flex;
    gap: 26px;
    margin-top: 44px;
}

.hero-trust div {
    min-width: 102px;
    padding-right: 26px;
    border-right: 1px solid var(--line);
}

.hero-trust div:last-child {
    padding-right: 0;
    border-right: 0;
}

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

.hero-trust strong {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -.04em;
}

.hero-trust strong i {
    color: var(--red);
    font-size: 20px;
}

.hero-trust span {
    margin-top: 8px;
    color: #6a707a;
    font-size: 11px;
    line-height: 1.35;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(239, 61, 50, .18);
    border-radius: 50%;
}

.hero-visual::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    top: 73px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px dashed rgba(22, 25, 31, .16);
    border-radius: 50%;
    animation: orbit 30s linear infinite;
}

@keyframes orbit {
    to { transform: translateX(-50%) rotate(360deg); }
}

.signal-card {
    position: absolute;
    z-index: 2;
    inset: 74px 20px auto 38px;
    min-height: 350px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    color: var(--white);
    background: linear-gradient(145deg, #1c2027, #101216);
    box-shadow: 0 32px 60px rgba(22, 25, 31, .25);
    transform: rotate(-2deg);
}

.signal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 85% 15%, rgba(239, 61, 50, .3), transparent 36%);
    pointer-events: none;
}

.signal-topline,
.signal-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signal-label {
    color: rgba(255, 255, 255, .52);
    font-size: 9px;
    font-weight: 760;
    letter-spacing: .17em;
}

.live-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 99px;
    color: rgba(255, 255, 255, .75);
    font-size: 9px;
}

.live-pill span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4bd887;
    box-shadow: 0 0 0 4px rgba(75, 216, 135, .12);
}

.signal-mark {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 42px;
}

.signal-s {
    width: 86px;
    height: 86px;
    flex: 0 0 86px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: var(--white);
    background: linear-gradient(145deg, #ff5549, #d7281f);
    box-shadow: 0 18px 30px rgba(239, 61, 50, .25);
    font-size: 50px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    letter-spacing: -.08em;
}

.signal-mark strong {
    font-size: 21px;
    letter-spacing: -.03em;
}

.signal-mark p {
    max-width: 210px;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    line-height: 1.55;
}

.signal-bars {
    position: relative;
    height: 82px;
    margin: 34px 0 24px;
    display: flex;
    align-items: end;
    gap: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.signal-bars span {
    height: var(--bar);
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, rgba(239, 61, 50, .28), rgba(239, 61, 50, .95));
}

.signal-footer {
    justify-content: flex-start;
    gap: 13px;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.signal-footer i {
    color: var(--red);
}

.mini-card {
    position: absolute;
    z-index: 3;
    min-width: 205px;
    padding: 14px 16px;
    border: 1px solid rgba(22, 25, 31, .09);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 16px 35px rgba(22, 25, 31, .12);
    backdrop-filter: blur(10px);
}

.mini-card > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--red);
}

.mini-card strong,
.mini-card span {
    display: block;
}

.mini-card strong {
    font-size: 12px;
}

.mini-card span {
    margin-top: 2px;
    color: #777c84;
    font-size: 9px;
}

.mini-card-hosting {
    top: 40px;
    right: -16px;
    transform: rotate(3deg);
}

.mini-card-training {
    left: -15px;
    bottom: 23px;
    transform: rotate(-2deg);
}

.mini-card-training > i {
    color: var(--ink);
    background: #ffd585;
}

.orbit-dot {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
}

.orbit-dot-one {
    width: 13px;
    height: 13px;
    top: 86px;
    left: 31px;
    background: var(--red);
    box-shadow: 0 0 0 8px rgba(239, 61, 50, .12);
}

.orbit-dot-two {
    width: 9px;
    height: 9px;
    right: 24px;
    bottom: 88px;
    background: var(--ink);
    box-shadow: 0 0 0 7px rgba(22, 25, 31, .08);
}

.service-strip {
    position: relative;
    z-index: 4;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .55);
}

.strip-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    color: #6a707a;
    font-size: 11px;
    font-weight: 780;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.strip-inner i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
}

.section-heading,
.build-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .58fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 54px;
}

.section-heading h2,
.build-heading h2,
.process-copy h2,
.why-copy h2,
.contact-card h2,
.packages-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4.3vw, 62px);
    line-height: 1.06;
    letter-spacing: -.055em;
}

.section-heading > p,
.build-heading > p {
    margin: 0 0 7px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

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

.service-card {
    position: relative;
    min-height: 440px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .68);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 30px solid rgba(239, 61, 50, .05);
    transition: transform .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 61, 50, .3);
    box-shadow: var(--shadow);
}

.service-card:hover::after {
    transform: scale(1.3);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-number {
    color: #a5a8ad;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .12em;
}

.icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--red);
    background: var(--red-soft);
    font-size: 19px;
}

.service-card:nth-child(2) .icon-box {
    color: #9e6100;
    background: #fff0d0;
}

.service-card:nth-child(3) .icon-box {
    color: #156e63;
    background: #dff3ee;
}

.service-card h3 {
    margin: 44px 0 12px;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.service-card > p {
    min-height: 78px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.75;
}

.service-card ul,
.package-card ul {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 0;
    color: #40454d;
    font-size: 13px;
}

.service-card li i {
    color: var(--red);
    font-size: 9px;
}

.service-card > a {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 27px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 780;
}

.service-card > a i {
    color: var(--red);
    transition: transform .2s ease;
}

.service-card > a:hover i {
    transform: translateX(4px);
}

.build-showcase {
    padding-top: 0;
    background: linear-gradient(to bottom, transparent 0, transparent 60px, #ebe7df 60px, #ebe7df 100%);
}

.build-showcase .container {
    padding-top: 110px;
}

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

.build-card {
    position: relative;
    min-height: 250px;
    padding: 23px;
    border: 1px solid rgba(22, 25, 31, .11);
    border-radius: 21px;
    background: rgba(247, 245, 241, .72);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.build-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -85px;
    bottom: -85px;
    border-radius: 50%;
    background: rgba(239, 61, 50, .12);
    transition: transform .35s ease;
}

.build-card:hover {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-5px);
}

.build-card:hover::after {
    transform: scale(1.4);
}

.build-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--red);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(22, 25, 31, .08);
}

.build-card h3 {
    margin: 30px 0 8px;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.build-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.65;
    transition: color .25s ease;
}

.build-card:hover p {
    color: rgba(255, 255, 255, .6);
}

.build-arrow {
    position: absolute;
    z-index: 2;
    top: 25px;
    right: 25px;
    color: rgba(22, 25, 31, .3);
    transform: rotate(45deg);
}

.build-card:hover .build-arrow {
    color: var(--red);
}

.more-solutions {
    margin-top: 38px;
    padding: 30px;
    border: 1px solid rgba(22, 25, 31, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .45);
}

.more-solutions > span {
    display: block;
    margin-bottom: 17px;
    color: #858078;
    font-size: 10px;
    font-weight: 820;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-tags span {
    padding: 8px 12px;
    border: 1px solid rgba(22, 25, 31, .1);
    border-radius: 99px;
    color: #4f535b;
    background: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 700;
}

.more-solutions > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: var(--red-dark);
    font-size: 13px;
    font-weight: 800;
}

.packages-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: #14171d;
}

.packages-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 56px 56px;
}

.packages-section .container {
    position: relative;
    z-index: 2;
}

.package-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.package-orb-one {
    width: 500px;
    height: 500px;
    top: -220px;
    right: -160px;
    background: radial-gradient(circle, rgba(239, 61, 50, .25), transparent 67%);
}

.package-orb-two {
    width: 430px;
    height: 430px;
    left: -220px;
    bottom: -150px;
    background: radial-gradient(circle, rgba(239, 61, 50, .14), transparent 68%);
}

.kicker-light {
    color: #ff887f;
}

.packages-heading {
    max-width: 750px;
    margin-bottom: 55px;
}

.packages-heading > p:last-child {
    max-width: 610px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 16px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 13px;
}

.package-card {
    position: relative;
    padding: 27px 23px 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 23px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .055);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.package-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .075);
}

.package-featured {
    border-color: rgba(239, 61, 50, .72);
    background: linear-gradient(180deg, rgba(239, 61, 50, .17), rgba(255, 255, 255, .055) 45%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .22);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 21px;
    padding: 7px 11px;
    border-radius: 99px;
    color: var(--white);
    background: var(--red);
    box-shadow: 0 9px 22px rgba(239, 61, 50, .28);
    font-size: 9px;
    font-weight: 790;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.package-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.package-head p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, .44);
    font-size: 9px;
    font-weight: 730;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.package-head h3 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.03em;
}

.package-tier {
    color: rgba(255, 255, 255, .25);
    font-size: 10px;
    font-weight: 790;
    letter-spacing: .1em;
}

.price {
    margin-top: 26px;
    font-size: 44px;
    font-weight: 840;
    line-height: 1;
    letter-spacing: -.055em;
}

.price span {
    margin-right: 4px;
    color: var(--red);
    font-size: 16px;
    vertical-align: top;
    line-height: 1.8;
}

.price-note {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
}

.package-rule {
    height: 1px;
    margin: 22px 0 8px;
    background: rgba(255, 255, 255, .11);
}

.package-card ul {
    flex: 1;
}

.package-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 11px 0;
    color: rgba(255, 255, 255, .69);
    font-size: 11px;
    line-height: 1.5;
}

.package-card li i {
    margin-top: 3px;
    color: var(--red);
    font-size: 10px;
}

.package-card .button {
    width: 100%;
    margin-top: 22px;
    min-height: 47px;
    padding-inline: 12px;
    font-size: 11px;
}

.button-package {
    color: var(--white);
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
}

.button-package:hover {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .13);
}

.custom-package {
    margin-top: 18px;
    padding: 25px 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, .05);
}

.custom-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ff8b83;
    background: rgba(239, 61, 50, .13);
}

.custom-package h3,
.custom-package p {
    margin: 0;
}

.custom-package h3 {
    font-size: 17px;
    letter-spacing: -.02em;
}

.custom-package p {
    margin-top: 4px;
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
}

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

.catalog-note {
    max-width: 680px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .34);
    text-align: center;
    font-size: 9px;
}

.process {
    background: var(--paper);
}

.process-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 120px;
    align-items: start;
}

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

.process-copy > p:not(.kicker) {
    margin: 23px 0 0;
    color: var(--ink-soft);
    font-size: 16px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
    color: var(--red-dark);
    font-size: 13px;
    font-weight: 790;
}

.arrow-link i {
    transition: transform .2s ease;
}

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

.process-step {
    padding: 32px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 26px;
}

.process-step:last-child {
    border-bottom: 1px solid var(--line);
}

.process-step > span {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--red-dark);
    background: var(--red-soft);
    font-size: 10px;
    font-weight: 800;
}

.process-step h3 {
    margin: 1px 0 7px;
    font-size: 22px;
    letter-spacing: -.03em;
}

.process-step p {
    max-width: 440px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

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

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.why-visual {
    position: relative;
    min-height: 470px;
}

.why-visual::before {
    content: "";
    position: absolute;
    inset: 30px 55px 0 0;
    border-radius: 50% 50% 28px 28px;
    background: var(--red-soft);
}

.why-frame {
    position: absolute;
    inset: 0 0 30px 34px;
    padding: 36px;
    border-radius: 28px;
    color: var(--white);
    background: #171a20;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.why-frame::before {
    content: "S";
    position: absolute;
    right: -30px;
    bottom: -115px;
    color: rgba(239, 61, 50, .14);
    font-size: 380px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    letter-spacing: -.12em;
}

.why-wordmark {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 24px;
    font-weight: 880;
    letter-spacing: -.04em;
}

.why-wordmark::first-letter {
    color: var(--red);
}

.why-wordmark span {
    font-size: 10px;
    font-weight: 680;
    letter-spacing: .2em;
}

.why-frame > p {
    position: relative;
    z-index: 2;
    margin: 110px 0 0;
    font-size: 36px;
    font-weight: 780;
    line-height: 1.12;
    letter-spacing: -.05em;
}

.why-lines {
    position: absolute;
    z-index: 2;
    left: 36px;
    right: 36px;
    bottom: 36px;
    display: flex;
    gap: 8px;
}

.why-lines i {
    height: 4px;
    flex: 1;
    border-radius: 99px;
    background: rgba(255, 255, 255, .16);
}

.why-lines i:first-child {
    background: var(--red);
}

.why-copy h2 {
    font-size: clamp(38px, 4vw, 58px);
}

.benefit-list {
    margin-top: 37px;
}

.benefit-list > div {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.benefit-list > div:last-child {
    border-bottom: 1px solid var(--line);
}

.benefit-list > div > i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--red);
    background: var(--red-soft);
}

.benefit-list strong,
.benefit-list small {
    display: block;
}

.benefit-list strong {
    font-size: 15px;
}

.benefit-list small {
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 12px;
}

.contact-section {
    padding: 100px 0;
    background: var(--paper-deep);
}

.contact-card {
    position: relative;
    padding: 65px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 80px;
    color: var(--white);
    background: #171a20;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(22, 25, 31, .18);
}

.contact-card::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -220px;
    bottom: -300px;
    border: 80px solid rgba(239, 61, 50, .18);
    border-radius: 50%;
}

.contact-copy,
.contact-options {
    position: relative;
    z-index: 2;
}

.contact-copy > p:last-child {
    max-width: 480px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.contact-option {
    width: 100%;
    min-height: 84px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    color: var(--white);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    text-align: left;
    background: rgba(255, 255, 255, .06);
}

button.contact-option {
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

button.contact-option:hover {
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .1);
    transform: translateX(4px);
}

.contact-option-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--white);
    background: rgba(255, 255, 255, .11);
    font-size: 18px;
}

.whatsapp-bg {
    background: var(--green);
}

.contact-option small,
.contact-option strong {
    display: block;
}

.contact-option small {
    color: rgba(255, 255, 255, .42);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.contact-option strong {
    margin-top: 2px;
    font-size: 14px;
}

.contact-option > i {
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
}

.email-address {
    display: inline-flex !important;
    gap: 0;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

.email-hint {
    margin: 2px 4px 0;
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
}

.site-footer {
    padding: 55px 0 24px;
    background: var(--paper);
}

.footer-top {
    display: grid;
    grid-template-columns: 170px 1fr auto;
    align-items: center;
    gap: 50px;
}

.footer-brand {
    width: 155px;
}

.footer-top > p {
    max-width: 390px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
}

.footer-top nav {
    display: flex;
    gap: 25px;
}

.footer-top nav a {
    color: #4e535b;
    font-size: 11px;
    font-weight: 700;
}

.footer-top nav a:hover,
.footer-bottom a:hover {
    color: var(--red);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #898d93;
    font-size: 9px;
}

.chat-panel {
    position: fixed;
    z-index: 800;
    right: 28px;
    bottom: 94px;
    width: min(350px, calc(100vw - 32px));
    border: 1px solid rgba(22, 25, 31, .1);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 25px 70px rgba(22, 25, 31, .22);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.96);
    transform-origin: bottom right;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.chat-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-head {
    min-height: 74px;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    background: linear-gradient(135deg, #118f4c, #20aa60);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 24px;
}

.chat-head > div {
    flex: 1;
}

.chat-head strong,
.chat-head span {
    display: block;
}

.chat-head strong {
    font-size: 13px;
}

.chat-head > div > span {
    margin-top: 1px;
    color: rgba(255, 255, 255, .78);
    font-size: 9px;
}

.chat-head > div > span i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 4px;
    border-radius: 50%;
    background: #81f7ad;
}

.chat-close {
    width: 33px;
    height: 33px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    color: rgba(255, 255, 255, .8);
    background: transparent;
    cursor: pointer;
}

.chat-close:hover {
    background: rgba(255, 255, 255, .12);
}

.chat-body {
    padding: 17px;
    background:
        radial-gradient(circle at 20% 30%, rgba(44, 112, 75, .04) 0 2px, transparent 2px),
        #f1eee9;
    background-size: 22px 22px;
}

.chat-time {
    margin-bottom: 12px;
    color: #9b9994;
    text-align: center;
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .08em;
}

.chat-bubble {
    position: relative;
    max-width: 86%;
    padding: 11px 12px 8px;
    border-radius: 4px 13px 13px 13px;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(22, 25, 31, .08);
}

.chat-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: -7px;
    border-top: 8px solid var(--white);
    border-left: 8px solid transparent;
}

.chat-bubble small {
    color: var(--green-dark);
    font-size: 8px;
    font-weight: 780;
}

.chat-bubble p {
    margin: 5px 0 1px;
    color: #30343a;
    font-size: 11px;
    line-height: 1.5;
}

.chat-bubble time {
    display: block;
    color: #aaa9a5;
    text-align: right;
    font-size: 7px;
}

.chat-cta {
    width: 100%;
    min-height: 43px;
    margin-top: 15px;
    border: 0;
    border-radius: 11px;
    color: var(--white);
    background: var(--green);
    font-size: 11px;
    font-weight: 760;
    cursor: pointer;
    box-shadow: 0 11px 22px rgba(34, 168, 97, .2);
    transition: background .2s ease, transform .2s ease;
}

.chat-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.chat-cta i {
    margin-right: 6px;
    font-size: 15px;
}

.floating-actions {
    position: fixed;
    z-index: 790;
    right: 28px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.float-button {
    height: 54px;
    padding: 0 17px;
    border: 0;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 14px 35px rgba(22, 25, 31, .24);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

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

.float-button i {
    font-size: 16px;
}

.float-button span {
    font-size: 10px;
    font-weight: 780;
}

.whatsapp-button {
    width: 58px;
    padding: 0;
    justify-content: center;
    background: var(--green);
}

.whatsapp-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.whatsapp-button i {
    font-size: 25px;
}

.toast {
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    max-width: min(420px, calc(100vw - 36px));
    padding: 13px 18px;
    border-radius: 11px;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow);
    font-size: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease var(--delay, 0ms), transform .65s ease var(--delay, 0ms);
}

.reveal-delay {
    --delay: 120ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
    .desktop-nav { gap: 22px; }
    .client-link { display: none; }
    .hero-grid { grid-template-columns: 1fr 440px; gap: 38px; }
    .hero h1 { font-size: clamp(54px, 7vw, 76px); }
    .package-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .package-card { min-height: 560px; }
    .build-grid { grid-template-columns: repeat(2, 1fr); }
    .build-card { min-height: 220px; }
}

@media (max-width: 880px) {
    .desktop-nav,
    .header-actions > .button { display: none; }
    .menu-toggle { display: flex; }
    .header-actions { margin-left: auto; }
    .hero { padding-top: 132px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-copy { max-width: 700px; }
    .hero-visual { width: min(100%, 560px); margin: 0 auto; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 385px; }
    .section-heading,
    .build-heading { grid-template-columns: 1fr; gap: 18px; }
    .section-heading > p,
    .build-heading > p { max-width: 620px; }
    .process-grid { grid-template-columns: 1fr; gap: 55px; }
    .process-copy { position: static; max-width: 650px; }
    .why-grid { grid-template-columns: 1fr; gap: 55px; }
    .why-visual { width: min(100%, 560px); }
    .why-copy { max-width: 650px; }
    .contact-card { grid-template-columns: 1fr; gap: 45px; padding: 50px; }
    .footer-top { grid-template-columns: 160px 1fr; }
    .footer-top nav { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section { padding: 82px 0; }
    .header-inner { height: 72px; }
    .mobile-nav { top: 72px; }
    .brand { width: 135px; }
    .brand img { height: 47px; }
    .hero { min-height: auto; padding: 116px 0 74px; }
    .hero h1 { font-size: clamp(45px, 14vw, 64px); }
    .hero-lead { margin-top: 22px; font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-trust { gap: 12px; justify-content: space-between; }
    .hero-trust div { min-width: 0; flex: 1; padding-right: 12px; }
    .hero-trust strong { font-size: 20px; }
    .hero-trust span { font-size: 9px; }
    .hero-visual { min-height: 420px; }
    .hero-visual::before { width: 340px; height: 340px; }
    .hero-visual::after { width: 270px; height: 270px; }
    .signal-card { inset: 62px 4px auto 4px; min-height: 300px; padding: 22px; }
    .signal-mark { margin-top: 32px; gap: 14px; }
    .signal-s { width: 68px; height: 68px; flex-basis: 68px; font-size: 39px; }
    .signal-mark strong { font-size: 17px; }
    .signal-mark p { font-size: 10px; }
    .signal-bars { height: 58px; margin: 25px 0 19px; }
    .mini-card { min-width: 165px; padding: 10px 12px; }
    .mini-card-hosting { top: 30px; right: -5px; }
    .mini-card-training { left: -4px; bottom: 7px; }
    .strip-inner { justify-content: flex-start; gap: 18px; overflow: hidden; white-space: nowrap; }
    .strip-inner span:nth-of-type(4),
    .strip-inner i:nth-of-type(3) { display: none; }
    .section-heading h2,
    .build-heading h2,
    .process-copy h2,
    .why-copy h2,
    .contact-card h2,
    .packages-heading h2 { font-size: 39px; }
    .service-card { padding: 24px; }
    .service-card > a { left: 24px; }
    .build-showcase { background: #ebe7df; }
    .build-showcase .container { padding-top: 0; }
    .build-grid { grid-template-columns: 1fr; }
    .build-card { min-height: 200px; }
    .more-solutions { padding: 23px; }
    .package-grid { grid-template-columns: 1fr; }
    .package-card { min-height: auto; padding: 28px 25px; }
    .custom-package { grid-template-columns: auto 1fr; }
    .custom-package .button { grid-column: 1 / -1; width: 100%; }
    .process-step { grid-template-columns: 47px 1fr; gap: 18px; }
    .why-visual { min-height: 400px; }
    .why-visual::before { inset: 22px 28px 0 0; }
    .why-frame { inset: 0 0 20px 17px; padding: 28px; }
    .why-frame > p { margin-top: 88px; font-size: 30px; }
    .contact-section { padding: 72px 0; }
    .contact-card { padding: 34px 24px; border-radius: 24px; }
    .contact-option { padding-inline: 12px; gap: 10px; }
    .contact-option strong { font-size: 12px; }
    .footer-top { grid-template-columns: 1fr; gap: 20px; }
    .footer-top nav { grid-column: auto; flex-wrap: wrap; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
    .chat-panel { right: 16px; bottom: 88px; }
    .floating-actions { right: 16px; bottom: 18px; }
    .call-button { width: 54px; padding: 0; justify-content: center; }
    .call-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 43px; }
    .hero-trust { flex-wrap: wrap; }
    .hero-trust div { flex-basis: 30%; }
    .mini-card { min-width: 145px; }
    .mini-card span { display: none; }
    .signal-label { display: none; }
    .why-frame > p { font-size: 27px; }
}
