/* ==========================================================================
   OneTic — Sistema de diseño corporativo
   Paleta: navy #142445 · cian #039FCB · offWhite #F4F6FA
   ========================================================================== */

:root {
    /* Color */
    --navy: #142445;
    --navy-deep: #0D1A33;
    --navy-soft: #1D3157;
    --cyan: #039FCB;
    --cyan-dark: #027FA3;
    --cyan-tint: #E3F5FA;
    --off-white: #F4F6FA;
    --white: #FFFFFF;
    --ink: #142445;
    --body: #3A4557;
    --muted: #6B7A8D;
    --line: #DDE3EC;

    /* Type */
    --font-display: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-body: 'Open Sans', 'Segoe UI', Helvetica, Arial, sans-serif;

    /* Shape */
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 2px 8px rgba(20, 36, 69, .06);
    --shadow-md: 0 10px 30px rgba(20, 36, 69, .10);
    --shadow-lg: 0 24px 60px rgba(20, 36, 69, .16);

    /* Layout */
    --container: 1180px;
    --header-h: 72px;
}

/* Base ------------------------------------------------------------------ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    margin: 0;
    text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-dark); text-decoration: none; }

.icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: none;
}

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

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

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.section { padding: 96px 0; }
.section--tinted { background: var(--off-white); }

/* Eyebrow / labels -------------------------------------------------------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan-dark);
}

.eyebrow__dot {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: var(--cyan);
}

.eyebrow--light { color: #7FD6EE; }

.section__header {
    max-width: 640px;
    margin-bottom: 56px;
}

.section__title {
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 14px 0 16px;
}

.section__lead {
    font-size: 1.0625rem;
    color: var(--muted);
}

/* Buttons ----------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: 0;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: .9375rem;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn .icon { width: 19px; height: 19px; }

.btn--primary {
    background: var(--cyan);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(3, 159, 203, .32);
}

.btn--primary:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(3, 159, 203, .4);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .45);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
}

.btn--wide { width: 100%; }

/* Header ------------------------------------------------------------------ */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-bar {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--navy);
}

.brand-name em { font-style: normal; color: var(--cyan); }
.brand-name--light { color: var(--white); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: .9375rem;
    font-weight: 600;
    color: var(--navy);
    transition: background-color .2s ease, color .2s ease;
}

.nav-link:hover { background: var(--cyan-tint); color: var(--cyan-dark); }

.nav-link--cta {
    margin-left: 10px;
    background: var(--navy);
    color: var(--white);
}

.nav-link--cta:hover { background: var(--cyan); color: var(--white); }

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
}

/* Hero -------------------------------------------------------------------- */

.hero {
    position: relative;
    background:
        radial-gradient(900px 480px at 85% -10%, rgba(3, 159, 203, .18), transparent 60%),
        linear-gradient(160deg, var(--navy) 55%, var(--navy-deep) 100%);
    color: var(--white);
    padding: calc(var(--header-h) + 72px) 0 150px;
    overflow: hidden;
}

.hero__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr);
    align-items: center;
    gap: 48px;
}

.hero__title {
    color: var(--white);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin: 20px 0 22px;
}

.hero__highlight {
    position: relative;
    color: #2FC0E8;
    white-space: nowrap;
}

.hero__highlight::after {
    content: "";
    position: absolute;
    left: 2%;
    bottom: .04em;
    width: 96%;
    height: .14em;
    border-radius: 999px;
    background: var(--cyan);
    opacity: .55;
}

.hero__subtitle {
    max-width: 54ch;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .82);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__clients { margin-top: 56px; }

.hero__clients-label {
    display: block;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 12px;
}

.hero__clients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    font-family: var(--font-display);
    font-size: .9375rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .72);
}

/* Hero visual */

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__figure {
    width: min(430px, 100%);
    height: auto;
}

.hero__logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(204px, 44%);
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.hero__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.hero__chip .icon { width: 18px; height: 18px; color: var(--cyan-dark); }

.hero__chip--1 { top: 9%; right: 2%; }
.hero__chip--2 { bottom: 22%; left: -2%; }
.hero__chip--3 { bottom: 2%; right: 8%; }

.hero__wave {
    position: absolute;
    inset: auto 0 -1px;
    line-height: 0;
}

.hero__wave svg { width: 100%; height: 90px; display: block; }

/* Services ---------------------------------------------------------------- */

.services { background: var(--off-white); padding-top: 72px; }

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

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(3, 159, 203, .45);
    box-shadow: var(--shadow-md);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--cyan-tint);
    color: var(--cyan-dark);
}

.service-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

.service-card__desc {
    font-size: .9375rem;
    color: var(--muted);
}

/* Featured card */

.service-card--featured {
    grid-column: span 2;
    position: relative;
    background:
        radial-gradient(480px 260px at 100% 0%, rgba(3, 159, 203, .28), transparent 65%),
        var(--navy);
    border-color: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.service-card--featured::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, .18);
    pointer-events: none;
}

.service-card--featured .service-card__title { color: var(--white); font-size: 1.375rem; }
.service-card--featured .service-card__desc { color: rgba(255, 255, 255, .78); max-width: 56ch; }

.service-card--featured .service-card__icon {
    background: rgba(3, 159, 203, .22);
    color: #4FCBEE;
}

.service-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--cyan);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .71875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9375rem;
    color: #4FCBEE;
}

.service-card__link .icon { width: 18px; height: 18px; transition: transform .2s ease; }
.service-card__link:hover .icon { transform: translateX(4px); }

/* Method ------------------------------------------------------------------ */

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

.method-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.method-step:hover {
    transform: translateY(-5px);
    border-color: rgba(3, 159, 203, .45);
    box-shadow: var(--shadow-md);
}

