:root {
    --background: #f2f4f6;
    --surface: #ffffff;
    --dark: #081521;
    --dark-soft: #102538;
    --dark-lighter: #17334a;
    --text: #142332;
    --muted: #415565;
    --line: rgba(14, 35, 52, 0.18);
    --line-light: rgba(255, 255, 255, 0.21);
    --blue: #2689ff;
    --blue-dark: #075bbf;
    --cyan: #50d6ff;
    --green: #42d992;
    --white: #ffffff;
    --max-width: 1380px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

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

::selection {
    background: var(--blue);
    color: var(--white);
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 12px 16px;
    background: var(--white);
    color: var(--dark);
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--cyan);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(8, 21, 33, 0.96);
    border-bottom: 1px solid var(--line-light);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.brand-mark {
    width: 58px;
    height: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.brand-mark span {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 900;
}

.brand-mark span:last-child {
    border-right: 0;
    background: var(--blue);
}

.brand-text,
.footer-brand > span:last-child {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 16px;
    letter-spacing: 0.25em;
}

.brand-text small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 9px;
    letter-spacing: 0.05em;
}

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

.desktop-nav a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 750;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--white);
}

.desktop-nav .nav-whatsapp {
    padding: 12px 18px;
    background: var(--blue);
    color: var(--white);
}

.desktop-nav .nav-whatsapp:hover {
    background: var(--blue-dark);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line-light);
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: var(--white);
    transition: transform 0.25s ease;
}

.menu-button.active span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-button.active span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 138px 24px 0;
    color: var(--white);
    background: var(--dark);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.38;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -200px;
    top: -180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(38, 137, 255, 0.35),
        transparent 65%
    );
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 65px;
    align-items: center;
}

.hero-content {
    padding: 42px 0 70px;
}

.hero-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-kicker span {
    width: 38px;
    height: 2px;
    background: var(--cyan);
}

.hero h1 {
    max-width: 900px;
    margin: 24px 0 22px;
    font-size: clamp(48px, 5.8vw, 84px);
    line-height: 1.01;
    letter-spacing: -0.055em;
}

.hero-lead {
    max-width: 790px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    line-height: 1.75;
}

.hero-services {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.hero-service {
    min-height: 108px;
    padding: 17px;
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 13px;
    align-items: center;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: rgba(255, 255, 255, 0.035);
}

.hero-service:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-service-wide {
    grid-column: 1 / -1;
}

.hero-service-icon {
    width: 43px;
    height: 43px;
    padding: 10px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: var(--white);
}

.hero-service-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-service strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
}

.hero-service small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.48;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    min-height: 57px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 13px;
    font-weight: 850;
}

.button-primary {
    background: var(--blue);
    color: var(--white);
}

.button-primary:hover {
    background: var(--blue-dark);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.contact-policy {
    max-width: 760px;
    margin-top: 25px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 13px;
    border-top: 1px solid var(--line-light);
}

.contact-policy > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: var(--cyan);
    font-weight: 900;
}

.contact-policy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.65;
}

.hero-visual {
    position: relative;
    border: 1px solid var(--line-light);
    background: rgba(255, 255, 255, 0.03);
}

.hero-visual img {
    width: 100%;
    height: auto;
}

.visual-caption {
    padding: 22px;
    border-top: 1px solid var(--line-light);
}

.visual-caption span,
.visual-caption strong {
    display: block;
}

.visual-caption span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.visual-caption strong {
    margin-top: 6px;
    font-size: 18px;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max-width));
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.hero-bottom span {
    min-height: 70px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 800;
}

.clarity-section {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 105px 0;
    display: grid;
    grid-template-columns: 0.25fr 1.1fr 0.5fr;
    gap: 50px;
    border-bottom: 1px solid var(--line);
}

