:root {
    --zuno-blue: #0d43ba;
    --zuno-blue-bright: #1e63f3;
    --zuno-blue-soft: #e9f0ff;
    --zuno-ink: #07090d;
    --zuno-dark: #0c1017;
    --zuno-card: #121722;
    --zuno-line: rgba(255, 255, 255, 0.1);
    --zuno-white: #ffffff;
    --zuno-muted: #9ca5b4;
    --zuno-light-bg: #f4f6fa;
    --zuno-light-text: #111722;
    --zuno-radius: 24px;
    --zuno-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.zuno-landing-page {
    margin: 0;
    overflow-x: hidden;
    background: var(--zuno-ink);
    color: var(--zuno-white);
    font-family: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.zuno-landing-page.admin-bar .zuno-header {
    top: 48px;
}

.zuno-landing-page a {
    color: inherit;
    text-decoration: none;
}

.zuno-landing-page img {
    display: block;
    max-width: 100%;
}

.zuno-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.zuno-header {
    position: fixed;
    z-index: 90;
    top: 18px;
    right: 0;
    left: 0;
}

.zuno-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 72px;
    padding: 0 16px 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(7, 9, 13, 0.86);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.zuno-brand {
    display: inline-flex;
    align-items: baseline;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1.4px;
}

.zuno-brand i {
    color: var(--zuno-blue-bright);
    font-style: normal;
}

.zuno-brand small {
    margin-left: 1px;
    color: #c5cbd5;
    font-size: 20px;
    font-weight: 400;
}

.zuno-nav-links {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.zuno-nav-links a {
    color: #aeb6c3;
    font-size: 13px;
    font-weight: 650;
    transition: color 180ms ease;
}

.zuno-nav-links a:hover {
    color: #fff;
}

.zuno-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.zuno-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border: 0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.zuno-button-small {
    min-height: 46px;
    padding: 0 18px;
    background: var(--zuno-blue-bright);
    box-shadow: 0 12px 30px rgba(13, 67, 186, 0.34);
}

.zuno-button-primary {
    background: linear-gradient(135deg, var(--zuno-blue), var(--zuno-blue-bright));
    box-shadow: 0 18px 42px rgba(13, 67, 186, 0.35);
    color: #fff;
}

.zuno-button-light {
    flex-shrink: 0;
    background: #fff;
    color: #0b2f80 !important;
    box-shadow: 0 18px 40px rgba(4, 20, 58, 0.22);
}

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

.zuno-whatsapp-header {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #25d366;
    color: #fff !important;
}

.zuno-whatsapp-header svg,
.zuno-whatsapp svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.zuno-whatsapp-header svg path:last-child,
.zuno-whatsapp svg path:last-child {
    fill: none;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.zuno-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 820px;
    padding: 155px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 32%, rgba(13, 67, 186, 0.2), transparent 31%),
        linear-gradient(180deg, #07090d 0%, #090c12 100%);
}

.zuno-hero::after {
    position: absolute;
    right: -18%;
    bottom: -45%;
    width: 70%;
    height: 75%;
    border: 1px solid rgba(38, 100, 244, 0.24);
    border-radius: 50%;
    content: "";
    transform: rotate(-10deg);
}

.zuno-hero-glow {
    position: absolute;
    top: 34%;
    right: 17%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(13, 67, 186, 0.24);
    filter: blur(90px);
}

.zuno-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    align-items: center;
    gap: 50px;
}

.zuno-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #6f9aff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.zuno-kicker::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--zuno-blue-bright);
    box-shadow: 0 0 0 5px rgba(30, 99, 243, 0.12);
    content: "";
}

.zuno-hero h1 {
    max-width: 760px;
    margin: 24px 0 26px;
    color: #fff;
    font-size: clamp(52px, 5.2vw, 77px);
    font-weight: 850;
    letter-spacing: -3.8px;
    line-height: 0.98;
    text-wrap: balance;
}

.zuno-hero h1 span {
    color: #7fa7ff;
}

.zuno-hero-copy > p {
    max-width: 670px;
    margin: 0;
    color: #aab2bf;
    font-size: 18px;
    line-height: 1.7;
}

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

.zuno-text-link {
    color: #d7dce4 !important;
    font-size: 14px;
    font-weight: 750;
}

.zuno-text-link span {
    margin-left: 6px;
    color: #5687f7;
}

.zuno-hero-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 27px;
}

