:root {
    --ink: #0a0b0a;
    --paper: #f4f6ef;
    --white: #ffffff;
    --green: #10a66a;
    --green-dark: #08784b;
    --accent: #dcff72;
    --sage: #cbd8d0;
    --muted: #5d655f;
    --line: rgba(10, 11, 10, 0.16);
    --display: "Dela Gothic One", sans-serif;
    --sans: "Plus Jakarta Sans", sans-serif;
    --container: 1500px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

.admin-bar .site-header {
    top: 32px;
}

.admin-bar .mobile-menu {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header,
    .admin-bar .mobile-menu {
        top: 46px;
    }
}

body.menu-open .whatsapp-fab {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    content: "";
    display: none;
    opacity: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

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

img,
svg {
    display: block;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 12px 18px;
    transform: translateY(-160%);
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--accent);
    font-weight: 800;
    transition: transform 180ms ease;
}

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

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 40;
    width: 100%;
    padding: 18px clamp(20px, 4vw, 68px) 0;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(100%, var(--container));
    min-height: 72px;
    margin: 0 auto;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    font-family: var(--display);
    font-size: clamp(20px, 1.6vw, 27px);
    line-height: 1;
    letter-spacing: -1px;
}

.brand img {
    width: 48px;
    height: 48px;
}

.brand > span > span {
    color: var(--green);
}

body.menu-open .brand > span > span {
    color: var(--accent);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
}

.desktop-nav a {
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    outline: none;
    background: var(--ink);
    color: var(--accent);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
    padding: 14px 17px 14px 21px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 0 var(--ink);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.header-cta:hover,
.header-cta:focus-visible {
    outline: none;
    transform: translate(-3px, -3px);
    box-shadow: 3px 3px 0 var(--green);
}

.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 240ms ease;
}

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

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

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 24px 28px;
    visibility: hidden;
    opacity: 0;
    background: var(--green);
    transition: visibility 0s linear 360ms, opacity 300ms ease;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.mobile-menu nav {
    display: grid;
}

.mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 17px 0 20px;
    border-bottom: 2px solid rgba(10, 11, 10, 0.55);
    font-family: var(--display);
    font-size: clamp(30px, 10vw, 48px);
    line-height: 1;
    letter-spacing: -1.8px;
    transform: translateY(14px);
    opacity: 0;
    transition: transform 280ms ease, opacity 280ms ease;
}

.mobile-menu.is-open nav a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.is-open nav a:nth-child(2) { transition-delay: 50ms; }
.mobile-menu.is-open nav a:nth-child(3) { transition-delay: 100ms; }
.mobile-menu.is-open nav a:nth-child(4) { transition-delay: 150ms; }

.mobile-menu nav span {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
}

.mobile-menu-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
}

.mobile-menu-footer p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.mobile-menu-footer a {
    padding: 13px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: clamp(128px, 14vh, 170px) clamp(20px, 4vw, 68px) 24px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: 27%;
    left: -110px;
    width: 240px;
    height: 240px;
    content: "";
    border: 1px solid rgba(10, 11, 10, 0.12);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(480px, 0.9fr) minmax(570px, 1.1fr);
    align-items: center;
    gap: clamp(50px, 6vw, 110px);
    width: min(100%, var(--container));
    min-height: calc(100svh - 238px);
    margin: 0 auto;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 16px;
}

