:root {
    --bg: #f5f8ff;
    --bg-strong: #edf2ff;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --surface-muted: #f3f6fd;
    --ink: #0f1f46;
    --ink-soft: #5f6f96;
    --brand-red: #eb5f50;
    --brand-red-strong: #d94d40;
    --brand-blue: #4f80e5;
    --brand-blue-strong: #3769cc;
    --brand-blue-soft: #e8effd;
    --brand-red-soft: #fdeae7;
    --line: rgba(15, 31, 70, 0.1);
    --line-strong: rgba(28, 0, 255, 0.18);
    --shadow-soft: 0 22px 60px rgba(18, 52, 126, 0.08);
    --shadow-card: 0 16px 36px rgba(18, 52, 126, 0.08);
    --shadow-float: 0 18px 42px rgba(15, 31, 70, 0.14);
    --radius: 8px;
    --radius-pill: 999px;
    --site-width: min(1360px, calc(100vw - 32px));
    --section-space: 112px;
    --ease: 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(28, 0, 255, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 25, 0, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #f3f7ff 45%, #f8fbff 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
        repeating-linear-gradient(90deg, rgba(15, 31, 70, 0.025) 0, rgba(15, 31, 70, 0.025) 1px, transparent 1px, transparent 36px),
        repeating-linear-gradient(180deg, rgba(15, 31, 70, 0.02) 0, rgba(15, 31, 70, 0.02) 1px, transparent 1px, transparent 36px);
    opacity: 0.6;
    z-index: -1;
}

body.is-loading {
    overflow: hidden;
}

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

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

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

button {
    border: 0;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(15, 31, 70, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    padding: 15px 16px;
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background-color var(--ease);
}

input::placeholder,
textarea::placeholder {
    color: #8b98b8;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(28, 0, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(28, 0, 255, 0.12);
}

textarea {
    min-height: 170px;
    resize: vertical;
}

.preloader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.94), rgba(244, 247, 255, 0.98)),
        #f7f9ff;
    z-index: 120;
    transition: opacity 420ms ease, visibility 420ms ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__inner {
    display: inline-grid;
    grid-template-columns: repeat(4, 12px);
    gap: 10px;
}

.preloader__inner span {
    width: 12px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-blue), var(--brand-red));
    animation: preloaderPulse 0.9s ease-in-out infinite;
}

.preloader__inner span:nth-child(2) {
    animation-delay: 120ms;
}

.preloader__inner span:nth-child(3) {
    animation-delay: 240ms;
}

.preloader__inner span:nth-child(4) {
    animation-delay: 360ms;
}

@keyframes preloaderPulse {
    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.45;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(79, 128, 229, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.site-header.is-solid {
    background: rgba(79, 128, 229, 0.99);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 34px rgba(10, 29, 84, 0.24);
    backdrop-filter: blur(16px);
}

.site-header__bar {
    width: var(--site-width);
    min-height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.brand__wordmark {
    width: clamp(140px, 14vw, 176px);
    height: auto;
}

.brand__text {
    display: grid;
    gap: 2px;
    line-height: 1.1;
}

.brand__text strong {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--brand-blue);
}

.brand__text span {
    font-size: 0.84rem;
    color: var(--ink-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    justify-content: center;
    min-width: 0;
}

.site-nav a {
    position: relative;
    padding: 10px 12px;
    border-radius: var(--radius-pill);
    color: #fff;
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color var(--ease), background-color var(--ease), transform var(--ease);
}

.site-header.is-solid .site-nav a {
    color: #fff;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.site-header.is-solid .site-nav a:hover,
.site-header.is-solid .site-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-header__contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
    white-space: nowrap;
}

.site-header__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-header__contact-number,
.site-header__contact-number {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background-color var(--ease), border-color var(--ease), transform var(--ease);
}

.site-header__contact-number:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.26);
    transform: translateY(-1px);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    background: linear-gradient(120deg, var(--brand-red), var(--brand-blue));
    color: #fff;
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.97rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(17, 54, 150, 0.18);
    transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease), filter var(--ease);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(17, 54, 150, 0.22);
    filter: saturate(1.08);
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.button--ghost {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.site-header .button--ghost {
    min-height: 46px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.08);
}

.site-header.is-solid .button--ghost {
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.site-header.is-solid .button--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
}

.button--light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.button--light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero .button--light {
    background: transparent;
    color: var(--brand-blue);
    box-shadow: inset 0 0 0 1px rgba(28, 0, 255, 0.18);
}

.hero .button--light:hover {
    background: rgba(28, 0, 255, 0.08);
}

.button--full {
    width: 100%;
}

.section {
    position: relative;
    scroll-margin-top: 110px;
}

.section__inner {
    width: var(--site-width);
    margin: 0 auto;
    padding: var(--section-space) 0;
}

.section__inner--split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 34px;
    align-items: start;
}