.zuno-channel-badges,
.zuno-hero-markets {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.zuno-channel-badges span,
.zuno-hero-markets {
    min-height: 31px;
    padding: 0 10px;
    border: 1px solid rgba(131, 168, 255, 0.18);
    border-radius: 999px;
    background: rgba(87, 132, 240, 0.08);
    color: #bdcaf0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.zuno-channel-badges b {
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5f92ff, #0d43ba);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.zuno-hero-markets {
    color: #aeb7c7;
}

.zuno-hero-markets i {
    font-size: 14px;
    font-style: normal;
}

.zuno-hero-visual {
    position: relative;
    align-self: end;
    min-height: 610px;
}

.zuno-photo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(75, 126, 244, 0.34);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 67, 186, 0.2), rgba(13, 67, 186, 0.03) 67%, transparent 68%);
    transform: translate(-50%, -47%);
}

.zuno-hero-visual img {
    position: absolute;
    z-index: 2;
    right: -15px;
    bottom: -80px;
    width: min(100%, 510px);
    max-height: 690px;
    object-fit: contain;
    object-position: bottom;
}

.zuno-hero-badge {
    position: absolute;
    z-index: 3;
    right: -6px;
    bottom: 55px;
    display: flex;
    flex-direction: column;
    width: 220px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(12, 16, 23, 0.88);
    box-shadow: var(--zuno-shadow);
    backdrop-filter: blur(15px);
}

.zuno-hero-badge strong {
    font-size: 13px;
}

.zuno-hero-badge span {
    margin-top: 5px;
    color: #9099a8;
    font-size: 11px;
}

.zuno-section {
    padding: 115px 0;
}

.zuno-section-heading {
    max-width: 790px;
    margin-bottom: 58px;
}

.zuno-section-heading h2 {
    margin: 20px 0 22px;
    color: var(--zuno-light-text);
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 850;
    letter-spacing: -3.2px;
    line-height: 1.03;
    text-wrap: balance;
}

.zuno-section-heading h2 span {
    color: var(--zuno-blue);
}

.zuno-section-heading > p {
    max-width: 700px;
    margin: 0;
    color: #5d6674;
    font-size: 17px;
    line-height: 1.72;
}

.zuno-heading-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.zuno-heading-centered .zuno-kicker {
    justify-content: center;
}

.zuno-services {
    background: #fff;
}

.zuno-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #dfe3ea;
    border-left: 1px solid #dfe3ea;
}

.zuno-services-grid article {
    position: relative;
    min-height: 300px;
    padding: 38px 42px;
    border-right: 1px solid #dfe3ea;
    border-bottom: 1px solid #dfe3ea;
    color: var(--zuno-light-text);
    transition: background 180ms ease, transform 180ms ease;
}

.zuno-services-grid article:hover {
    z-index: 1;
    background: var(--zuno-blue-soft);
}

.zuno-services-grid article > span {
    color: var(--zuno-blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1px;
}

.zuno-services-grid h3 {
    max-width: 430px;
    margin: 43px 0 14px;
    font-size: 27px;
    letter-spacing: -1.1px;
    line-height: 1.15;
}

.zuno-services-grid p {
    max-width: 470px;
    margin: 0;
    color: #66707e;
    font-size: 15px;
    line-height: 1.65;
}

.zuno-services-grid small {
    position: absolute;
    right: 32px;
    bottom: 27px;
    color: #9199a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.zuno-cta-band {
    padding: 76px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.17), transparent 28%),
        var(--zuno-blue);
}

