/* =========================================================
   FC AZIENDE - Landing Page (PSD 1:1 pixel perfect)
   Design: 1920/1366/1024/768/320 - Container 1480/1166/884/668/280
   ========================================================= */

/* ---------- FONT INTER ---------- */
@font-face { font-family:'Inter'; src:url('../fonts/Inter-Thin.ttf') format('truetype');       font-weight:100; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-ExtraLight.ttf') format('truetype'); font-weight:200; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-Light.ttf') format('truetype');      font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-Regular.ttf') format('truetype');    font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-Medium.ttf') format('truetype');     font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-SemiBold.ttf') format('truetype');   font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-Bold.ttf') format('truetype');       font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-ExtraBold.ttf') format('truetype');  font-weight:800; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/Inter-Black.ttf') format('truetype');      font-weight:900; font-style:normal; font-display:swap; }

/* ---------- DESIGN TOKENS ---------- */
:root {
    --c-green:        #2D8C38;
    --c-blue:         #225CA6;
    --c-blue-2:       #2560af;
    --c-blue-mid:     #4D8CD9;
    --c-blue-sky:     #83BBE6;
    --c-green-light:  #68C470;
    --c-form-label:   #4270AB;
    --c-input-bg:     #DEEBF3;
    --c-input-border: #C7D8E3;
    --c-white:        #FFFFFF;
    --font:           'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
}

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

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--c-green);
    background: #ffffff;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; word-wrap: break-word; margin: 0; }

/* ---------- CONTAINER (max 1500px, responsive padding) ---------- */
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 481px)  { .container { padding: 0 50px; } }
@media (min-width: 769px)  { .container { padding: 0 70px; } }
@media (min-width: 1025px) { .container { padding: 0 100px; } }
@media (min-width: 1501px) { .container { padding: 0; } }

/* ============ HERO ============ */
.hero {
    background: url('../img/landing/head_desk.jpg') center center / cover no-repeat;
    background-color: #0a2e5e;
    width: 100%;
    height: 640px;
}