.section__inner--about {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.68fr);
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
    font-family: "Outfit", "Inter", sans-serif;
}

h1,
h2 {
    font-weight: 800;
    line-height: 1.02;
}

h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 5vw, 4.75rem);
}

h2 {
    max-width: 15ch;
    font-size: clamp(1.85rem, 3.2vw, 2.95rem);
}

h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    font-weight: 800;
}

p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.hero {
    min-height: 100svh;
    overflow: clip;
    background:
        linear-gradient(180deg, rgba(247, 249, 255, 0.98), rgba(237, 242, 255, 0.98)),
        #f7f9ff;
}

.hero__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(28, 0, 255, 0.08), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 25, 0, 0.08), transparent 30%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(247, 249, 255, 0) 0%, rgba(247, 249, 255, 0.82) 100%);
}

.hero__grid,
.hero__metrics {
    position: relative;
    z-index: 1;
    width: var(--site-width);
    margin: 0 auto;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 36px;
    align-items: center;
    padding: 154px 0 64px;
}

.hero__content {
    color: var(--ink);
}

.hero__content p {
    color: var(--ink-soft);
}

.hero__lead {
    max-width: 41rem;
    margin-top: 22px;
    font-size: 1.08rem;
}

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

.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero__highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(28, 0, 255, 0.08);
    border: 1px solid rgba(28, 0, 255, 0.12);
    color: var(--brand-blue);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero__visual {
    display: grid;
    gap: 16px;
}

.hero__marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.hero__marquee span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid rgba(15, 31, 70, 0.08);
    color: var(--ink-soft);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: var(--shadow-card);
}

.hero__media-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 31, 70, 0.08);
    box-shadow: 0 28px 60px rgba(18, 52, 126, 0.12);
}

.hero__media-frame img {
    width: 100%;
    aspect-ratio: 6 / 7;
    object-fit: cover;
}

.hero__floating-card {
    position: absolute;
    max-width: 240px;
    padding: 18px 18px 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 31, 70, 0.08);
    box-shadow: var(--shadow-card);
}

.hero__floating-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.hero__floating-card span {
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.hero__floating-card--top {
    top: 22px;
    left: 22px;
}

.hero__floating-card--bottom {
    right: 22px;
    bottom: 22px;
}

.hero__mini-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hero__mini-panels article {
    padding: 18px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(15, 31, 70, 0.08);
    box-shadow: var(--shadow-card);
}

.hero__mini-panels strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.hero__mini-panels span {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 42px;
}

.hero__metrics div {
    position: relative;
    overflow: hidden;
    padding: 24px 22px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 31, 70, 0.08);
    box-shadow: var(--shadow-card);
}

.hero__metrics div::before {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 0, 255, 0.08), transparent 68%);
}

.hero__metrics span {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__metrics strong {
    display: block;
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.45;
    font-weight: 700;
}

.section--warm {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 255, 0.96)),
        var(--bg);
}

.section-copy,
.section-heading,
.feature-band__copy,
.contact-copy {
    display: grid;
    gap: 14px;
}

.section-media {
    position: relative;
}

.section-media img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(28, 0, 255, 0.12);
    box-shadow: var(--shadow-soft);
}

.section-media--about {
    height: clamp(590px, 48vw, 720px);
    width: min(100%, 480px);
    max-width: 480px;
    justify-self: end;
}

.section-media--about img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-copy p + p,
.feature-band__copy p + p {
    margin-top: 0;
}