.zuno-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.zuno-cta-band span {
    color: #aecaFF;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.zuno-cta-band h2 {
    max-width: 790px;
    margin: 14px 0 0;
    font-size: clamp(33px, 3.6vw, 50px);
    letter-spacing: -2.2px;
    line-height: 1.08;
}

.zuno-results {
    background: var(--zuno-dark);
}

.zuno-results .zuno-section-heading h2 {
    color: #fff;
}

.zuno-results .zuno-section-heading h2 span {
    color: #7da3ff;
}

.zuno-number-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--zuno-line);
    border-bottom: 1px solid var(--zuno-line);
}

.zuno-number-grid article {
    display: flex;
    flex-direction: column;
    min-height: 185px;
    padding: 37px 28px;
    border-right: 1px solid var(--zuno-line);
}

.zuno-number-grid article:last-child {
    border-right: 0;
}

.zuno-number-grid strong {
    color: #fff;
    font-size: clamp(34px, 3.5vw, 48px);
    letter-spacing: -2px;
    white-space: nowrap;
}

.zuno-number-grid span {
    max-width: 150px;
    margin-top: 12px;
    color: #838d9c;
    font-size: 12px;
    line-height: 1.45;
}

.zuno-proof-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 27px;
}

.zuno-proof-row p {
    margin: 0;
    color: #929baa;
    font-size: 13px;
}

.zuno-proof-flags {
    display: flex;
}

.zuno-proof-flags span {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    margin-left: -7px;
    border: 3px solid var(--zuno-dark);
    border-radius: 50%;
    background: #1a202b;
    font-size: 17px;
}

.zuno-proof-flags span:first-child {
    margin-left: 0;
}

.zuno-direct-card {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 70px;
    margin-top: 68px;
    padding: 50px 55px;
    border: 1px solid rgba(88, 136, 245, 0.22);
    border-radius: var(--zuno-radius);
    background: linear-gradient(135deg, rgba(13, 67, 186, 0.2), rgba(18, 23, 34, 0.72));
}

.zuno-direct-card h3 {
    max-width: 480px;
    margin: 20px 0 0;
    font-size: 32px;
    letter-spacing: -1.4px;
    line-height: 1.15;
}

.zuno-direct-card p {
    max-width: 430px;
    margin: 15px 0 0;
    color: #b6bec9;
    font-size: 15px;
    line-height: 1.55;
}

.zuno-direct-card ul {
    display: grid;
    gap: 17px;
    align-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zuno-direct-card li {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    color: #b6bec9;
    font-size: 14px;
    line-height: 1.55;
}

.zuno-direct-card li i,
.zuno-contact-points i {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(61, 117, 245, 0.18);
    color: #7fa6ff;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.zuno-benefits {
    background: var(--zuno-light-bg);
}

.zuno-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.zuno-benefits-grid article {
    min-height: 325px;
    padding: 32px 29px;
    border: 1px solid #dfe4ec;
    border-radius: 18px;
    background: #fff;
    color: var(--zuno-light-text);
}

.zuno-benefits-grid strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--zuno-blue-soft);
    color: var(--zuno-blue);
    font-size: 11px;
}

.zuno-benefits-grid h3 {
    margin: 70px 0 17px;
    font-size: 24px;
    letter-spacing: -0.9px;
    line-height: 1.18;
}

.zuno-benefits-grid p {
    margin: 0;
    color: #68717e;
    font-size: 14px;
    line-height: 1.65;
}

.zuno-contact {
    padding: 118px 0;
    background:
        radial-gradient(circle at 13% 30%, rgba(13, 67, 186, 0.19), transparent 28%),
        var(--zuno-ink);
}

.zuno-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1.15fr);
    gap: 90px;
    align-items: center;
}

.zuno-contact-copy h2 {
    margin: 22px 0 24px;
    font-size: clamp(42px, 4.4vw, 62px);
    letter-spacing: -3px;
    line-height: 1.02;
}

.zuno-contact-copy > p {
    max-width: 540px;
    margin: 0;
    color: #9aa3b1;
    font-size: 17px;
    line-height: 1.7;
}