.site-back {
    margin: 24px 0 0;
    font-size: 15px;
    font-weight: 600;
}
.site-back a {
    color: var(--c-blue);
    text-decoration: none;
}
.site-back a:hover {
    text-decoration: underline;
    color: var(--c-blue-2);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============ INTRO ============ */
.intro {
    padding: 96px 0 0;
    text-align: left;
}
.intro-lead {
    font-family: var(--font);
    font-size: 50px;
    line-height: 1.25;
    font-weight: 300;
    letter-spacing: 0;
    margin: 0;
    /* PSD gradient overlay: verde → blu orizzontale */
    background: linear-gradient(90deg, var(--c-green) 0%, var(--c-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.intro-lead strong { font-weight: 700; color: inherit; -webkit-text-fill-color: inherit; }

/* ============ FEATURES ============ */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 86px;
    margin-top: 80px;
    padding-bottom: 30px;
}
.feature {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-icon {
    width: 100%;
    max-width: 285px;
    height: auto;
    margin-bottom: 26px;
}
.feature-title {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    /* PSD gradient overlay: verde → blu orizzontale */
    background: linear-gradient(90deg, var(--c-green) 0%, var(--c-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* ============ CODE BLOCK ============ */
.code-block {
    padding: 52px 0 62px;
    text-align: left;
}
.code-block__label {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 47px;
    line-height: 1.2;
    /* PSD gradient overlay: verde → blu orizzontale */
    background: linear-gradient(90deg, var(--c-green) 0%, var(--c-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.code-pill {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto 44px;
}
.code-block__caption {
    font-size: 50px;
    line-height: 1.25;
    font-weight: 300;
    margin-bottom: 53px;
    /* PSD gradient overlay: verde → blu orizzontale */
    background: linear-gradient(90deg, var(--c-green) 0%, var(--c-green) 42%, var(--c-blue) 62%, var(--c-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.code-block__caption strong { font-weight: 700; }
.code-block__caption .green,
.code-block__caption .blue { font-weight: 700; color: inherit; -webkit-text-fill-color: inherit; }
.code-block__small {
    font-size: 30px;
    line-height: 1.35;
    font-weight: 300;
    /* PSD gradient overlay: blu scuro → azzurro orizzontale */
    background: linear-gradient(90deg, var(--c-blue) 0%, var(--c-blue) 20%, var(--c-blue-mid) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.code-block__small strong { font-weight: 700; color: inherit; -webkit-text-fill-color: inherit; }
.badge-fibra {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url('../img/dem/logo_fibra.svg') center center / contain no-repeat;
    vertical-align: middle;
    margin: 0 4px;
}

/* ============ OFFER SECTION (team photo separate, before) ============ */
.offer-wrap {
    position: relative;
    background-color: var(--c-blue-mid);
    background-image: url('../img/landing/fondo_big.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    color: var(--c-white);
    padding: 515px 0 82px; /* padding-top = gap from offer-wrap top to Compila; padding-bottom compensato per offer-tagline line-height 1.6 (+18 h) */
    margin-top: -460px; /* pull up so gradient starts at y=2253, overlapping photo bottom half */
    z-index: 1;
}
.team-photo {
    margin-top: 0;
    position: relative;
    z-index: 3;
}
.team-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    /* NO box-shadow, NO drop shadow */
}
.offer-inner {
    position: relative;
    z-index: 2;
    text-align: left;
}
.offer-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 67px; /* PSD compensato per line-height 1.5 → h~51 */
    color: var(--c-white);
    line-height: 1.5; /* PSD: h=50 → 34*1.47 */
}
.mese-card {
    display: block;
    width: 100%;
    margin-bottom: 60px; /* PSD: mese pill bottom → consulente top */
}
.mese-card__pill {
    background: var(--c-white);
    border-radius: 50px;
    padding: 37px 60px; /* PSD pill height 160: 46*2 pad + ~66 title = 158 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}
.mese-card__title {
    font-size: 80px; /* PSD text height 66px */
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    white-space: nowrap;
    color: var(--c-blue-2);
}
.mese-card__desc {
    font-size: 30px; /* PSD desc 2 lines total 69px → ~24 * 1.4 line-height */
    line-height: 1;
    font-weight: 400;
    max-width: 600px;
    text-align: left;
    color: var(--c-blue-2);
}
.offer-tagline {
    font-size: 50px;
   color: var(--c-white);
    font-weight: 300;
}
.offer-tagline strong { font-weight: 700; }

/* ============ FORM ============ */
.form-section {
    padding: 94px 0 100px; /* PSD tuned: form-input y=3478, footer y=4166 */
    background: var(--c-white);
}
.form-wrap { max-width: 100%; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form-field { position: relative; }
.form-field--full { grid-column: 1 / -1; }
.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 27px;
    font-family: var(--font);
    font-size: 20px;
    font-weight: 400;
    color: var(--c-form-label);
    transition: none;
    outline: none;
    /* PSD gradient border: blu-mid → verde-light orizzontale */
    background:
        linear-gradient(var(--c-input-bg), var(--c-input-bg)) padding-box,
        linear-gradient(90deg, var(--c-blue-mid) 0%, var(--c-green-light) 100%) border-box;
}
.form-field textarea {
    resize: vertical;
    min-height: 200px;
    border-radius: 10px;
    line-height: 1.4;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--c-form-label);
    font-weight: 400;
    opacity: 1;
}
.form-field input:focus,
.form-field textarea:focus {
    box-shadow: none;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(90deg, var(--c-blue-mid) 0%, var(--c-green-light) 100%) border-box;
}
/* Error state (set by JS or via :invalid on submit) */
.form-field.has-error input,
.form-field.has-error textarea {
    background:
        linear-gradient(#fdecec, #fdecec) padding-box,
        linear-gradient(90deg, #d94a4a, #d94a4a) border-box;
}
.form-consent.has-error {
    color: #b93636;
}
.form-consent.has-error input {
    accent-color: #d94a4a;
    outline: 2px solid #d94a4a;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Honeypot: totally hidden but accessible to bots */
.form-honey {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Form status message (loading/success/error) */
.form-status {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    min-height: 24px;
    padding: 12px 20px;
    border-radius: 10px;
    display: none;
}
.form-status.is-loading {
    display: block;
    background: #eef4fa;
    color: var(--c-blue);
}
.form-status.is-success {
    display: block;
    background: #e6f7e9;
    color: #1e7a2a;
    border: 1px solid #b7e2be;
}
.form-status.is-error {
    display: block;
    background: #fdecec;
    color: #b93636;
    border: 1px solid #f3b8b8;
}
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--c-form-label); /* fallback per checkbox */
}

.form-consent input {
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--c-blue-mid);
    width: 16px;
    height: 16px;
}
.form-consent a { color: inherit; -webkit-text-fill-color: inherit; text-decoration: underline; }
.form-submit-wrap {
    text-align: center;
    margin-top: 40px;
}
.cta-form {
    display: inline-block;
    width: auto;
    max-width: 560px;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: transparent;
    filter: drop-shadow(0 8px 16px rgba(77, 140, 217, 0.20));
}
.cta-form:hover {
    filter: drop-shadow(0 12px 22px rgba(77, 140, 217, 0.28));
}
.cta-form img { display: block; width: 450px; height: auto; }

/* ============ FOOTER (4 columns) ============ */
.footer {
    background: linear-gradient(140deg, #83bbe6 0%, #4d8cd9 50%, #68c470 100%);
    color: var(--c-white);
    padding: 60px 0 40px;
    position: relative;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr 1.6fr;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.footer-brand__logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 0;
}
.footer-brand__info,
.footer-address {
    font-size: 14px;
    line-height: 2.4;
    color: var(--c-white);
    font-weight: 300;
}
.footer-address p { margin: 0; }
.footer-address strong { font-weight: 700; }
.footer-col__title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 20px;
    color: var(--c-white);
    letter-spacing: 0;
    line-height: 1;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--c-white);
    font-weight: 300;
    line-height: 1;
}
.footer-col a:hover { text-decoration: underline; }
.footer-contact__phone,
.footer-contact__mail {
    font-size: 14px;
    margin: 0 0 14px;
    color: var(--c-white);
    font-weight: 300;
    line-height: 1;
}
.footer-bottom {
    margin-top: 80px;
    padding: 0;
    border-top: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.footer-bottom__copy {
    font-size: 12px;
    color: var(--c-white);
    font-weight: 300;
}
.footer-bottom__links {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--c-white);
    font-weight: 300;
    align-items: center;
}
.footer-bottom__links a { position: relative; }
.footer-bottom__links a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -14px;
    color: rgba(255, 255, 255, 0.5);
}
/* iubenda: keep footer link look (no white button) */
.footer-bottom__links a.iubenda-embed {
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    color: inherit !important;
    font: inherit !important;
    text-decoration: none !important;
    display: inline !important;
}

/* ============ LEGAL PAGES (Privacy Policy, ecc.) ============ */
.legal-page {
    color: var(--c-blue);
    background: #ffffff;
}

.legal-main {
    padding: 64px 0 140px;
}

.legal-content {
    max-width: 920px;
}

.legal-content__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 28px;
    color: var(--c-blue);
}

.legal-content__intro,
.legal-section p,
.legal-section li {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
    color: var(--c-blue);
}

.legal-content__intro {
    margin-bottom: 36px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--c-blue);
    margin: 0 0 14px;
}

.legal-section ul {
    margin: 12px 0 16px;
    padding-left: 1.4em;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section li ul {
    margin-top: 10px;
}

.legal-section a {
    color: var(--c-blue);
    text-decoration: underline;
    font-weight: 600;
}

.legal-section a:hover {
    color: var(--c-blue-2);
}

.legal-content__updated {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(34, 92, 166, 0.2);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-blue);
}

.legal-download {
    margin: 8px 0 0;
}

.legal-download__btn {
    display: inline-block;
    cursor: pointer;
    filter: drop-shadow(0 8px 16px rgba(77, 140, 217, 0.20));
    transition: filter 0.2s ease, transform 0.2s ease;
}

.legal-download__btn:hover {
    filter: drop-shadow(0 12px 22px rgba(77, 140, 217, 0.28));
    transform: translateY(-1px);
}

.legal-download__btn img {
    display: block;
    width: 306px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .legal-main { padding: 48px 0 110px; }
    .legal-content__title { font-size: 32px; }
    .legal-section h2 { font-size: 18px; }
}

@media (max-width: 520px) {
    .legal-main { padding: 32px 0 90px; }
    .legal-content__title { font-size: 26px; margin-bottom: 20px; }
    .legal-content__intro,
    .legal-section p,
    .legal-section li { font-size: 15px; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

/* 1366 */
@media (max-width: 1500px) {
    .hero { height: 500px; }
    .intro { padding: 70px 0 50px; }
    .intro-lead { font-size: 36px; }
    .feature-icon { max-width: 220px; }
    .feature-title { font-size: 20px; }
    .code-block { padding: 40px 0 40px; }
    .code-block__label { font-size: 30px; margin-bottom: 18px; }
    .code-block__caption { font-size: 36px; margin-bottom: 36px; }
    .code-block__small { font-size: 30px; }
    .badge-fibra { width: 28px; height: 28px; }
    .offer-wrap { padding: 380px 0 70px; margin-top: -330px; }
    .offer-title { font-size: 50px; margin-bottom: 60px; }
    .mese-card { margin-bottom: 60px; }
    .mese-card__pill { padding: 34px 44px; border-radius: 60px; }
    .mese-card__title { font-size: 66px; }
    .mese-card__desc { font-size: 23px; max-width: 50%; }
    .offer-tagline { font-size: 50px;line-height: normal; }
    .form-section { padding: 90px 0 70px; }
    .footer { padding: 50px 0 32px; }
    .footer-brand__logo { width: 170px; }
    .footer-inner { gap: 24px; }
}

/* 1024 - features 2x2 */
@media (max-width: 1200px) {
    .hero { height: 400px; }
    .intro { padding: 60px 0 40px; }
    .intro-lead { font-size: 50px; }
    .features { grid-template-columns: repeat(2, 1fr); gap: 30px;
        max-width: 550px;
        margin:60px auto 0; }
    .feature-icon { max-width: 200px; margin-bottom: 20px; }
    .feature-title { font-size: 25px; }
    .code-block { padding: 40px 0 40px; }
    .code-block__label { font-size: 30px; margin-bottom: 20px; }
    .code-pill { margin-bottom: 34px; }
    .code-block__caption { font-size: 30px; margin-bottom: 30px; line-height: 1.3; }
    .code-block__small { font-size: 30px; }
    .badge-fibra { width: 24px; height: 24px; }
    .offer-wrap { padding: 280px 0 60px; margin-top: -240px; }
    .offer-title { font-size: 30px; margin-bottom: 50px; line-height: 1.4; }
    .mese-card { margin-bottom: 50px; }
    .mese-card__pill { flex-direction: column; gap: 12px; padding: 34px 44px; border-radius: 50px; max-width: 650px; margin: 0 auto; }
    .mese-card__title { font-size: 66px; }
    .mese-card__desc { font-size: 24px; max-width: 100%; }
    .offer-tagline { font-size: 50px; }
    .form-section { padding: 80px 0 60px; }
    .form-grid { gap: 30px; }
    .form-field textarea { border-radius: 10px; min-height: 180px; }
    .form-consent { font-size: 20px; }
    .cta-form { max-width: 460px; }
    .footer-brand__logo { width: 150px; }
    .footer-col__title, .footer-col li,
    .footer-contact__phone, .footer-contact__mail,
    .footer-address { font-size: 13px; }
    .footer-col li { margin-bottom: 12px; }
    .footer-bottom { margin-top: 60px; gap: 40px; }
}

/* 768 */
@media (max-width: 900px) {
    .hero {
        background-image: url('../img/landing/head_mob.jpg');
        background-position: center top;
        background-size: 100% auto;
        background-repeat: no-repeat;
        height: auto;
        aspect-ratio: 500 / 229;
        min-height: 0;
    }
    .intro { padding: 50px 0 34px; }
    .intro-lead { font-size: 40px; line-height: 1.3; }
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        margin-top: 44px;
    }
    .feature-icon { max-width: 180px; margin-bottom: 18px; }
    .feature-title { font-size: 25px; }
    .code-block { padding: 30px 0 30px; }
    .code-block__label { font-size: 30px; margin-bottom: 18px; }
    .code-block__caption { font-size: 30px; margin-bottom: 26px; line-height: 1.3; }
    .code-block__small { font-size: 30px; }
    .offer-wrap { padding: 180px 0 50px; margin-top: -140px; }
    .offer-title { font-size: 30px; margin-bottom: 40px; line-height: 1.4; }
    .mese-card { margin-bottom: 40px; }
    .mese-card__pill { flex-direction: column; gap: 12px; padding: 26px 30px; text-align: center; border-radius: 30px; }
    .mese-card__title { font-size: 66px; white-space: normal; }
    .mese-card__desc {max-width: 100%; font-size: 23px; }
    .offer-tagline { font-size: 30px; line-height: 1.5; }
    .form-section { padding: 60px 0 50px; }
    .form-consent { font-size: 20px; }
    .footer { padding: 44px 0 28px; }
    .footer-inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "col-1 brand"
            "col-2 brand"
            "col-3 brand";
        gap: 20px 28px;
        align-items: start;
    }
    .footer-inner > :nth-child(1) {
        grid-area: brand;
        justify-self: end;
    }
    .footer-inner > :nth-child(2) { grid-area: col-1; }
    .footer-inner > :nth-child(3) { grid-area: col-2; }
    .footer-inner > :nth-child(4) { grid-area: col-3; }
    .footer-brand__logo {
        width: 150px;
        margin-left: auto;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 16px;
        margin-top: 40px;
        align-items: flex-start;
    }
    .footer-bottom__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
    }
}

/* 320 */
@media (max-width: 520px) {
    .intro { padding: 36px 0 24px; }
    .intro-lead { font-size: 20px; line-height: 1.35; }
    .features { grid-template-columns: 1fr; gap: 30px; margin-top: 30px; }
    .feature-icon { max-width: 180px; margin-bottom: 16px; }
    .feature-title { font-size: 16px; }
    .code-block { padding: 24px 0 24px; }
    .code-block__label { font-size: 20px; margin-bottom: 12px; }
    .code-pill { margin-bottom: 20px; }
    .code-block__caption { font-size: 20px; margin-bottom: 20px; line-height: 1.35; }
    .code-block__small { font-size: 20px; }
    .badge-fibra { width: 18px; height: 18px; }
    .offer-wrap { padding: 110px 0 30px; margin-top: -70px; }
    .offer-title { font-size: 20px; margin-bottom: 24px; line-height: 1.4; }
    .mese-card { margin-bottom: 24px; }
    .mese-card__pill { padding: 18px 22px; border-radius: 22px; gap: 8px; }
    .mese-card__title { font-size: 28px; }
    .mese-card__desc { font-size: 10px; }
    .offer-tagline { font-size: 20px; line-height: 1.2; }
    .form-section { padding: 40px 0 30px; }
    .form-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-field input, .form-field textarea { font-size: 20px; padding: 12px 18px; }
    .form-field textarea { border-radius: 10px; min-height: 140px; }
    .form-consent { font-size: 14px; }
    .cta-form { max-width: 280px; }
    .footer { padding: 30px 0 20px; }
    .footer-inner {
        grid-template-columns: 1fr;
        grid-template-areas: unset;
        gap: 18px;
    }
    .footer-brand__logo {
        width: 130px;
        margin-left: 0;
    }
    .footer-inner > :nth-child(1) {
        grid-area: auto;
        justify-self: start;
    }
    .footer-inner > :nth-child(2) {
        grid-area: auto;
        justify-self: start;
    }
    .footer-inner > :nth-child(3) {
        grid-area: auto;
        justify-self: start;
    }
    .footer-inner > :nth-child(4) {
        grid-area: auto;
        justify-self: start;
    }
    .footer-col__title { margin-bottom: 14px; }
    .footer-col__title, .footer-col li,
    .footer-contact__phone, .footer-contact__mail,
    .footer-address { font-size: 12px; }
    .footer-col li { margin-bottom: 20px; }
    .footer-bottom {
        margin-top: 30px;
        text-align: left;
        align-items: flex-start;
    }
    .footer-bottom__links {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 5px 24px;
    }
    .footer-bottom__copy, .footer-bottom__links { font-size: 10px; }
}