.feature-band__copy p {
    color: rgba(255, 255, 255, 0.82);
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading p {
    max-width: 45rem;
}

.section--ink {
    background:
        linear-gradient(180deg, rgba(11, 33, 86, 0.98), rgba(7, 20, 56, 0.98)),
        #08173a;
    color: #fff;
}

.section--team {
    background: #091b52;
    color: #fff;
}

.section-heading--team {
    max-width: 650px;
    margin-bottom: 34px;
}

.section-heading--team h2 {
    max-width: 15ch;
    color: #fff;
}

.team-list {
    display: grid;
    gap: 18px;
    width: min(100%, 680px);
}

.team-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 154px;
    padding: 30px 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(6, 18, 56, 0.54);
    transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}

.team-card:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(9, 27, 82, 0.92);
}

.team-card--featured {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
}

.team-card--featured:hover {
    border-color: var(--brand-red);
    background: var(--brand-red);
}

.team-card h3 {
    color: #fff;
    font-size: clamp(1.4rem, 2.1vw, 1.8rem);
}

.team-card p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
}

.team-card__email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    transition: color var(--ease), transform var(--ease);
}

.team-card__email span:first-child {
    font-size: 1.2rem;
    line-height: 1;
}

.team-card__email:hover {
    color: #fff;
    transform: translateX(3px);
}

.feature-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.95fr);
    gap: 32px;
    align-items: center;
}

.feature-band h2 {
    max-width: 13ch;
}

.feature-band__copy .button {
    margin-top: 16px;
    width: fit-content;
}

.feature-band__media {
    position: relative;
}

.feature-band__media::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.feature-band__media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 28px 50px rgba(0, 0, 0, 0.24);
}

.insight-strip,
.service-grid,
.pricing-grid,
.product-grid,
.service-pricing-grid {
    display: grid;
    gap: 18px;
}

.insight-strip {
    grid-template-columns: 1fr;
}

.insight-strip--columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
}

.insight-strip article,
.service-card,
.price-card,
.service-price-card,
.product-card,
.contact-panel,
.domain-search__panel,
.domain-search__results,
.payments-panel {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

.insight-strip article,
.service-card,
.price-card,
.service-price-card,
.product-card,
.domain-search__panel,
.domain-search__results,
.payments-panel,
.contact-panel {
    padding: 28px;
}

.insight-strip article,
.service-card,
.service-price-card,
.product-card {
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.insight-strip article:hover,
.service-card:hover,
.service-price-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--line-strong);
}

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

.service-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 16px;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
    opacity: 0;
    transition: opacity var(--ease);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: fit-content;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: rgba(28, 0, 255, 0.08);
    border: 1px solid rgba(28, 0, 255, 0.14);
    color: var(--brand-blue);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}

.service-card__link:hover {
    transform: translateY(-1px);
    background: rgba(28, 0, 255, 0.12);
    border-color: rgba(28, 0, 255, 0.22);
}

.section--cool {
    background:
        linear-gradient(180deg, rgba(240, 245, 255, 0.96), rgba(250, 252, 255, 1)),
        var(--bg-strong);
}

.website-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.reason-card {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(28, 0, 255, 0.16);
}

.reason-card h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.18rem;
}

.website-brief-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
    gap: 26px;
    align-items: start;
}

.website-brief-copy {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 118px;
}

.website-brief-list {
    padding-left: 18px;
}

.website-brief-panel {
    display: grid;
    gap: 18px;
}

.website-application-form {
    display: grid;
    gap: 20px;
}

.website-application-form__colors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.website-application-form__colors .form-grid__full {
    grid-column: 1 / -1;
}

.website-application-form__colors input[type="color"] {
    min-height: 54px;
    padding: 6px;
    cursor: pointer;
}

.website-pages {
    display: grid;
    gap: 12px;
}

.domain-search {
    display: grid;
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
    gap: 18px;
}

.domain-search__label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--ink);
}

.domain-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.domain-tlds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.domain-tld {
    display: grid;
    gap: 6px;
    align-content: start;
    min-height: 94px;
    border: 1px solid rgba(15, 31, 70, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    text-align: left;
    cursor: pointer;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background-color var(--ease);
}

.domain-tld:hover,
.domain-tld.is-active {
    border-color: rgba(28, 0, 255, 0.42);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 28px rgba(28, 0, 255, 0.1);
    transform: translateY(-2px);
}

.domain-tld strong {
    font-size: 1rem;
    font-weight: 800;
}

.domain-tld span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.domain-result__empty {
    color: var(--ink-soft);
}

.domain-result-list {
    display: grid;
    gap: 12px;
}

.domain-result {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 31, 70, 0.08);
    background: rgba(255, 255, 255, 0.92);
    transition: transform var(--ease), box-shadow var(--ease);
}