.section-code {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.section-label {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.clarity-section h2,
.section-heading h2,
.package-heading h2,
.faq-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4.8vw, 70px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.clarity-note {
    align-self: end;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.services-section,
.work-section,
.faq-section {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 110px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.5fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 65px;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.service-list {
    border-top: 1px solid var(--line);
}

.service-list article {
    padding: 43px 0;
    display: grid;
    grid-template-columns: 0.13fr 0.72fr 0.75fr;
    gap: 34px;
    border-bottom: 1px solid var(--line);
}

.service-index {
    padding-top: 8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
}

.service-title {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
}

.service-title > span {
    width: 64px;
    min-height: 64px;
    padding: 8px;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--dark);
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
}

.service-title h3 {
    margin: 0;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.service-copy p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.service-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-copy li {
    position: relative;
    padding: 8px 0 8px 18px;
    border-top: 1px solid rgba(14, 35, 52, 0.12);
    color: #304451;
    font-size: 13px;
    font-weight: 700;
}

.service-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 6px;
    height: 6px;
    background: var(--blue);
}

.service-cta {
    min-height: 50px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 850;
}

.service-cta:hover {
    background: var(--blue-dark);
}

.service-cta.bright {
    display: inline-flex;
    margin-top: 22px;
    background: var(--blue);
}

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

.work-card {
    position: relative;
    grid-column: span 4;
    min-height: 390px;
    margin: 0;
    overflow: hidden;
    background: var(--dark);
    border: 1px solid var(--line);
}

.work-web {
    grid-column: span 8;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-card figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 21px;
    padding: 17px;
    background: rgba(8, 21, 33, 0.94);
    color: var(--white);
}

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

.work-card figcaption span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.work-card figcaption strong {
    margin-top: 5px;
    font-size: 16px;
    line-height: 1.45;
}

.example-section {
    padding:
        110px
        max(24px, calc((100vw - var(--max-width)) / 2));
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 85px;
    align-items: center;
    background: var(--dark-soft);
    color: var(--white);
}

.light-label {
    color: rgba(255, 255, 255, 0.82);
}

.example-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(39px, 4.8vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.example-copy > p:not(.section-label) {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
}

.delivery-card {
    margin-top: 26px;
    padding: 20px;
    border-left: 4px solid var(--cyan);
    background: rgba(255, 255, 255, 0.07);
}

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

.delivery-card span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.delivery-card strong {
    margin-top: 5px;
    font-size: 24px;
}

.delivery-card small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.chat-window {
    border: 1px solid var(--line-light);
    background: var(--dark);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.chat-header {
    min-height: 76px;
    padding: 0 21px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
}

.business-avatar {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--blue);
    font-size: 11px;
    font-weight: 900;
}

.chat-header strong,
.chat-header small {
    display: block;
}

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

.chat-header small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
}

.chat-header b {
    color: var(--cyan);
    font-size: 9px;
}

.chat-body {
    min-height: 475px;
    padding: 26px 22px;
}

.chat-message {
    max-width: 82%;
    margin-bottom: 16px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.65;
}

.chat-message.customer {
    margin-left: auto;
    background: var(--blue);
    color: var(--white);
}

.chat-message.assistant {
    border: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.9);
}

.chat-input {
    min-height: 65px;
    padding: 10px 12px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.chat-input button {
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.package-section {
    padding:
        110px
        max(24px, calc((100vw - var(--max-width)) / 2));
    background: var(--dark);
    color: var(--white);
}

.package-heading {
    padding-bottom: 55px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    border-bottom: 1px solid var(--line-light);
}

.package-heading > span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.package-layout {
    padding-top: 60px;
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 90px;
}

.package-price > small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price-row {
    margin: 20px 0 28px;
    display: flex;
    align-items: flex-end;
    gap: 11px;
}

.price-row > span {
    padding-bottom: 18px;
    color: var(--cyan);
    font-size: 34px;
    font-weight: 900;
}

.price-row > strong {
    font-size: clamp(78px, 10vw, 145px);
    line-height: 0.82;
    letter-spacing: -0.08em;
}

.price-row > div {
    padding-bottom: 11px;
    display: flex;
    flex-direction: column;
}

.price-row b {
    font-size: 17px;
}

.price-row div small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
}

.package-price > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.8;
}

.delivery-summary {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.delivery-summary div {
    padding: 17px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.delivery-summary span,
.delivery-summary strong {
    display: block;
}

.delivery-summary span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.delivery-summary strong {
    margin-top: 4px;
    font-size: 16px;
}

.package-features {
    border-top: 1px solid var(--line-light);
}

.package-features > div {
    min-height: 59px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 750;
}

.package-features > div span {
    color: var(--cyan);
    font-size: 9px;
}

.package-button {
    min-height: 61px;
    margin-top: 26px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--blue);
    font-size: 13px;
    font-weight: 850;
}

.package-button:hover {
    background: var(--blue-dark);
}

.package-note {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.7;
}

.other-pricing {
    margin-top: 62px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.other-pricing article {
    min-height: 215px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.other-pricing span,
.other-pricing strong {
    display: block;
}

.other-pricing span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.other-pricing strong {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.48;
}

.other-pricing a {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--line-light);
    color: var(--white);
    font-size: 12px;
    font-weight: 850;
}

.faq-heading {
    max-width: 950px;
    margin-bottom: 55px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 24px 52px 24px 0;
    cursor: pointer;
    list-style: none;
    font-size: 19px;
    font-weight: 850;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 18px;
    color: var(--blue-dark);
    font-size: 28px;
    font-weight: 400;
}

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

.faq-list p {
    max-width: 930px;
    margin: 0;
    padding: 0 52px 25px 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.contact-section {
    padding:
        100px
        max(24px, calc((100vw - var(--max-width)) / 2));
    background: var(--blue);
    color: var(--white);
}

.contact-top {
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.contact-layout {
    padding-top: 50px;
    display: grid;
    grid-template-columns: 1.08fr 0.62fr;
    gap: 85px;
}

.contact-layout h2 {
    margin: 0;
    font-size: clamp(42px, 5.8vw, 84px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.contact-details {
    align-self: end;
}

.contact-details > p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 16px;
    line-height: 1.75;
}

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

.contact-number small {
    color: rgba(255, 255, 255, 0.88);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-number strong {
    margin-top: 5px;
    font-size: clamp(25px, 3vw, 39px);
}

.contact-button {
    min-height: 60px;
    margin-top: 18px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--dark);
    font-size: 13px;
    font-weight: 850;
}

.contact-short-note {
    margin: 15px 0 0 !important;
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 12px !important;
}

.site-footer {
    min-height: 145px;
    padding:
        34px
        max(24px, calc((100vw - var(--max-width)) / 2));
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 35px;
    align-items: center;
    background: var(--dark);
    color: var(--white);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand strong {
    font-size: 13px;
    letter-spacing: 0.14em;
}

.footer-brand small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 8px;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 750;
}

.site-footer > p {
    margin: 0;
    text-align: right;
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
}

.floating-whatsapp {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 20px;
    width: 59px;
    height: 59px;
    padding: 15px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--dark);
    box-shadow: 0 18px 45px rgba(8, 21, 33, 0.32);
}

.floating-whatsapp svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

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

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

@media (max-width: 1180px) {

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

}

@media (max-width: 1100px) {

    .hero-layout,
    .example-section,
    .package-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .chat-window {
        width: min(760px, 100%);
    }

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

    .clarity-section {
        grid-template-columns: 0.2fr 1fr;
    }

    .clarity-note {
        grid-column: 2;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-list article {
        grid-template-columns: 0.12fr 0.88fr;
    }

    .service-copy {
        grid-column: 2;
        padding-left: 96px;
    }

    .work-card,
    .work-web {
        grid-column: span 6;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-nav {
        justify-content: center;
    }

    .site-footer > p {
        text-align: center;
    }
}

@media (max-width: 820px) {

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        height: calc(100vh - 80px);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        background: var(--dark);
        transform: translateX(100%);
        visibility: hidden;
        transition:
            transform 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-nav.open {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav a {
        padding: 19px 0;
        border-bottom: 1px solid var(--line-light);
        color: var(--white);
        font-size: 20px;
        font-weight: 800;
    }

    .hero {
        padding-top: 112px;
    }

    .hero h1 {
        font-size: clamp(44px, 12vw, 72px);
    }

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

    .clarity-section {
        padding: 80px 0;
        grid-template-columns: 1fr;
    }

    .clarity-note {
        grid-column: auto;
    }

    .services-section,
    .work-section,
    .faq-section {
        padding: 85px 0;
    }

    .service-list article {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-copy {
        grid-column: auto;
        padding-left: 0;
    }

    .work-card,
    .work-web {
        grid-column: span 12;
        min-height: 390px;
    }

    .example-section,
    .package-section,
    .contact-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .package-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {

    .other-pricing {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {

    .header-inner {
        width: calc(100% - 28px);
        min-height: 72px;
    }

    .brand-mark {
        width: 49px;
        height: 34px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text small {
        max-width: 205px;
        font-size: 7px;
    }

    .mobile-nav {
        top: 72px;
        height: calc(100vh - 72px);
    }

    .hero {
        padding: 98px 14px 0;
    }

    .hero-kicker {
        font-size: 10px;
        line-height: 1.5;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.04;
    }

    .hero-lead {
        font-size: 17px;
        line-height: 1.8;
    }

    .hero-services {
        grid-template-columns: 1fr;
    }

    .hero-service-wide {
        grid-column: auto;
    }

    .hero-service {
        min-height: 116px;
    }

    .hero-service strong {
        font-size: 17px;
    }

    .hero-service small {
        font-size: 14px;
        line-height: 1.55;
    }

    .button {
        width: 100%;
        min-height: 60px;
        font-size: 14px;
    }

    .contact-policy p {
        font-size: 13px;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
    }

    .hero-bottom span {
        min-height: 56px;
        font-size: 13px;
    }

    .clarity-section,
    .services-section,
    .work-section,
    .faq-section {
        width: calc(100% - 28px);
    }

    .clarity-section h2,
    .section-heading h2,
    .package-heading h2,
    .faq-heading h2,
    .example-copy h2 {
        font-size: 35px;
    }

    .clarity-note,
    .section-heading > p,
    .service-copy p,
    .example-copy > p:not(.section-label),
    .faq-list p,
    .contact-details > p {
        font-size: 16px;
    }

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

    .service-title h3 {
        font-size: 29px;
    }

    .service-copy li {
        font-size: 14px;
    }

    .work-card {
        min-height: 360px;
    }

    .example-section,
    .package-section,
    .contact-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .chat-body {
        min-height: 560px;
        padding: 22px 16px;
    }

    .chat-message {
        max-width: 94%;
        font-size: 14px;
    }

    .price-row > strong {
        font-size: 70px;
    }

    .delivery-summary {
        grid-template-columns: 1fr;
    }

    .faq-list summary {
        font-size: 18px;
        line-height: 1.45;
    }

    .contact-layout h2 {
        font-size: 41px;
    }

    .contact-number strong {
        font-size: 25px;
    }

    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