.hero h1 {
    max-width: 750px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(60px, 5.4vw, 88px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: clamp(-4px, -0.3vw, -2.5px);
}

.title-line {
    display: block;
    white-space: nowrap;
}

.title-accent {
    position: relative;
    display: inline-block;
    color: var(--green);
}

.title-accent svg {
    position: absolute;
    right: 0;
    bottom: -9px;
    width: 100%;
    height: 22px;
    overflow: visible;
    fill: none;
    stroke: var(--accent);
    stroke-linecap: round;
    stroke-width: 13;
    z-index: -1;
}

.hero-description {
    max-width: 620px;
    margin: clamp(28px, 4vh, 42px) 0 0;
    color: #3f4842;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.7;
}

.hero-description strong {
    color: var(--ink);
    font-weight: 800;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 62px;
    padding: 7px 8px 7px 25px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 0 0 var(--green);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-cta > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
}

.primary-cta svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.primary-cta:hover,
.primary-cta:focus-visible {
    outline: none;
    transform: translate(-4px, -4px);
    box-shadow: 5px 5px 0 var(--green);
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0 8px;
    border-bottom: 2px solid var(--ink);
    font-size: 14px;
    font-weight: 800;
    transition: color 180ms ease, border-color 180ms ease;
}

.secondary-cta svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
    outline: none;
    border-color: var(--green);
    color: var(--green-dark);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 20px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
    font-size: 11px;
    font-weight: 700;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust svg {
    width: 15px;
    fill: none;
    stroke: var(--green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.hero-showcase {
    position: relative;
    width: 100%;
    min-height: clamp(510px, 60vh, 710px);
    isolation: isolate;
}

.shape {
    position: absolute;
    pointer-events: none;
}

.shape-green {
    top: 5%;
    right: -3%;
    width: 84%;
    height: 80%;
    border: 2px solid var(--ink);
    border-radius: 48% 52% 46% 54% / 50% 43% 57% 50%;
    background: var(--green);
    transform: rotate(5deg);
    box-shadow: 10px 12px 0 var(--ink);
}

.shape-grid {
    right: -12%;
    bottom: 0;
    width: 230px;
    height: 170px;
    opacity: 0.28;
    background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: linear-gradient(to left, #000, transparent);
}

.browser-card {
    position: absolute;
    top: 14%;
    right: 1%;
    z-index: 2;
    width: 94%;
    margin: 0;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 25px;
    background: var(--white);
    box-shadow: 14px 16px 0 rgba(10, 11, 10, 0.23);
    transform: rotate(1.5deg);
    transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-showcase:hover .browser-card {
    transform: rotate(0deg) translateY(-5px);
}

.browser-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 48px;
    padding: 8px 13px;
    border-bottom: 2px solid var(--ink);
    background: #f5f5f0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 9px;
    height: 9px;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.browser-dots span:first-child { background: #ff7d72; }
.browser-dots span:nth-child(2) { background: #ffd45d; }
.browser-dots span:last-child { background: var(--green); }

.browser-url {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 245px;
    padding: 7px 13px;
    border: 1px solid rgba(10, 11, 10, 0.18);
    border-radius: 999px;
    background: var(--white);
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.browser-url svg {
    width: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.browser-live {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 5px;
    color: var(--green-dark);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.browser-live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.browser-screen {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f5efe9;
}

.browser-screen picture,
.browser-screen img {
    display: block;
    width: 100%;
    height: 100%;
}

.browser-screen img {
    object-fit: cover;
    object-position: top;
}

.phone-card {
    position: absolute;
    bottom: -1%;
    left: -1%;
    z-index: 4;
    width: clamp(140px, 23%, 190px);
    margin: 0;
    padding: 9px;
    border: 2px solid var(--ink);
    border-radius: 30px;
    background: var(--ink);
    box-shadow: 9px 10px 0 var(--accent);
    transform: rotate(-4deg);
    transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-showcase:hover .phone-card {
    transform: rotate(-1deg) translateY(-8px);
}

.phone-speaker {
    position: absolute;
    top: 14px;
    left: 50%;
    z-index: 2;
    width: 34%;
    height: 15px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--ink);
}

.phone-screen {
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    border-radius: 21px;
    background: #f5efe9;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.launch-sticker {
    position: absolute;
    top: -2%;
    right: -3%;
    z-index: 5;
    display: grid;
    place-content: center;
    width: 120px;
    height: 120px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--accent);
    text-align: center;
    transform: rotate(9deg);
    box-shadow: 6px 7px 0 var(--ink);
}

.launch-sticker span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.launch-sticker strong {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -1px;
}

.launch-sticker svg {
    position: absolute;
    right: 12px;
    bottom: 13px;
    width: 20px;
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-width: 1.5;
}

.project-label {
    position: absolute;
    right: 4%;
    bottom: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto;
    width: min(280px, 42%);
    padding: 14px 14px 14px 18px;
    border: 2px solid var(--ink);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 6px 7px 0 rgba(10, 11, 10, 0.2);
}

.project-label span,
.project-label strong {
    grid-column: 1;
}

.project-label span {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-label strong {
    font-size: 13px;
}

.project-label a {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    transition: transform 180ms ease, background-color 180ms ease;
}

.project-label a:hover,
.project-label a:focus-visible {
    outline: none;
    transform: rotate(8deg) scale(1.06);
    background: var(--ink);
}

.project-label svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.hero-footer {
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(100%, var(--container));
    margin: 26px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.hero-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.hero-footer strong {
    color: var(--ink);
}

.footer-line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

.scroll-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.scroll-note svg {
    width: 15px;
    fill: none;
    stroke: var(--green);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.projects-section {
    position: relative;
    padding: 105px clamp(32px, 4vw, 68px) 64px;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    background: var(--ink);
    color: var(--white);
}

.projects-section::before {
    position: absolute;
    top: -190px;
    right: -120px;
    width: 480px;
    height: 480px;
    content: "";
    border: 1px solid rgba(220, 255, 114, 0.28);
    border-radius: 50%;
}

.projects-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 80px;
    width: min(100%, var(--container));
    margin: 0 auto 54px;
}

.section-index {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 27px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-index span {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(220, 255, 114, 0.7);
    border-radius: 50%;
    font-size: 10px;
}

.projects-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(62px, 6vw, 96px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: clamp(-4px, -0.3vw, -2.5px);
}

.projects-intro h2 span {
    color: var(--accent);
}

.projects-lead {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
    padding-bottom: 7px;
}

.projects-lead p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.72;
}

.projects-count {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.projects-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 26px;
    width: min(100%, var(--container));
    margin: 0 auto;
}

.project-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 21px;
    overflow: hidden;
    border: 2px solid var(--white);
    border-radius: 28px;
    color: var(--ink);
}

.project-card-wide,
.project-card-narrow {
    flex-direction: column;
    height: 520px;
}

.project-card-wide {
    grid-column: span 7;
}

.project-card-narrow {
    grid-column: span 5;
}

.project-gilded {
    background: var(--accent);
}

.project-matias {
    background: var(--paper);
}

.project-card-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 18px;
}

.project-card-meta span,
.project-card-copy > span {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(29px, 2.6vw, 43px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.project-card-meta > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: none;
    min-height: 43px;
    padding: 8px 9px 8px 15px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card-meta > .project-icon-link {
    display: grid;
    place-items: center;
    width: 43px;
    padding: 0;
}

.project-card-meta > a:hover,
.project-card-meta > a:focus-visible {
    outline: none;
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 var(--green);
}

.project-card-meta svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.project-browser {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 9px 10px 0 rgba(10, 11, 10, 0.18);
    transform: translateY(4px) rotate(-0.6deg);
    transition: transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.project-card:hover .project-browser {
    transform: translateY(0) rotate(0deg);
}

.project-browser-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 12px;
    border-bottom: 2px solid var(--ink);
    background: #f2f2ed;
}

.project-browser-bar > span {
    width: 8px;
    height: 8px;
    border: 1px solid var(--ink);
    border-radius: 50%;
}

.project-browser-bar > span:first-child { background: #ff7d72; }
.project-browser-bar > span:nth-child(2) { background: #ffd45d; }
.project-browser-bar > span:nth-child(3) { background: var(--green); }

.project-browser-bar p {
    position: absolute;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
}

.project-browser > picture {
    display: block;
    width: 100%;
    height: calc(100% - 36px);
}

.project-browser > picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.project-browser-dark {
    background: #070912;
}

.project-card-full {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
    align-items: center;
    gap: 45px;
    min-height: 410px;
    margin-top: 2px;
    padding: 30px 30px 0;
    background: var(--green);
}

.project-card-copy {
    align-self: center;
    padding: 0 0 30px 8px;
}

.project-card-copy h3 {
    font-size: clamp(44px, 4.2vw, 64px);
    letter-spacing: -3px;
}

.project-card-copy p {
    max-width: 360px;
    margin: 19px 0 22px;
    font-size: 15px;
    line-height: 1.65;
}

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

.project-tags span {
    padding: 9px 12px;
    border: 1px solid rgba(10, 11, 10, 0.5);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-copy-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    margin-top: 18px;
    padding: 10px 14px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    transition: transform 180ms ease;
}

.project-copy-link:hover,
.project-copy-link:focus-visible {
    outline: none;
    transform: translateY(-3px);
}

.project-copy-link svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.project-browser-nadira {
    align-self: end;
    height: 350px;
    border-radius: 24px 24px 0 0;
    border-bottom: 0;
    box-shadow: 12px 0 0 rgba(10, 11, 10, 0.18);
    transform: rotate(1.4deg) translateY(3px);
}

.clients-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: center;
    gap: 35px;
    width: min(100%, var(--container));
    margin: 50px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.clients-strip > p {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.clients-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 58px;
    width: max-content;
    animation: clients-scroll 34s linear infinite;
}

.clients-group {
    display: flex;
    align-items: center;
    gap: 58px;
    flex: none;
}

.client-logo {
    display: grid;
    place-items: center;
    flex: none;
    width: 180px;
    height: 76px;
    padding: 0;
    opacity: 0.78;
    transition: transform 180ms ease, opacity 180ms ease;
}

.client-logo:hover,
.client-logo:focus-visible {
    outline: none;
    transform: translateY(-3px);
    opacity: 1;
}

.client-logo img {
    width: auto;
    max-width: 82px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.client-logo-wide img {
    width: 164px;
    max-width: 164px;
    max-height: none;
}

@keyframes clients-scroll {
    to { transform: translateX(calc(-50% - 29px)); }
}

.section-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: min(100%, var(--container));
    margin: 46px auto 0;
    padding: 30px 34px;
    border: 2px solid var(--white);
    border-radius: 28px;
    background: var(--accent);
    color: var(--ink);
}

.section-cta > div:first-child > span {
    display: block;
    margin-bottom: 9px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section-cta h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(27px, 2.8vw, 43px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.section-cta-action {
    display: flex;
    align-items: center;
    gap: 24px;
}

.section-cta-action p {
    max-width: 230px;
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.section-cta-action a {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex: none;
    min-height: 52px;
    padding: 10px 12px 10px 20px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.section-cta-action a:hover,
.section-cta-action a:focus-visible {
    outline: none;
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 var(--green);
}

.section-cta-action svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.process-section {
    position: relative;
    contain: paint;
    padding: 105px clamp(32px, 4vw, 68px) 70px;
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
}

.process-section::before {
    position: absolute;
    top: 180px;
    left: -95px;
    width: 260px;
    height: 260px;
    content: "";
    border: 1px solid rgba(10, 11, 10, 0.12);
    border-radius: 50%;
}

.process-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
    align-items: end;
    gap: 75px;
    width: min(100%, var(--container));
    margin: 0 auto 52px;
}

.process-section .section-index {
    color: var(--green-dark);
}

.process-section .section-index span {
    border-color: rgba(16, 166, 106, 0.65);
}

.process-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(62px, 6vw, 94px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: clamp(-4px, -0.3vw, -2.5px);
}

.process-intro h2 span {
    color: var(--green);
}

.process-lead {
    padding-bottom: 8px;
}

.process-lead strong {
    display: block;
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.7px;
}

.process-lead p {
    max-width: 475px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.process-journey {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    height: 580px;
    margin: 0 auto;
}

.process-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.process-path-outline,
.process-path-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-path-outline {
    stroke: var(--ink);
    stroke-width: 34;
    opacity: 0.16;
}

.process-path-line {
    stroke: var(--green);
    stroke-width: 21;
    stroke-dasharray: 2200;
    stroke-dashoffset: 0;
    transition: none;
}

.process-node {
    fill: var(--accent);
    stroke: var(--ink);
    stroke-width: 5;
    opacity: 1;
    transform: scale(1);
    transform-box: fill-box;
    transform-origin: center;
    transition: none;
}

.process-card {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(390px, 31%);
    height: 230px;
    padding: 21px;
    border: 2px solid var(--ink);
    border-radius: 25px;
    opacity: 1;
    transform: none;
    box-shadow: 7px 8px 0 rgba(10, 11, 10, 0.12);
    transition: box-shadow 180ms ease, translate 180ms ease;
}

.process-card:hover {
    translate: 0 -5px;
    box-shadow: 9px 12px 0 rgba(10, 11, 10, 0.16);
}

.process-card-one {
    top: 0;
    left: 2.5%;
    background: var(--white);
}

.process-card-two {
    top: 175px;
    right: 2.5%;
    background: var(--green);
}

.process-card-three {
    top: 350px;
    left: 29%;
    background: var(--accent);
}

.step-flag {
    position: absolute;
    top: -26px;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    height: 44px;
}

.process-card-one .step-flag,
.process-card-three .step-flag {
    right: 22px;
}

.process-card-two .step-flag {
    left: 22px;
}

.step-flag i {
    width: 3px;
    height: 44px;
    border-radius: 999px;
    background: var(--ink);
}

.step-flag span {
    display: block;
    min-width: 74px;
    padding: 8px 16px 8px 11px;
    clip-path: polygon(0 0, 100% 0, 86% 50%, 100% 100%, 0 100%);
    background: var(--ink);
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transform-origin: left center;
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.process-card-top > span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--ink);
    color: var(--accent);
}

.process-icon svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.process-card h3 {
    margin: 0 0 9px;
    font-family: var(--display);
    font-size: clamp(20px, 1.7vw, 27px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.2px;
}

.process-card > p {
    max-width: 390px;
    margin: 0 0 13px;
    font-size: 12px;
    line-height: 1.5;
}

.process-time {
    align-self: flex-start;
    margin-top: auto;
    padding: 6px 9px;
    border: 1px solid rgba(10, 11, 10, 0.55);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.process-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: min(100%, var(--container));
    margin: 34px auto 0;
    padding: 28px 32px;
    border: 2px solid var(--ink);
    border-radius: 28px;
    background: var(--ink);
    color: var(--white);
}

.process-cta > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.process-cta h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(26px, 2.6vw, 40px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.process-cta-action {
    display: flex;
    align-items: center;
    gap: 23px;
}

.process-cta-action p {
    max-width: 210px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.5;
}

.process-cta-action a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: none;
    min-height: 50px;
    padding: 10px 13px 10px 20px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-cta-action a:hover,
.process-cta-action a:focus-visible {
    outline: none;
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 var(--green);
}

.process-cta-action svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.pricing-section {
    position: relative;
    padding: 105px clamp(32px, 4vw, 68px) 72px;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    background: var(--sage);
    color: var(--ink);
}

.pricing-section::before {
    position: absolute;
    top: -170px;
    right: -70px;
    width: 430px;
    height: 430px;
    content: "";
    border: 1px solid rgba(10, 11, 10, 0.16);
    border-radius: 50%;
}

.pricing-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    align-items: end;
    gap: 75px;
    width: min(100%, var(--container));
    margin: 0 auto 62px;
}

.pricing-section .section-index {
    color: var(--green-dark);
}

.pricing-section .section-index span {
    border-color: rgba(8, 120, 75, 0.55);
}

.pricing-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(58px, 5.6vw, 88px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: clamp(-4px, -0.3vw, -2.5px);
}

.pricing-intro h2 span {
    color: var(--green-dark);
}

.pricing-lead {
    padding-bottom: 7px;
}

.pricing-lead strong {
    display: block;
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.7px;
}

.pricing-lead p {
    max-width: 470px;
    margin: 0;
    color: #47514b;
    font-size: 15px;
    line-height: 1.7;
}

.pricing-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
    width: min(100%, var(--container));
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 625px;
    padding: 27px;
    border: 2px solid var(--ink);
    border-radius: 30px;
    box-shadow: 8px 9px 0 rgba(10, 11, 10, 0.14);
}

.pricing-essential {
    background: var(--paper);
}

.pricing-featured {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-18px);
    box-shadow: 8px 10px 0 var(--green);
}

.pricing-company {
    background: var(--green);
}

.pricing-badge {
    position: absolute;
    top: -17px;
    left: 50%;
    min-width: 210px;
    padding: 10px 16px;
    transform: translateX(-50%);
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.pricing-card header > span {
    display: block;
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pricing-card header h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.3px;
}

.pricing-card header p {
    min-height: 50px;
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.pricing-featured header p {
    color: rgba(255, 255, 255, 0.62);
}

.pricing-company header p {
    color: rgba(10, 11, 10, 0.62);
}

.pricing-price {
    position: relative;
    display: flex;
    align-items: baseline;
    margin: 26px 0 25px;
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(10, 11, 10, 0.25);
}

.pricing-featured .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.pricing-price > span {
    align-self: flex-start;
    margin-top: 8px;
    font-family: var(--display);
    font-size: 27px;
}

.pricing-price strong {
    font-family: var(--display);
    font-size: clamp(43px, 3.6vw, 58px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2.8px;
}

.pricing-price small {
    margin-left: 8px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.pricing-price del {
    position: absolute;
    top: -15px;
    right: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 700;
}

.pricing-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    position: relative;
    display: block;
    padding-left: 16px;
    font-size: 12.5px;
    line-height: 1.5;
}

.pricing-card li > span {
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.pricing-featured li > span {
    background: var(--accent);
}

.pricing-company li > span {
    background: var(--ink);
}

.pricing-card footer {
    display: grid;
    gap: 11px;
    margin-top: auto;
    padding-top: 27px;
}

.pricing-card footer a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 51px;
    padding: 10px 12px 10px 18px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-featured footer a {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
}

.pricing-card footer a:hover,
.pricing-card footer a:focus-visible {
    outline: none;
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 var(--green-dark);
}

.pricing-card footer svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.pricing-card footer small {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.pricing-includes {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    width: min(100%, var(--container));
    margin: 42px auto 0;
    padding: 18px 24px;
    border: 1px solid rgba(10, 11, 10, 0.35);
    border-radius: 999px;
    font-size: 10px;
}

.pricing-includes strong {
    margin-right: 12px;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 400;
}

.pricing-includes i {
    color: var(--green-dark);
    font-style: normal;
}

.faq-section {
    position: relative;
    padding: 105px clamp(32px, 4vw, 68px) 90px;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    background: var(--ink);
    color: var(--white);
}

.faq-section::before {
    position: absolute;
    right: -45px;
    bottom: -190px;
    content: "?";
    color: var(--white);
    font-family: var(--display);
    font-size: 620px;
    line-height: 1;
    opacity: 0.025;
}

.faq-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.75fr) minmax(580px, 1.25fr);
    gap: clamp(65px, 8vw, 125px);
    width: min(100%, var(--container));
    margin: 0 auto;
}

.faq-section .section-index {
    color: var(--accent);
}

.faq-section .section-index span {
    border-color: rgba(220, 255, 114, 0.62);
}

.faq-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(57px, 5.5vw, 86px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: clamp(-4px, -0.3vw, -2.5px);
}

.faq-intro h2 span {
    color: var(--accent);
}

.faq-description {
    max-width: 420px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.7;
}

.faq-contact {
    max-width: 440px;
    margin-top: 48px;
    padding: 25px;
    border: 2px solid var(--white);
    border-radius: 26px;
    background: var(--accent);
    color: var(--ink);
    box-shadow: 8px 9px 0 var(--green);
}

.faq-contact > span {
    display: block;
    margin-bottom: 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.faq-contact h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 31px;
    font-weight: 400;
    letter-spacing: -1.2px;
}

.faq-contact p {
    margin: 9px 0 22px;
    font-size: 12px;
    line-height: 1.5;
}

.faq-contact a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 10px 12px 10px 18px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq-contact a:hover,
.faq-contact a:focus-visible {
    outline: none;
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 var(--green-dark);
}

.faq-contact svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.faq-list {
    align-self: center;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.faq-list details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    transition: background-color 200ms ease;
}

.faq-list details[open] {
    background: rgba(255, 255, 255, 0.045);
}

.faq-list summary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 19px;
    padding: 26px 18px;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    font-weight: 800;
}

.faq-list summary h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(19px, 1.65vw, 27px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -1px;
}

.faq-list details[open] summary h3 {
    color: var(--accent);
}

.faq-list summary i {
    position: relative;
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    transition: background-color 180ms ease, transform 240ms ease;
}

.faq-list summary i::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    content: "";
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translate(-50%, -65%) rotate(45deg);
    transition: transform 240ms ease;
}

.faq-list details[open] summary i {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
}

.faq-list details[open] summary i::before {
    transform: translate(-50%, -35%) rotate(225deg);
}

.faq-list summary:hover i {
    border-color: var(--accent);
}

.faq-answer {
    display: block;
    height: 0;
    max-width: 700px;
    padding: 0 80px 0 75px;
    overflow: hidden;
    opacity: 0;
}

.faq-list details[open] .faq-answer {
    height: auto;
    padding-bottom: 28px;
    opacity: 1;
}

.faq-answer p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
}

.final-cta {
    position: relative;
    padding: 54px clamp(32px, 4vw, 68px) 48px;
    overflow: hidden;
    border-top: 2px solid var(--ink);
    background: var(--accent);
    color: var(--ink);
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    content: "";
    border: 2px solid rgba(10, 11, 10, 0.14);
    border-radius: 50%;
}

.final-cta::before {
    top: -270px;
    right: -110px;
    width: 580px;
    height: 580px;
}

.final-cta::after {
    top: -205px;
    right: -45px;
    width: 450px;
    height: 450px;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    margin: 0 auto;
}

.final-cta .section-index {
    color: var(--green-dark);
}

.final-cta .section-index span {
    border-color: rgba(8, 120, 75, 0.55);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 48px;
}

.final-cta h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(50px, 4.8vw, 76px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: clamp(-4px, -0.3vw, -2.5px);
    white-space: nowrap;
}

.final-cta h2 span {
    color: var(--green-dark);
}

.final-cta-action {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.final-cta-action > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    padding: 7px 8px 7px 24px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--accent);
    font-size: 15px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.final-cta-action > a:hover,
.final-cta-action > a:focus-visible {
    outline: none;
    transform: translate(-4px, -4px);
    box-shadow: 5px 5px 0 var(--green);
}

.final-cta-action > a i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
}

.final-cta-action svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.final-cta-action small {
    margin: 10px auto 0;
    font-size: 9px;
    font-weight: 700;
}

.final-cta-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(10, 11, 10, 0.3);
    font-size: 11px;
}

.final-cta-note strong {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 400;
}

.site-footer {
    padding: 30px clamp(32px, 4vw, 68px) 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 58px;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-bottom: 25px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--display);
    font-size: 21px;
    line-height: 1;
    letter-spacing: -1px;
}

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

.footer-brand > span > span {
    color: var(--green);
}

.footer-brand-block > p {
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.footer-nav,
.footer-contact-links {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

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

.footer-nav > span,
.footer-contact-links > span {
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-nav a,
.footer-contact-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 600;
    transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact-links a:hover,
.footer-contact-links a:focus-visible {
    outline: none;
    color: var(--accent);
}

.footer-contact-links a i {
    margin-left: 5px;
    color: var(--accent);
    font-style: normal;
}

.footer-promise {
    align-self: start;
    justify-self: end;
    text-align: right;
}

.footer-promise span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-promise strong {
    display: block;
    max-width: 290px;
    margin-top: 7px;
    color: var(--accent);
    font-family: var(--display);
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1.8px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding-top: 15px;
    padding-right: 76px;
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    color: rgba(255, 255, 255, 0.47);
    font-size: 9px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    outline: none;
    color: var(--accent);
}

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 18px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    min-width: 0;
    padding: 6px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    box-shadow: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
    outline: none;
    transform: scale(1.06);
    box-shadow: none;
}

.whatsapp-fab > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
}

.whatsapp-fab svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.next-section {
    display: grid;
    place-content: center;
    min-height: 38vh;
    padding: 70px 24px;
    border-top: 2px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    text-align: center;
}

.next-section span {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.next-section p {
    max-width: 850px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(28px, 4.5vw, 64px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.js .reveal-item,
.js .reveal-visual {
    opacity: 0;
}

.js .reveal-item {
    transform: translateY(24px);
}

.js .reveal-visual {
    transform: translateY(35px) rotate(1deg);
}

.js .process-path-line {
    stroke-dashoffset: 2200;
}

.js .process-node {
    opacity: 0;
    transform: scale(0);
}

.js .process-card {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
}

html:not(.js) .menu-button {
    display: none;
}

body.is-ready .reveal-item,
body.is-ready .reveal-visual {
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

body.is-ready .hero-copy .reveal-item:nth-child(2) { transition-delay: 80ms; }
body.is-ready .hero-copy .reveal-item:nth-child(3) { transition-delay: 160ms; }
body.is-ready .hero-copy .reveal-item:nth-child(4) { transition-delay: 240ms; }
body.is-ready .hero-copy .reveal-item:nth-child(5) { transition-delay: 320ms; }
body.is-ready .reveal-visual { transition-delay: 180ms; }
body.is-ready .hero-footer { transition-delay: 420ms; }

@media (max-width: 1279px) {
    .hero-grid {
        grid-template-columns: minmax(400px, 0.9fr) minmax(500px, 1.1fr);
        gap: 45px;
    }

    .hero h1 {
        font-size: clamp(62px, 6.5vw, 88px);
    }

    .hero-showcase {
        min-height: 570px;
    }

    .desktop-nav a {
        padding-inline: 11px;
        font-size: 12px;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-button {
        display: block;
        justify-self: end;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        min-height: 0;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero h1 {
        font-size: clamp(60px, 9vw, 82px);
    }

    .hero-description {
        max-width: 650px;
    }

    .hero-showcase {
        width: min(100%, 760px);
        min-height: 620px;
        margin: 0 auto;
    }

    .hero-footer {
        margin-top: 55px;
    }

    .projects-section,
    .process-section,
    .pricing-section,
    .faq-section {
        padding-inline: 28px;
    }

    .projects-intro,
    .process-intro,
    .pricing-intro,
    .faq-shell {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-lead,
    .process-lead,
    .pricing-lead {
        max-width: 650px;
        padding-bottom: 0;
    }

    .projects-grid {
        gap: 20px;
    }

    .project-card-wide,
    .project-card-narrow {
        grid-column: span 6;
        height: 460px;
    }

    .project-card-full {
        grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
        gap: 25px;
    }

    .section-cta,
    .process-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .section-cta-action,
    .process-cta-action {
        justify-content: space-between;
        width: 100%;
    }

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

    .pricing-company {
        grid-column: 1 / -1;
    }

    .faq-shell {
        max-width: 780px;
    }

    .faq-intro {
        max-width: 600px;
    }

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

    .footer-contact-links {
        justify-self: end;
    }

    .footer-nav {
        display: none;
    }

    .secondary-cta,
    .project-card-meta > a,
    .project-copy-link,
    .footer-brand,
    .footer-contact-links a,
    .footer-bottom a {
        min-height: 44px;
    }

    .project-label a,
    .project-card-meta > .project-icon-link {
        width: 44px;
        height: 44px;
    }

    .footer-contact-links a,
    .footer-bottom a {
        display: inline-flex;
        align-items: center;
    }

    .footer-bottom a {
        justify-content: center;
        min-width: 44px;
    }
}

@media (max-width: 900px) {
    .process-journey {
        display: grid;
        gap: 18px;
        height: auto;
    }

    .process-path,
    .step-flag {
        display: none;
    }

    .process-card,
    .process-card-one,
    .process-card-two,
    .process-card-three {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 212px;
        opacity: 1 !important;
        transform: none !important;
        translate: none;
    }

    .process-card::before {
        position: absolute;
        top: 31px;
        right: 78px;
        color: rgba(10, 11, 10, 0.44);
        content: "";
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .process-card-one::before { content: "01"; }
    .process-card-two::before { content: "02"; }
    .process-card-three::before { content: "03"; }
}

@media (max-width: 640px) {
    .site-header {
        padding: 12px 16px 0;
    }

    .header-inner {
        min-height: 64px;
        padding-bottom: 10px;
    }

    .brand {
        gap: 8px;
        font-size: 20px;
        letter-spacing: -0.7px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .menu-button {
        width: 44px;
        height: 44px;
    }

    .mobile-menu {
        padding: 105px 18px 22px;
    }

    .mobile-menu-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .mobile-menu-footer a {
        text-align: center;
    }

    .hero {
        padding: 118px 16px 20px;
    }

    .hero::before {
        display: none;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(50px, 14.4vw, 70px);
        line-height: 0.98;
        letter-spacing: -2.7px;
    }

    .title-accent svg {
        bottom: -6px;
        height: 15px;
        stroke-width: 9;
    }

    .hero-description {
        margin-top: 27px;
        font-size: 15px;
        line-height: 1.62;
    }

    .hero-description strong {
        white-space: normal;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
        margin-top: 24px;
    }

    .primary-cta {
        justify-content: space-between;
        min-height: 58px;
        padding-left: 22px;
    }

    .primary-cta > span {
        width: 42px;
        height: 42px;
    }

    .secondary-cta {
        align-self: flex-start;
        margin-left: 4px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        font-size: 10px;
    }

    .hero-trust li:last-child {
        grid-column: 1 / -1;
    }

    .hero-showcase {
        min-height: 385px;
    }

    .shape-green {
        top: 5%;
        right: -7%;
        width: 91%;
        height: 77%;
        border-radius: 42% 58% 49% 51% / 53% 46% 54% 47%;
        box-shadow: 7px 8px 0 var(--ink);
    }

    .shape-grid {
        right: -17%;
        width: 160px;
        height: 110px;
        background-size: 14px 14px;
    }

    .browser-card {
        top: 15%;
        right: -2%;
        width: 96%;
        border-radius: 15px;
        box-shadow: 8px 9px 0 rgba(10, 11, 10, 0.23);
    }

    .browser-bar {
        grid-template-columns: auto 1fr;
        min-height: 35px;
        padding: 6px 8px;
        border-bottom-width: 1.5px;
    }

    .browser-dots {
        gap: 4px;
    }

    .browser-dots span {
        width: 6px;
        height: 6px;
    }

    .browser-url {
        justify-self: end;
        min-width: 0;
        padding: 5px 9px;
        font-size: 7px;
    }

    .browser-live {
        display: none;
    }

    .phone-card {
        bottom: 1%;
        left: 1%;
        width: 96px;
        padding: 6px;
        border-radius: 20px;
        box-shadow: 6px 7px 0 var(--accent);
    }

    .phone-screen {
        border-radius: 14px;
    }

    .phone-speaker {
        top: 9px;
        height: 9px;
    }

    .launch-sticker {
        top: -3%;
        right: -4%;
        width: 82px;
        height: 82px;
        box-shadow: 4px 5px 0 var(--ink);
    }

    .launch-sticker span {
        font-size: 7px;
    }

    .launch-sticker strong {
        font-size: 16px;
        letter-spacing: -0.6px;
    }

    .launch-sticker svg {
        right: 8px;
        bottom: 8px;
        width: 13px;
    }

    .project-label {
        right: 1%;
        bottom: 0;
        width: 190px;
        padding: 10px 10px 10px 12px;
        border-radius: 12px;
        box-shadow: 4px 5px 0 rgba(10, 11, 10, 0.2);
    }

    .project-label span {
        font-size: 7px;
    }

    .project-label strong {
        font-size: 10px;
    }

    .project-label a {
        width: 30px;
        height: 30px;
    }

    .project-label svg {
        width: 15px;
    }

    .hero-footer {
        gap: 12px;
        margin-top: 38px;
    }

    .hero-footer p:first-child {
        max-width: 130px;
    }

    .scroll-note {
        display: none;
    }

    html {
        scroll-padding-top: 82px;
    }

    .mobile-menu {
        padding-top: calc(98px + env(safe-area-inset-top));
        padding-bottom: calc(22px + env(safe-area-inset-bottom));
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .mobile-menu nav a,
    .mobile-menu-footer a {
        min-height: 48px;
    }

    .brand {
        min-height: 44px;
    }

    .mobile-menu nav a:focus-visible,
    .mobile-menu-footer a:focus-visible,
    .menu-button:focus-visible,
    .faq-list summary:focus-visible {
        outline: 3px solid var(--accent);
        outline-offset: 3px;
    }

    .hero {
        padding-top: calc(108px + env(safe-area-inset-top));
        padding-bottom: 54px;
    }

    .hero-grid {
        gap: 32px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 56px);
        letter-spacing: -2.2px;
    }

    .hero-description {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.58;
    }

    .secondary-cta {
        min-height: 44px;
        margin-left: 0;
        padding-inline: 4px;
    }

    .hero-trust {
        gap: 11px 8px;
        margin-top: 22px;
        font-size: 10.5px;
    }

    .hero-showcase {
        min-height: 310px;
    }

    .shape-green {
        top: 7%;
        right: -9%;
        width: 92%;
        height: 70%;
        box-shadow: 5px 6px 0 var(--ink);
    }

    .browser-card {
        top: 13%;
        right: 0;
        width: 100%;
        transform: rotate(0.8deg);
    }

    .browser-bar {
        min-height: 31px;
    }

    .browser-url {
        font-size: 7.5px;
    }

    .phone-card,
    .project-label > span {
        display: none;
    }

    .launch-sticker {
        top: -2%;
        right: 0;
        width: 74px;
        height: 74px;
    }

    .project-label {
        right: 0;
        bottom: 3px;
        width: min(205px, 70%);
        min-height: 54px;
        padding: 7px 7px 7px 12px;
    }

    .project-label strong {
        font-size: 11px;
    }

    .project-label a {
        width: 44px;
        height: 44px;
    }

    .hero-footer {
        display: none;
    }

    .projects-section,
    .process-section,
    .pricing-section,
    .faq-section {
        padding: 68px 16px 56px;
    }

    .projects-section::before,
    .pricing-section::before {
        width: 260px;
        height: 260px;
    }

    .section-index {
        gap: 10px;
        margin-bottom: 20px;
        font-size: 10px;
    }

    .section-index span {
        width: 32px;
        height: 32px;
    }

    .projects-intro,
    .process-intro,
    .pricing-intro {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 36px;
    }

    .projects-intro h2,
    .process-intro h2,
    .pricing-intro h2,
    .faq-intro h2 {
        font-size: clamp(38px, 11.5vw, 49px);
        line-height: 1.02;
        letter-spacing: -2px;
    }

    .projects-lead,
    .process-lead,
    .pricing-lead {
        padding-bottom: 0;
    }

    .projects-lead p,
    .process-lead p,
    .pricing-lead p,
    .faq-description {
        font-size: 14px;
        line-height: 1.62;
    }

    .projects-count {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-card,
    .project-card-wide,
    .project-card-narrow,
    .project-card-full {
        grid-column: 1;
        width: 100%;
        height: auto;
        min-height: 0;
        border-radius: 22px;
    }

    .project-card-wide,
    .project-card-narrow {
        min-height: 350px;
        padding: 16px;
    }

    .project-card-meta {
        gap: 12px;
        margin-bottom: 15px;
    }

    .project-card-meta span,
    .project-card-copy > span {
        margin-bottom: 7px;
        font-size: 8px;
    }

    .project-card h3 {
        font-size: clamp(25px, 8.5vw, 34px);
        letter-spacing: -1.3px;
    }

    .project-card-meta > a,
    .project-card-meta > .project-icon-link,
    .project-copy-link {
        min-width: 44px;
        min-height: 44px;
    }

    .project-card-meta > a {
        padding: 8px 10px 8px 14px;
    }

    .project-browser {
        flex: none;
        height: 225px;
        border-radius: 17px;
        box-shadow: 5px 6px 0 rgba(10, 11, 10, 0.16);
        transform: none;
    }

    .project-browser-bar {
        min-height: 30px;
        padding: 6px 9px;
    }

    .project-browser-bar p {
        max-width: 56%;
        overflow: hidden;
        font-size: 7px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .project-browser > picture {
        height: calc(100% - 30px);
    }

    .project-card-full {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 22px 18px 0;
    }

    .project-card-copy {
        padding: 0 0 24px;
    }

    .project-card-copy h3 {
        font-size: clamp(36px, 11vw, 46px);
        letter-spacing: -2px;
    }

    .project-card-copy p {
        margin: 14px 0 17px;
        font-size: 13px;
        line-height: 1.58;
    }

    .project-tags {
        gap: 6px;
    }

    .project-tags span {
        padding: 7px 9px;
        font-size: 8px;
    }

    .project-copy-link {
        justify-content: space-between;
        min-width: 126px;
        margin-top: 15px;
    }

    .project-browser-nadira {
        align-self: auto;
        height: 225px;
        border-bottom: 0;
        border-radius: 17px 17px 0 0;
        box-shadow: 6px 0 0 rgba(10, 11, 10, 0.16);
    }

    .clients-strip {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 34px;
        padding: 18px 0;
    }

    .clients-strip > p {
        max-width: none;
        font-size: 11px;
        text-align: center;
    }

    .clients-carousel {
        overflow: visible;
        mask-image: none;
    }

    .clients-track {
        width: 100%;
        animation: none;
    }

    .clients-group:first-child {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .clients-group[aria-hidden="true"],
    .clients-group:first-child > div.client-logo {
        display: none;
    }

    .client-logo {
        width: 100%;
        height: 58px;
        opacity: 1;
    }

    .client-logo img,
    .client-logo-wide img {
        max-width: 74px;
        max-height: 48px;
    }

    .section-cta,
    .process-cta {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
        margin-top: 34px;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .section-cta h3,
    .process-cta h3 {
        font-size: clamp(25px, 8vw, 32px);
        letter-spacing: -1.3px;
    }

    .section-cta-action,
    .process-cta-action {
        display: block;
        width: 100%;
    }

    .section-cta-action p,
    .process-cta-action p {
        display: none;
    }

    .section-cta-action a,
    .process-cta-action a {
        justify-content: space-between;
        width: 100%;
        min-height: 52px;
    }

    .process-section::before {
        display: none;
    }

    .process-lead strong,
    .pricing-lead strong {
        margin-bottom: 9px;
        font-size: 18px;
    }

    .process-journey {
        display: grid;
        gap: 16px;
        height: auto;
    }

    .process-path,
    .step-flag {
        display: none;
    }

    .process-card,
    .process-card-one,
    .process-card-two,
    .process-card-three {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 212px;
        padding: 20px;
        border-radius: 22px;
        opacity: 1 !important;
        box-shadow: 5px 6px 0 rgba(10, 11, 10, 0.12);
        transform: none !important;
        translate: none;
    }

    .process-card::before {
        position: absolute;
        top: 31px;
        right: 78px;
        color: rgba(10, 11, 10, 0.44);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.08em;
    }

    .process-card-one::before { content: "01"; }
    .process-card-two::before { content: "02"; }
    .process-card-three::before { content: "03"; }

    .process-card-top {
        margin-bottom: 14px;
    }

    .process-card h3 {
        font-size: 23px;
    }

    .process-card > p {
        font-size: 12.5px;
        line-height: 1.55;
    }

    .process-cta {
        margin-top: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card,
    .pricing-company {
        grid-column: 1;
        min-height: 0;
        padding: 22px;
        border-radius: 24px;
        box-shadow: 5px 6px 0 rgba(10, 11, 10, 0.13);
    }

    .pricing-featured {
        order: -1;
        margin-top: 14px;
        transform: none;
        box-shadow: 5px 7px 0 var(--green);
    }

    .pricing-badge {
        top: -15px;
        min-width: 190px;
        padding: 8px 13px;
        font-size: 8px;
    }

    .pricing-card header > span {
        margin-bottom: 13px;
    }

    .pricing-card header h3 {
        font-size: 29px;
    }

    .pricing-card header p {
        min-height: 0;
        margin-top: 9px;
    }

    .pricing-price {
        margin: 21px 0 20px;
        padding-bottom: 18px;
    }

    .pricing-price strong {
        font-size: clamp(43px, 14vw, 54px);
    }

    .pricing-card ul {
        gap: 10px;
    }

    .pricing-card li {
        font-size: 12.5px;
    }

    .pricing-card footer {
        padding-top: 23px;
    }

    .pricing-includes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
        margin-top: 30px;
        padding: 18px;
        border-radius: 22px;
        font-size: 10px;
    }

    .pricing-includes strong {
        grid-column: 1 / -1;
        margin: 0 0 4px;
        font-size: 13px;
    }

    .pricing-includes i {
        display: none;
    }

    .faq-section::before {
        right: -20px;
        bottom: -70px;
        font-size: 330px;
    }

    .faq-shell {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .faq-intro {
        display: contents;
    }

    .faq-intro .section-index { order: 0; }
    .faq-intro h2 { order: 1; }
    .faq-description { order: 2; }
    .faq-list { order: 3; }
    .faq-contact { order: 4; }

    .faq-description {
        margin-top: 18px;
    }

    .faq-list {
        width: 100%;
        margin-top: 34px;
    }

    .faq-list summary {
        grid-template-columns: 30px minmax(0, 1fr) 40px;
        gap: 10px;
        min-height: 76px;
        padding: 15px 0;
    }

    .faq-list summary > span {
        width: 28px;
        height: 28px;
        font-size: 8px;
    }

    .faq-list summary h3 {
        font-size: clamp(16px, 5vw, 19px);
        letter-spacing: -0.6px;
    }

    .faq-list summary i {
        width: 40px;
        height: 40px;
    }

    .faq-answer {
        max-width: none;
        padding-right: 0;
        padding-left: 40px;
    }

    .faq-answer p {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .faq-contact {
        width: 100%;
        max-width: none;
        margin-top: 30px;
        padding: 21px;
        border-radius: 22px;
        box-shadow: 5px 6px 0 var(--green);
    }

    .faq-contact h3 {
        font-size: 28px;
    }

    .site-footer {
        padding: 28px 16px calc(20px + env(safe-area-inset-bottom));
    }

    .footer-main {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 19px;
        padding-bottom: 20px;
    }

    .footer-brand {
        min-height: 44px;
    }

    .footer-nav {
        display: none;
    }

    .footer-contact-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        justify-self: auto;
    }

    .footer-contact-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        padding: 0 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        font-size: 11px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-top: 15px;
        padding-right: 68px;
        font-size: 9px;
        line-height: 1.5;
    }

    .footer-bottom > div {
        gap: 12px;
    }

    .footer-bottom a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }

    .whatsapp-fab {
        right: 14px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        width: 54px;
        height: 54px;
    }

    .whatsapp-fab > i {
        width: 38px;
        height: 38px;
    }

    .next-section {
        min-height: 45vh;
        padding-inline: 18px;
    }

    .next-section p {
        letter-spacing: -1.2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal-item,
    .reveal-visual {
        opacity: 1;
        transform: none;
    }
}