.domain-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(15, 31, 70, 0.08);
}

.domain-result strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 800;
}

.domain-result small {
    display: block;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

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

.price-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(210px, 0.92fr) 1px minmax(0, 1.08fr);
    grid-template-rows: auto 1fr auto;
    column-gap: clamp(22px, 3vw, 44px);
    row-gap: 18px;
    min-height: 360px;
    overflow: hidden;
    padding: clamp(28px, 3vw, 42px);
    border-radius: 24px;
    border: 1px solid var(--brand-blue);
    background: #fff;
    box-shadow: none;
    color: var(--ink);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background-color var(--ease);
}

.price-card:nth-child(even) {
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(18, 52, 126, 0.11);
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-red);
    box-shadow: 0 20px 38px rgba(18, 52, 126, 0.14);
}

.price-card::after {
    content: "";
    grid-column: 2;
    grid-row: 1 / -1;
    width: 1px;
    background: rgba(15, 31, 70, 0.12);
}

.price-card__name,
.service-price-card__name {
    color: var(--brand-blue);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price-card__name {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    color: var(--ink);
    font-size: 1.08rem;
    letter-spacing: 0;
    text-transform: none;
}

.price-card__value,
.service-price-card__value {
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    line-height: 0.95;
    font-weight: 800;
    color: var(--ink);
}

.price-card__value {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    color: var(--brand-blue);
    font-size: clamp(2.25rem, 3.8vw, 3.35rem);
    letter-spacing: 0;
    white-space: nowrap;
}

.price-card__value span,
.service-price-card__value span {
    display: block;
    margin-top: 10px;
    font-size: 0.98rem;
    line-height: 1.3;
    color: var(--ink-soft);
    font-weight: 600;
}

.price-card__value span {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.price-card ul {
    grid-column: 3;
    grid-row: 1 / -1;
    align-self: center;
    padding: 0;
    list-style: none;
    color: var(--ink-soft);
}

.price-card li {
    position: relative;
    padding-left: 30px;
    font-size: 0.97rem;
    line-height: 1.45;
}

.price-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-blue);
    font-size: 1.28rem;
    font-weight: 800;
}

.price-card .button {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    background: var(--brand-blue);
    color: #fff;
    box-shadow: none;
}

.price-card .button:hover {
    background: var(--brand-red);
    color: #fff;
    box-shadow: none;
}

.price-card--featured {
    border: 2px solid var(--brand-red);
    background: #fff;
    box-shadow: 0 16px 34px rgba(18, 52, 126, 0.11);
}

.price-card--featured::before {
    content: "Popular";
    position: absolute;
    top: 16px;
    right: 18px;
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-pill);
    background: var(--brand-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-card--featured .price-card__name,
.price-card--featured .price-card__value,
.price-card--featured .price-card__value span,
.price-card--featured li {
    color: inherit;
}

.price-card--featured .price-card__name {
    color: var(--ink);
}

.price-card--featured .price-card__value {
    color: var(--brand-red);
}

.price-card--featured .price-card__value span,
.price-card--featured li {
    color: var(--ink-soft);
}

.price-card--featured .button,
.price-card--featured .button:hover {
    background: var(--brand-red);
    color: #fff;
}

.price-card--featured .button:hover {
    background: var(--brand-blue);
}

ul {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-soft);
}

li + li {
    margin-top: 10px;
}

.service-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.service-price-card {
    display: grid;
    gap: 16px;
}

.service-price-card__action {
    width: fit-content;
}