.zuno-contact-points {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.zuno-contact-points span {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    color: #c0c6cf;
    font-size: 13px;
}

.zuno-form-card {
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--zuno-radius);
    background: rgba(18, 23, 34, 0.84);
    box-shadow: var(--zuno-shadow);
}

.zuno-form-card form {
    display: grid;
    gap: 17px;
}

.zuno-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.zuno-form-card label {
    display: grid;
    gap: 8px;
}

.zuno-form-card label > span {
    color: #c7cdd5;
    font-size: 11px;
    font-weight: 750;
}

.zuno-form-card input,
.zuno-form-card select,
.zuno-form-card textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    outline: 0;
    background: rgba(4, 6, 10, 0.54);
    color: #fff;
    font: inherit;
    font-size: 14px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.zuno-form-card textarea {
    min-height: 112px;
    resize: vertical;
}

.zuno-form-card input:focus,
.zuno-form-card select:focus,
.zuno-form-card textarea:focus {
    border-color: #4f84f7;
    box-shadow: 0 0 0 3px rgba(79, 132, 247, 0.13);
}

.zuno-form-card select option {
    background: #10151e;
}

.zuno-consent {
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px !important;
}

.zuno-consent input {
    width: 17px;
    min-height: 17px;
    margin: 0;
}

.zuno-consent span {
    color: #919aa8 !important;
    font-weight: 500 !important;
}

.zuno-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.zuno-form-note {
    margin: -4px 0 0;
    color: #737d8c;
    font-size: 10px;
    text-align: center;
}

.zuno-form-message {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 12px;
}

.zuno-form-success {
    border: 1px solid rgba(53, 217, 120, 0.3);
    background: rgba(53, 217, 120, 0.09);
    color: #a9ecc5;
}

.zuno-form-error {
    border: 1px solid rgba(255, 96, 96, 0.3);
    background: rgba(255, 96, 96, 0.08);
    color: #ffc2c2;
}

.zuno-footer {
    padding: 36px 0;
    border-top: 1px solid var(--zuno-line);
    background: #06080b;
}

.zuno-footer .zuno-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.zuno-footer p,
.zuno-footer > .zuno-container > span {
    margin: 0;
    color: #6f7885;
    font-size: 11px;
}

.zuno-footer p {
    text-align: center;
}

.zuno-whatsapp {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 18px 42px rgba(13, 80, 38, 0.35);
    color: #fff !important;
    font-size: 12px;
    font-weight: 850;
}

/* Refined visual language: fewer decorative UI elements, more editorial rhythm. */
.zuno-header {
    top: 14px;
}

.zuno-nav {
    min-height: 66px;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(7, 9, 13, 0.76);
}

.zuno-nav-links {
    gap: 30px;
}

.zuno-hero {
    min-height: 760px;
    padding: 134px 0 54px;
    background:
        radial-gradient(circle at 76% 42%, rgba(24, 83, 206, 0.18), transparent 34%),
        #080b11;
}

.zuno-hero::after,
.zuno-hero-glow,
.zuno-photo-ring {
    display: none;
}

.zuno-hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
    gap: 66px;
}

.zuno-hero h1 {
    max-width: 670px;
    margin: 20px 0 22px;
    font-size: clamp(48px, 5vw, 70px);
    letter-spacing: -3.5px;
    line-height: 1;
}

.zuno-hero h1 span {
    color: #85a9ff;
}

.zuno-hero-copy > p {
    max-width: 570px;
    color: #bac1cb;
    font-size: 17px;
    line-height: 1.65;
}

.zuno-hero-actions {
    margin-top: 32px;
}

.zuno-hero-proof {
    gap: 12px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #96a1b1;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.45;
}

.zuno-hero-proof i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #5c8eff;
}

.zuno-hero-proof .zuno-hero-flag {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-right: 2px;
    border: 1px solid rgba(141, 174, 255, 0.2);
    border-radius: 50%;
    background: rgba(79, 126, 240, 0.1);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    font-size: 28px;
    line-height: 1;
}