.method-step__num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan-tint);
    -webkit-text-stroke: 1px rgba(3, 159, 203, .35);
}

.method-step__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--cyan-tint);
    color: var(--cyan-dark);
    margin-bottom: 16px;
}

.method-step__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.method-step__desc {
    font-size: .9rem;
    color: var(--muted);
}

/* Portfolio ---------------------------------------------------------------- */

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

.portfolio-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(3, 159, 203, .45);
    box-shadow: var(--shadow-md);
}

.portfolio-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 22px 20px;
    background:
        radial-gradient(220px 130px at 100% 0%, rgba(3, 159, 203, .3), transparent 70%),
        var(--navy);
    color: var(--white);
}

.portfolio-card__top .icon {
    width: 32px;
    height: 32px;
    color: #4FCBEE;
    stroke-width: 1.6;
}

.tag {
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.portfolio-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px 22px;
    flex: 1;
}

.portfolio-card__title { font-size: 1.125rem; font-weight: 700; }

.portfolio-card__client {
    font-size: .9rem;
    color: var(--muted);
    flex: 1;
}

.portfolio-card__action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 700;
    color: var(--cyan-dark);
}

.portfolio-card__action .icon { width: 17px; height: 17px; transition: transform .2s ease; }
.portfolio-card:hover .portfolio-card__action .icon { transform: translateX(4px); }

/* Contact ------------------------------------------------------------------ */

.contact {
    background:
        radial-gradient(800px 420px at -10% 110%, rgba(3, 159, 203, .16), transparent 60%),
        linear-gradient(200deg, var(--navy) 50%, var(--navy-deep) 100%);
    color: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.contact__title {
    color: var(--white);
    font-size: clamp(1.75rem, 3.2vw, 2.375rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 14px 0 16px;
}

.contact__lead { color: rgba(255, 255, 255, .8); }

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.contact__channels li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__channel-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(3, 159, 203, .18);
    color: #4FCBEE;
    flex: none;
}

.contact__channel-label {
    display: block;
    font-family: var(--font-display);
    font-size: .71875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.contact__channels a,
.contact__channels li > div > span:not(.contact__channel-label) {
    color: var(--white);
    font-weight: 600;
}

.contact__channels a:hover { color: #4FCBEE; }

/* Form */

.contact__form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 32px;
    box-shadow: var(--shadow-lg);
}

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

.form-group { margin-bottom: 18px; }

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--ink);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.form-textarea { resize: vertical; min-height: 110px; }

.form-input::placeholder,
.form-textarea::placeholder { color: #9AA6B5; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--cyan);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(3, 159, 203, .14);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236B7A8D' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

.form-note {
    margin-top: 14px;
    text-align: center;
    font-size: .8125rem;
    color: var(--muted);
}

/* Footer -------------------------------------------------------------------- */

.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .75);
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer__brand .brand-name { font-size: 1.1875rem; }

.footer__copy { font-size: .875rem; }

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

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
    font-weight: 600;
    transition: color .2s ease;
}

.footer__link .icon { width: 17px; height: 17px; color: #4FCBEE; }
.footer__link:hover { color: #4FCBEE; }

/* Modal -------------------------------------------------------------------- */

.modal {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: min(620px, calc(100vw - 32px));
    width: 100%;
    margin: auto;
}

.modal::backdrop {
    background: rgba(13, 26, 51, .6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 34px 30px;
    box-shadow: var(--shadow-lg);
    max-height: min(82vh, 720px);
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}

.modal__close:hover { background: var(--cyan-tint); color: var(--cyan-dark); }
.modal__close .icon { width: 18px; height: 18px; }

.modal__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 44px;
    margin-bottom: 18px;
}

.modal__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--navy);
    color: #4FCBEE;
    flex: none;
}

.modal__icon .icon { width: 28px; height: 28px; }

.modal__label {
    display: block;
    font-family: var(--font-display);
    font-size: .71875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cyan-dark);
    margin-bottom: 3px;
}

.modal__title { font-size: 1.375rem; font-weight: 800; }

.modal__body { color: var(--body); font-size: .96875rem; }
.modal__body p { margin-bottom: 12px; }
.modal__body strong { color: var(--navy); }

.modal__body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 6px 0 12px;
}

.modal__body ul li {
    position: relative;
    padding-left: 24px;
}

.modal__body ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: .5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
}

.modal__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.modal__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--cyan-tint);
    color: var(--cyan-dark);
    font-family: var(--font-display);
    font-size: .84375rem;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease;
}

.modal__link:hover { background: var(--cyan); color: var(--white); }
.modal__link .icon { width: 16px; height: 16px; }

.modal__no-links { font-size: .875rem; color: var(--muted); }

/* Responsive ---------------------------------------------------------------- */

@media (max-width: 1080px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .method-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { max-width: 420px; margin: 12px auto 0; }
    .hero { padding-bottom: 120px; }
    .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
    .section { padding: 68px 0; }

    .nav-toggle { display: inline-flex; }

    .nav-menu {
        position: absolute;
        top: calc(var(--header-h) + 8px);
        right: 16px;
        left: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
    }

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

    .nav-link { display: block; padding: 13px 16px; }
    .nav-link--cta { margin-left: 0; margin-top: 6px; text-align: center; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card--featured { grid-column: span 1; }
    .method-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .hero { padding-top: calc(var(--header-h) + 48px); }
    .hero__chip--2 { left: 0; }
    .hero__chip--3 { right: 0; }

    .contact__form { padding: 26px 20px; }
    .modal__content { padding: 26px 22px; }

    .footer__content {
        flex-direction: column;
        text-align: center;
    }
}