.payments-panel {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.payment-chips,
.product-card__roles,
.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-chips span,
.product-card__roles span,
.site-footer__links span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(28, 0, 255, 0.08);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.product-grid--catalogue {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.product-card--catalogue {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 570px;
    padding: 42px 40px;
    border: 2px solid var(--brand-blue);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 31, 70, 0.06);
}

.product-card--catalogue:nth-child(even) {
    border-color: var(--brand-red);
}

.product-card--catalogue:hover {
    border-color: var(--brand-red);
}

.product-card--catalogue:nth-child(even):hover {
    border-color: var(--brand-blue);
}

.product-card__header {
    display: grid;
    gap: 22px;
    align-items: start;
}

.product-card__logo {
    width: min(100%, 210px);
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

.product-card__header h3 {
    max-width: 15ch;
    font-size: clamp(1.35rem, 1.7vw, 1.65rem);
    line-height: 1.18;
}

.product-card__tagline {
    margin-top: 8px;
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

.product-card__description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.product-card--catalogue ul {
    display: grid;
    gap: 9px;
    padding: 0;
    list-style: none;
}

.product-card--catalogue li {
    position: relative;
    padding-left: 20px;
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.45;
}

.product-card--catalogue li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-blue);
}

.product-card__roles span {
    min-height: 34px;
    padding: 0 12px;
    background: rgba(28, 0, 255, 0.07);
    color: var(--brand-blue);
    font-size: 0.82rem;
}

.product-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
}

.product-card__demo {
    background: var(--brand-blue);
    color: #fff;
    box-shadow: none;
}

.product-card__demo:hover {
    background: var(--brand-red);
}

.product-card__buy {
    background: var(--brand-red);
    color: #fff;
    box-shadow: none;
}

.product-card__buy:hover {
    background: var(--brand-blue);
}

.section--contact {
    background:
        linear-gradient(180deg, rgba(251, 252, 255, 0.96), rgba(238, 243, 255, 0.98)),
        var(--bg);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: 36px;
    align-items: start;
}

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

.contact-copy h2 {
    max-width: 11ch;
}

.contact-copy__promise {
    margin-top: 4px;
    padding-left: 16px;
    border-left: 3px solid var(--brand-red);
    color: var(--brand-blue);
    font-weight: 700;
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.contact-details a {
    font-weight: 800;
    color: var(--ink);
}

.contact-details__numbers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--brand-red);
    font-weight: 800;
}

.contact-details__numbers a {
    white-space: nowrap;
}

.contact-details__item {
    display: grid;
    gap: 8px;
}

.contact-details__item strong {
    color: var(--ink);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1rem;
}

.contact-details__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-details__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: var(--radius-pill);
    background: rgba(28, 0, 255, 0.08);
    border: 1px solid rgba(28, 0, 255, 0.12);
    color: var(--brand-blue);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform var(--ease), background-color var(--ease), border-color var(--ease);
}

.contact-details__actions a:hover {
    transform: translateY(-1px);
    background: rgba(28, 0, 255, 0.12);
    border-color: rgba(28, 0, 255, 0.2);
}

.contact-panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.98)),
        #fff;
}

.contact-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
}

.flash {
    margin-bottom: 18px;
    padding: 15px 16px;
    border-radius: var(--radius);
    font-weight: 700;
}

.flash--success {
    background: rgba(28, 0, 255, 0.08);
    color: var(--brand-blue);
}

.flash--error {
    background: rgba(255, 25, 0, 0.1);
    color: #9d1020;
}

.flash-actions {
    margin-top: 12px;
    margin-bottom: 18px;
}

.wizard-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.wizard-step {
    min-height: 48px;
    border: 1px solid rgba(15, 31, 70, 0.1);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.wizard-step:hover {
    transform: translateY(-1px);
}

.wizard-step.is-active {
    background: linear-gradient(120deg, rgba(255, 25, 0, 0.92), rgba(28, 0, 255, 0.94));
    color: #fff;
    border-color: transparent;
}

.booking-form,
.wizard-panel {
    display: grid;
}

.wizard-panel {
    display: none;
    gap: 18px;
}

.wizard-panel.is-active {
    display: grid;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-grid__full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

label span {
    font-size: 0.92rem;
}

.wizard-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    position: relative;
    z-index: 45;
}

.wizard-actions--split {
    justify-content: space-between;
}

.interest-layout {
    display: grid;
    gap: 22px;
}

.form-section-title {
    margin-bottom: 12px;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-blue);
}

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

.check-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 31, 70, 0.1);
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background-color var(--ease);
}

.check-card:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 0, 255, 0.28);
    box-shadow: 0 14px 26px rgba(28, 0, 255, 0.08);
}