.zuno-hero-visual {
    min-height: 600px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.zuno-hero-visual::before {
    display: none;
}

.zuno-hero-visual img {
    right: 50%;
    bottom: -32px;
    width: min(108%, 525px);
    max-height: 660px;
    transform: translateX(50%);
}

.zuno-hero-signature {
    position: absolute;
    z-index: 3;
    bottom: 8px;
    left: 50%;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.zuno-services {
    padding: 104px 0;
}

.zuno-services-grid {
    gap: 14px;
    border: 0;
}

.zuno-services-grid article {
    min-height: 275px;
    padding: 31px;
    border: 1px solid #e2e6ec;
    border-radius: 17px;
    background: #fff;
}

.zuno-services-grid article:hover {
    background: #f5f8ff;
    transform: translateY(-3px);
}

.zuno-services-grid h3 {
    margin-top: 37px;
}

.zuno-services-grid small {
    right: 27px;
    bottom: 25px;
}

.zuno-cta-band {
    padding: 70px 0;
    background: #0d43ba;
}

.zuno-number-grid {
    gap: 12px;
    border: 0;
}

.zuno-number-grid article {
    min-height: 168px;
    padding: 27px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.025);
}

.zuno-number-grid strong {
    color: #9ab9ff;
}

.zuno-direct-card {
    margin-top: 54px;
    padding: 43px 46px;
    border-color: rgba(113, 151, 246, 0.18);
    border-radius: 20px;
    background: #111722;
}

.zuno-benefits {
    padding: 105px 0;
}

.zuno-benefits-grid {
    gap: 13px;
}

.zuno-benefits-grid article {
    min-height: 286px;
    padding: 28px 26px;
    border-radius: 16px;
}

.zuno-benefits-grid h3 {
    margin-top: 50px;
}

.zuno-contact {
    padding: 104px 0;
}

/* Visual accents: depth and rhythm without adding noise to the conversion path. */
.zuno-hero {
    isolation: isolate;
    background:
        linear-gradient(rgba(113, 151, 246, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(113, 151, 246, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 74% 34%, rgba(29, 90, 221, 0.28), transparent 32%),
        #080b11;
    background-size: 52px 52px, 52px 52px, auto, auto;
}

.zuno-hero::after {
    position: absolute;
    z-index: -1;
    top: 116px;
    right: -7vw;
    display: block;
    width: min(56vw, 760px);
    height: 510px;
    border: 1px solid rgba(100, 145, 255, 0.2);
    border-radius: 44% 56% 52% 48% / 48% 42% 58% 52%;
    background: linear-gradient(130deg, rgba(20, 72, 187, 0.13), transparent 68%);
    content: "";
    transform: rotate(-12deg);
}

.zuno-hero-copy {
    position: relative;
}

.zuno-hero-copy::before {
    position: absolute;
    top: -37px;
    left: -27px;
    width: 94px;
    height: 94px;
    border-top: 1px solid rgba(121, 159, 255, 0.23);
    border-left: 1px solid rgba(121, 159, 255, 0.23);
    content: "";
}

.zuno-hero-visual {
    box-shadow: none;
}

.zuno-hero-visual::after {
    display: none;
}

.zuno-hero-visual img {
    filter: drop-shadow(0 22px 25px rgba(0, 0, 0, 0.28));
}

.zuno-hero-signal {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(3, max-content) 1fr;
    align-items: center;
    gap: 27px;
    min-height: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aeb7c6;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.zuno-hero-signal span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.zuno-hero-signal b {
    color: #6093ff;
    font-size: 9px;
}

.zuno-hero-signal em {
    justify-self: end;
    color: #687486;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.zuno-services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 15%, rgba(13, 67, 186, 0.09), transparent 24%),
        #fff;
}

.zuno-services-grid article {
    overflow: hidden;
}

.zuno-services-grid article::before {
    position: absolute;
    right: -17px;
    bottom: -54px;
    color: rgba(13, 67, 186, 0.045);
    content: attr(data-index);
    font-size: 160px;
    font-weight: 850;
    letter-spacing: -12px;
    line-height: 1;
}

.zuno-services-grid article:nth-child(1)::before { content: "01"; }
.zuno-services-grid article:nth-child(2)::before { content: "02"; }
.zuno-services-grid article:nth-child(3)::before { content: "03"; }
.zuno-services-grid article:nth-child(4)::before { content: "04"; }

.zuno-services-grid article > * {
    position: relative;
    z-index: 1;
}

.zuno-services-grid small {
    top: 27px;
    right: 27px;
    bottom: auto;
    padding: 7px 9px;
    border: 1px solid rgba(13, 67, 186, 0.12);
    border-radius: 999px;
    background: rgba(232, 240, 255, 0.68);
    color: #315eb9;
    font-size: 8px;
    letter-spacing: 0.75px;
}

.zuno-cta-band {
    position: relative;
    overflow: hidden;
}

.zuno-cta-band::before,
.zuno-cta-band::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    content: "";
}

.zuno-cta-band::before {
    top: -260px;
    right: -110px;
    width: 520px;
    height: 520px;
}

.zuno-cta-band::after {
    right: 36px;
    bottom: -220px;
    width: 370px;
    height: 370px;
}

.zuno-cta-band-inner {
    position: relative;
    z-index: 1;
}

.zuno-number-grid article {
    position: relative;
    overflow: hidden;
}

.zuno-number-grid article::after {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 22px;
    height: 22px;
    border-right: 1px solid rgba(137, 173, 255, 0.42);
    border-bottom: 1px solid rgba(137, 173, 255, 0.42);
    content: "";
}

@media (max-width: 1000px) {
    .zuno-nav-links {
        display: none;
    }

    .zuno-nav {
        grid-template-columns: auto 1fr auto;
    }

    .zuno-hero-grid {
        grid-template-columns: 1fr 0.75fr;
        gap: 20px;
    }

    .zuno-hero h1 {
        font-size: clamp(50px, 7vw, 68px);
    }

    .zuno-hero-visual {
        min-height: 540px;
    }

    .zuno-hero-badge {
        right: 0;
        width: 190px;
    }

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

    .zuno-number-grid article:nth-child(2) {
        border-right: 0;
    }

    .zuno-number-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--zuno-line);
    }

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

    .zuno-contact-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 45px;
    }
}