.check-card.is-selected {
    border-color: rgba(28, 0, 255, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.98));
    box-shadow: 0 16px 28px rgba(28, 0, 255, 0.08);
}

.check-card input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--brand-blue);
}

.check-card span {
    color: var(--ink);
    font-weight: 600;
}

.intent-choice-grid {
    display: grid;
    gap: 12px;
}

.intent-choice {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 31, 70, 0.1);
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background-color var(--ease);
}

.intent-choice:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(15, 31, 70, 0.08);
}

.intent-choice.is-selected {
    border-color: rgba(28, 0, 255, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.98));
    box-shadow: 0 16px 28px rgba(28, 0, 255, 0.08);
}

.intent-choice input {
    width: 18px;
    height: 18px;
    margin: 4px 0 0;
    accent-color: var(--brand-red);
}

.intent-choice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.3;
}

.intent-choice small {
    display: block;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}

.intent-choice:has(input:checked) {
    border-color: rgba(28, 0, 255, 0.26);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 255, 0.98));
    box-shadow: 0 16px 28px rgba(28, 0, 255, 0.08);
}

.domain-form-grid {
    margin-top: 8px;
}

.time-slot-picker {
    display: grid;
    gap: 12px;
}

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

.time-slot {
    display: block;
}

.time-slot input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-slot span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 31, 70, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 800;
    transition: background-color var(--ease), border-color var(--ease), color var(--ease), opacity var(--ease), transform var(--ease);
}

.time-slot:hover span {
    transform: translateY(-2px);
}

.time-slot input:checked + span {
    background: linear-gradient(120deg, var(--brand-red), var(--brand-blue));
    color: #fff;
    border-color: transparent;
}

.time-slot.is-booked span {
    background: rgba(15, 31, 70, 0.05);
    color: rgba(15, 31, 70, 0.45);
    border-style: dashed;
}

.time-slot.is-booked,
.time-slot.is-booked span {
    cursor: not-allowed;
}

.time-slot-note,
.form-note {
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.site-footer {
    position: relative;
    background:
        linear-gradient(180deg, var(--brand-blue), var(--brand-blue-strong)),
        var(--brand-blue);
    color: rgba(255, 255, 255, 0.76);
    padding: 44px 0 24px;
}

.site-footer__inner,
.site-footer__copyright {
    width: var(--site-width);
    margin: 0 auto;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.92fr 0.88fr;
    gap: 26px;
    padding-bottom: 28px;
}

.site-footer__wordmark {
    width: 172px;
    margin-bottom: 16px;
}

.site-footer__title {
    margin-bottom: 14px;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 700;
    transition: background-color var(--ease), transform var(--ease), color var(--ease);
}

.site-footer__links a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    color: #fff;
}

.site-footer__copyright {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    bottom: 24px;
    max-width: 420px;
    display: none;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(15, 31, 70, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-float);
    z-index: 55;
}

.cookie-banner.is-visible {
    display: grid;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 96px;
    width: 62px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
    z-index: 44;
}

.whatsapp-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(37, 211, 102, 0.34);
    filter: saturate(1.06);
}

.whatsapp-fab svg {
    width: 30px;
    height: 30px;
}

.whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 170px;
    width: min(380px, calc(100vw - 28px));
    display: none;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 31, 70, 0.1);
    box-shadow: 0 28px 54px rgba(15, 31, 70, 0.16);
    z-index: 54;
}

.whatsapp-widget.is-visible {
    display: grid;
}

.whatsapp-widget__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.whatsapp-widget__header strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
}

.whatsapp-widget__close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(28, 0, 255, 0.08);
    color: var(--brand-blue);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
}

.whatsapp-widget__numbers {
    display: grid;
    gap: 10px;
}

.whatsapp-choice {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(15, 31, 70, 0.1);
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background-color var(--ease);
}

.whatsapp-choice:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(15, 31, 70, 0.08);
}

.whatsapp-choice input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #25d366;
}

.whatsapp-choice strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-family: "Outfit", "Inter", sans-serif;
    font-size: 0.98rem;
}