@media (max-width: 760px) {
    .zuno-container {
        width: calc(100% - 30px);
    }

    body.zuno-landing-page.admin-bar .zuno-header {
        top: 46px;
    }

    .zuno-container {
        width: min(100% - 30px, 1180px);
    }

    .zuno-header {
        top: 10px;
    }

    .zuno-nav {
        min-height: 62px;
        padding: 0 8px 0 14px;
        border-radius: 15px;
    }

    .zuno-brand {
        font-size: 20px;
        letter-spacing: -1px;
    }

    .zuno-brand small {
        font-size: 16px;
    }

    .zuno-nav-actions {
        gap: 6px;
    }

    .zuno-button-small {
        min-height: 42px;
        padding: 0 11px;
        font-size: 10px;
    }

    .zuno-whatsapp-header {
        display: inline-flex;
        width: 42px;
        height: 42px;
    }

    .zuno-hero {
        min-height: auto;
        padding: 116px 0 0;
    }

    .zuno-hero-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .zuno-hero h1 {
        margin-top: 19px;
        font-size: clamp(39px, 11vw, 54px);
        letter-spacing: -2.5px;
        line-height: 1.01;
    }

    .zuno-hero-copy > p {
        font-size: 16px;
        line-height: 1.62;
    }

    .zuno-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        margin-top: 29px;
    }

    .zuno-button-primary {
        width: 100%;
    }

    .zuno-text-link {
        text-align: center;
    }

    .zuno-hero-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 23px;
    }

    .zuno-hero-proof.zuno-hero-flags {
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }

    .zuno-hero-proof .zuno-hero-flag {
        width: 48px;
        height: 48px;
        margin: 0;
        font-size: 27px;
    }

    .zuno-channel-badges {
        flex-wrap: wrap;
    }

    .zuno-channel-badges span,
    .zuno-hero-markets {
        min-height: 29px;
        padding: 0 9px;
        font-size: 9px;
    }

    .zuno-hero-visual {
        min-height: 470px;
        margin-top: 10px;
    }

    .zuno-hero {
        padding-bottom: 0;
        background-size: 34px 34px, 34px 34px, auto, auto;
    }

    .zuno-hero::after {
        top: 360px;
        right: -120px;
        width: 470px;
        height: 420px;
    }

    .zuno-hero-copy::before {
        top: -24px;
        left: -14px;
        width: 55px;
        height: 55px;
    }

    .zuno-hero-signal {
        display: none;
    }

    .zuno-hero-visual::after {
        top: 15px;
        right: 17px;
        width: 48px;
        height: 48px;
    }

    .zuno-photo-ring {
        width: 350px;
        height: 350px;
    }

    .zuno-hero-visual img {
        right: 50%;
        bottom: -54px;
        width: 385px;
        transform: translateX(50%);
    }

    .zuno-hero-badge {
        right: 0;
        bottom: 32px;
        width: 180px;
        padding: 13px 14px;
    }

    .zuno-section {
        padding: 82px 0;
    }

    .zuno-section-heading {
        margin-bottom: 40px;
    }

    .zuno-section-heading h2 {
        margin-top: 17px;
        font-size: 40px;
        letter-spacing: -2.3px;
    }

    .zuno-section-heading > p {
        font-size: 15px;
    }

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

    .zuno-services-grid article {
        min-height: 270px;
        padding: 30px 27px;
    }

    .zuno-services-grid h3 {
        margin-top: 35px;
        font-size: 25px;
    }

    .zuno-services-grid small {
        right: 25px;
        bottom: 23px;
    }

    .zuno-cta-band {
        padding: 64px 0;
    }

    .zuno-cta-band-inner {
        align-items: stretch;
        flex-direction: column;
        gap: 31px;
    }

    .zuno-cta-band h2 {
        font-size: 36px;
        letter-spacing: -1.8px;
    }

    .zuno-number-grid {
        grid-template-columns: 1fr 1fr;
    }

    .zuno-number-grid article {
        min-height: 155px;
        padding: 27px 15px;
    }

    .zuno-number-grid strong {
        font-size: clamp(27px, 8vw, 36px);
        letter-spacing: -1.5px;
        white-space: normal;
    }

    .zuno-number-grid span {
        font-size: 10px;
    }

    .zuno-proof-row {
        align-items: flex-start;
    }

    .zuno-proof-row p {
        font-size: 11px;
        line-height: 1.5;
    }

    .zuno-direct-card {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 50px;
        padding: 30px 25px;
    }

    .zuno-direct-card h3 {
        font-size: 27px;
    }

    .zuno-benefits-grid {
        grid-template-columns: 1fr;
    }

    .zuno-benefits-grid article {
        min-height: 260px;
    }

    .zuno-benefits-grid h3 {
        margin-top: 45px;
    }

    .zuno-contact {
        padding: 82px 0;
    }

    .zuno-contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .zuno-contact-copy h2 {
        font-size: 41px;
        letter-spacing: -2.2px;
    }

    .zuno-form-card {
        padding: 23px;
    }

    .zuno-field-row {
        grid-template-columns: 1fr;
    }

    .zuno-footer .zuno-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        text-align: center;
    }

    .zuno-whatsapp {
        display: none;
    }
}

@media (max-width: 430px) {
    .zuno-button-small {
        width: 42px;
        padding: 0;
        font-size: 0;
    }

    .zuno-button-small::after {
        content: "Falar";
        font-size: 10px;
    }
}

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

    .zuno-button,
    .zuno-services-grid article {
        transition: none;
    }
}