.whatsapp-choice small {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.whatsapp-choice:has(input:checked) {
    border-color: rgba(37, 211, 102, 0.34);
    background: rgba(37, 211, 102, 0.08);
    box-shadow: 0 16px 28px rgba(37, 211, 102, 0.12);
}

.whatsapp-widget__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--brand-blue), var(--brand-red));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-float);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    z-index: 42;
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.is-reveal-ready {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.985);
    transition: opacity 720ms cubic-bezier(0.2, 1, 0.22, 1), transform 720ms cubic-bezier(0.2, 1, 0.22, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.is-reveal-ready.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1180px) {
    :root {
        --site-width: min(100vw - 28px, 100%);
        --section-space: 92px;
    }

    .site-header__bar {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 14px 0;
    }

    .site-header__contact,
    .site-header__cta {
        display: none;
    }

    .hero__grid,
    .section__inner--split,
    .insight-strip--columns,
    .website-reasons-grid,
    .website-brief-layout,
    .feature-band,
    .payments-panel,
    .contact-layout,
    .service-grid,
    .pricing-grid--hosting,
    .service-pricing-grid,
    .product-grid--catalogue {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__inner,
    .domain-search {
        grid-template-columns: 1fr;
    }

    .website-brief-copy,
    .contact-copy,
    .site-footer__inner > :first-child,
    .payments-panel > :first-child {
        grid-column: 1 / -1;
    }

    .website-brief-copy,
    .contact-copy {
        position: static;
    }

    .price-card--featured {
        transform: none;
    }
}

@media (max-width: 900px) {
    h1 {
        font-size: clamp(2.5rem, 10vw, 3.8rem);
    }

    h2 {
        font-size: clamp(1.7rem, 7vw, 2.5rem);
    }

    .hero__grid,
    .hero__metrics,
    .hero__mini-panels,
    .website-reasons-grid,
    .website-brief-layout,
    .website-application-form__colors,
    .service-grid,
    .pricing-grid--hosting,
    .service-pricing-grid,
    .product-grid--catalogue,
    .form-grid,
    .check-grid,
    .time-slot-grid,
    .product-card__actions {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        padding-top: 138px;
    }

    .hero__metrics {
        padding-bottom: 28px;
    }

    .hero__floating-card {
        position: static;
        max-width: none;
        margin: 12px;
    }
}

@media (max-width: 760px) {
    :root {
        --site-width: min(100vw - 20px, 100%);
        --section-space: 76px;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        white-space: nowrap;
    }

    .section__inner--about,
    .insight-strip--columns {
        grid-template-columns: 1fr;
    }

    .section-media--about {
        height: auto;
        width: min(100%, 460px);
        aspect-ratio: 2 / 3;
        justify-self: start;
    }

    .team-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        min-height: 0;
        padding: 28px;
    }

    .price-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: 0;
        gap: 20px;
    }

    .price-card::after {
        display: none;
    }

    .price-card__name,
    .price-card__value,
    .price-card ul,
    .price-card .button {
        grid-column: 1;
        grid-row: auto;
    }

    .price-card__value {
        justify-self: start;
    }

    .price-card ul {
        align-self: start;
    }

    .hero {
        min-height: 92svh;
    }

    .hero__grid {
        padding: 126px 0 42px;
    }

    .hero__lead {
        font-size: 1rem;
    }

    .button,
    .button--ghost,
    .button--light,
    .service-price-card__action {
        width: 100%;
    }

    .hero__actions,
    .cookie-banner__actions,
    .whatsapp-widget__actions,
    .wizard-actions,
    .wizard-actions--split {
        flex-direction: column;
    }

    .wizard-steps {
        grid-template-columns: 1fr;
    }

    .domain-search__row,
    .domain-result,
    .hero__mini-panels,
    .payments-panel,
    .product-card__actions {
        grid-template-columns: 1fr;
    }

    .insight-strip article,
    .service-card,
    .price-card,
    .service-price-card,
    .product-card,
    .contact-panel,
    .domain-search__panel,
    .domain-search__results,
    .payments-panel {
        padding: 22px;
    }

    .site-footer__inner {
        gap: 22px;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .whatsapp-fab {
        right: 14px;
        bottom: 82px;
        width: 58px;
    }

    .whatsapp-widget {
        right: 14px;
        left: 14px;
        bottom: 150px;
        width: auto;
    }

    .to-top {
        right: 14px;
        bottom: 14px;
        width: 52px;
    }
}

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

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

    .is-reveal-ready {
        opacity: 1;
        transform: none;
    }
}
