/*
Theme Name: Netcond
Theme URI: http://www.kunturweb.com
Description: Theme Netcond de kunturweb.com
Author: kunturweb.com
Author URI: http://www.kunturweb.com
Version: 1.0
*/

/* Netcond home redesign 2026 */
:root {
    --nc-blue: #008bd2;
    --nc-cyan: #20c7f4;
    --nc-orange: #f58220;
    --nc-dark: #08345f;
    --nc-ink: #102942;
    --nc-muted: #5f7388;
    --nc-light: #f4f8fb;
    --nc-white: #ffffff;
    --nc-line: rgba(8, 52, 95, 0.12);
    --nc-patrias-red: #c8102e;
    --nc-patrias-dark: #780018;
}

html {
    scroll-behavior: smooth;
}

body.netcond-site {
    margin: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--nc-ink);
    background: var(--nc-white);
}

body.netcond-site * {
    box-sizing: border-box;
}

.nc-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.nc-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    height: auto;
    float: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--nc-line);
    box-shadow: 0 8px 24px rgba(8, 52, 95, 0.06);
    backdrop-filter: blur(14px);
}

.admin-bar .nc-header {
    top: 32px;
}

.nc-header__inner {
    width: min(1180px, calc(100% - 28px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.nc-logo img {
    width: 160px;
    height: auto;
    display: block;
}

.nc-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nc-nav__menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nc-nav__menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nc-nav a,
.nc-mobile-menu__panel a {
    color: var(--nc-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.nc-nav a:hover,
.nc-mobile-menu__panel a:hover {
    color: var(--nc-orange);
}

.nc-header__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nc-btn {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--nc-white);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nc-btn:hover {
    color: var(--nc-white);
    transform: translateY(-1px);
    text-decoration: none;
}

.nc-btn--primary {
    background: var(--nc-orange);
    box-shadow: 0 12px 22px rgba(245, 130, 32, 0.24);
}

.nc-btn--primary:hover {
    background: #e87213;
}

.nc-btn--secondary {
    background: var(--nc-blue);
    box-shadow: 0 12px 22px rgba(0, 139, 210, 0.18);
}

.nc-btn--ghost {
    color: var(--nc-blue);
    background: var(--nc-white);
    border-color: rgba(0, 139, 210, 0.22);
}

.nc-btn--ghost:hover {
    color: var(--nc-blue);
    background: #eef9ff;
}

.nc-btn--light {
    color: var(--nc-dark);
    background: var(--nc-white);
    box-shadow: 0 12px 22px rgba(8, 52, 95, 0.18);
}

.nc-btn--light:hover {
    color: var(--nc-dark);
    background: #eef9ff;
}

.nc-btn--large {
    min-height: 52px;
    padding: 0 22px;
    font-size: 15px;
}

.nc-mobile-menu {
    display: none;
    position: relative;
    margin-left: auto;
}

.nc-mobile-menu summary {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nc-dark);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.nc-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.nc-mobile-menu__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    background: var(--nc-white);
    box-shadow: 0 20px 45px rgba(8, 52, 95, 0.18);
}

.nc-mobile-menu__panel a:not(.nc-btn) {
    padding: 10px 8px;
}

.nc-home {
    width: 100%;
    clear: both;
    display: block;
    overflow: hidden;
}

.nc-hero {
    position: relative;
    min-height: 720px;
    padding: 112px 0 64px;
    display: flex;
    align-items: center;
    color: var(--nc-white);
    isolation: isolate;
}

.nc-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.nc-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 34%;
    z-index: 1;
    background: linear-gradient(0deg, var(--nc-white), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.nc-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 36px;
    align-items: end;
}

.nc-kicker {
    margin: 0 0 12px;
    color: var(--nc-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nc-hero h1 {
    max-width: 850px;
    margin: 0 0 18px;
    color: var(--nc-white);
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: 0;
}

.nc-hero__lead {
    max-width: 710px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45;
    font-weight: 700;
}

.nc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0;
}

.nc-badges span {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nc-white);
    background: rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 800;
}

.nc-badges span i {
    flex: 0 0 15px;
}

.nc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-microcopy {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
}

.nc-hero__deal {
    padding: 22px;
    border-top: 5px solid var(--nc-orange);
    border-radius: 8px;
    color: var(--nc-dark);
    background: var(--nc-white);
    box-shadow: 0 22px 55px rgba(0, 34, 72, 0.28);
}

.nc-hero__deal span,
.nc-hero__deal small {
    display: block;
    color: var(--nc-blue);
    font-weight: 900;
}

.nc-hero__deal strong {
    display: block;
    margin: 6px 0;
    color: var(--nc-orange);
    font-size: 64px;
    line-height: 0.9;
}

.nc-hero__deal p {
    margin: 14px 0 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.nc-section {
    padding: 86px 0;
}

.nc-section__head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.nc-section__head h2,
.nc-coverage h2,
.nc-payments h2,
.nc-tv h2,
.nc-faq h2,
.nc-final-cta h2 {
    margin: 0 0 14px;
    color: var(--nc-dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.nc-section__head p,
.nc-coverage p,
.nc-payments p,
.nc-tv p,
.nc-final-cta p {
    color: var(--nc-muted);
    font-size: 17px;
    line-height: 1.65;
}

.nc-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.nc-plan-card {
    position: relative;
    padding: 24px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--nc-white);
    box-shadow: 0 14px 34px rgba(8, 52, 95, 0.08);
}

.nc-plan-card--featured {
    border: 2px solid var(--nc-orange);
    transform: translateY(-8px);
}

.nc-plan-card__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--nc-white);
    background: var(--nc-orange);
    font-size: 12px;
    font-weight: 900;
}

.nc-plan-card h3 {
    margin: 0;
    padding-right: 92px;
    color: var(--nc-dark);
    font-size: 20px;
    line-height: 1.2;
}

.nc-plan-card__speed strong {
    color: var(--nc-blue);
    font-size: 54px;
    line-height: 0.95;
    letter-spacing: 0;
}

.nc-plan-card__speed span {
    margin-left: 4px;
    color: var(--nc-blue);
    font-size: 18px;
    font-weight: 900;
}

.nc-plan-card__ideal {
    min-height: 58px;
    margin: 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.nc-plan-card__price {
    color: var(--nc-orange);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.nc-plan-card__price span {
    font-size: 28px;
}

.nc-plan-card__price small {
    color: var(--nc-blue);
    font-size: 16px;
}

.nc-plan-card ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.nc-plan-card li {
    display: flex;
    gap: 8px;
    color: #31516b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.nc-plan-card li i {
    margin-top: 2px;
    color: var(--nc-cyan);
}

.nc-plan-card .nc-btn {
    width: 100%;
    margin-top: auto;
}

.nc-note {
    margin: 22px 0 0;
    color: var(--nc-muted);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.nc-benefits,
.nc-testimonials,
.nc-faq {
    background: var(--nc-light);
}

.nc-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nc-feature-grid article,
.nc-testimonial-grid article,
.nc-stat-grid article,
.nc-payment-grid article,
.nc-proof-grid article {
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 14px 34px rgba(8, 52, 95, 0.07);
}

.nc-feature-grid article {
    padding: 24px;
}

.nc-feature-grid i {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-blue), var(--nc-cyan));
    font-size: 22px;
}

.nc-feature-grid h3 {
    margin: 0 0 10px;
    color: var(--nc-dark);
    font-size: 20px;
}

.nc-feature-grid p {
    margin: 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.nc-coverage {
    background: linear-gradient(135deg, #eaf8ff, #ffffff);
}

.nc-coverage__grid {
    display: grid;
    grid-template-columns: 0.74fr 1.26fr;
    gap: 34px;
    align-items: start;
}

.nc-coverage .nc-btn {
    margin-top: 18px;
}

.nc-coverage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.nc-coverage__actions .nc-btn {
    margin-top: 0;
    border: 0;
    cursor: pointer;
}

.nc-coverage__actions .nc-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.nc-coverage__privacy {
    margin: 14px 0 0;
    color: var(--nc-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.nc-zone-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nc-zone-list button {
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(0, 139, 210, 0.22);
    border-radius: 8px;
    color: var(--nc-blue);
    background: var(--nc-white);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.nc-zone-list button:hover,
.nc-zone-list button:focus {
    color: var(--nc-white);
    background: var(--nc-blue);
}

.nc-coverage__tool {
    display: grid;
    gap: 18px;
}

.nc-map-card {
    padding: 18px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 18px 42px rgba(8, 52, 95, 0.12);
}

.nc-map-card__head {
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.nc-map-card__head h3 {
    margin: 0;
    color: var(--nc-dark);
    font-size: 24px;
    line-height: 1.12;
}

.nc-map-card__head .nc-kicker {
    margin-bottom: 5px;
}

.nc-map-card__head span {
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--nc-blue);
    background: #eef9ff;
    font-size: 12px;
    font-weight: 900;
}

.nc-coverage-map {
    width: 100%;
    height: 380px;
    min-height: 380px;
    border: 1px solid rgba(8, 52, 95, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: #e8f1f6;
    z-index: 1;
}

.nc-map-card__hint {
    margin: 12px 0 0;
    color: var(--nc-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.nc-coverage-result {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(0, 139, 210, 0.18);
    border-radius: 8px;
    display: grid;
    gap: 5px;
    background: #eef9ff;
}

.nc-coverage-result strong {
    color: var(--nc-dark);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.nc-coverage-result span {
    color: var(--nc-muted);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.nc-coverage-result.is-available {
    border-color: rgba(11, 171, 100, 0.28);
    background: #eefbf5;
}

.nc-coverage-result.is-available strong {
    color: #087b48;
}

.nc-coverage-result.is-review {
    border-color: rgba(245, 130, 32, 0.32);
    background: #fff6ed;
}

.nc-coverage-result.is-review strong {
    color: #c45b08;
}

.leaflet-container {
    font-family: 'Open Sans', Arial, sans-serif;
}

.leaflet-popup-content {
    color: var(--nc-dark);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.nc-form {
    padding: 24px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    background: var(--nc-white);
    box-shadow: 0 18px 42px rgba(8, 52, 95, 0.12);
}

.nc-form label {
    display: grid;
    gap: 7px;
    color: var(--nc-dark);
    font-weight: 900;
}

.nc-form input:not([type="checkbox"]),
.nc-form select {
    min-height: 48px;
    padding: 0 13px;
    border: 1px solid rgba(8, 52, 95, 0.18);
    border-radius: 8px;
    color: var(--nc-ink);
    font: inherit;
    background: var(--nc-white);
}

.nc-form input:not([type="checkbox"]):focus,
.nc-form select:focus {
    outline: 3px solid rgba(32, 199, 244, 0.22);
    border-color: var(--nc-blue);
}

.nc-form button {
    width: 100%;
    border: 0;
}

.nc-payments {
    background: var(--nc-white);
}

.nc-payments__grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 32px;
    align-items: center;
}

.nc-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nc-payment-grid article {
    padding: 24px;
}

.nc-payment-grid i,
.nc-proof-grid i {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-orange), #f7aa42);
    font-size: 22px;
}

.nc-payment-grid h3,
.nc-proof-grid h3 {
    margin: 0 0 10px;
    color: var(--nc-dark);
    font-size: 20px;
    line-height: 1.18;
}

.nc-payment-grid p,
.nc-proof-grid p {
    margin: 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.nc-payment-grid strong {
    color: var(--nc-dark);
    font-weight: 900;
}

.nc-payment-grid span {
    display: block;
    margin-top: 12px;
    color: var(--nc-blue);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 900;
}

.nc-client-portal {
    background: linear-gradient(135deg, #eef9ff, #ffffff);
}

.nc-client-portal__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.nc-client-portal__actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-client-portal__micro {
    margin: 14px 0 0;
    color: var(--nc-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.nc-client-portal__micro a {
    color: var(--nc-blue);
    font-size: 13px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nc-client-portal__micro a:hover {
    color: var(--nc-orange);
}

.nc-client-portal__panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nc-client-portal__panel article {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 14px 34px rgba(8, 52, 95, 0.09);
}

.nc-client-portal__panel i {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-blue), var(--nc-cyan));
    font-size: 22px;
}

.nc-client-portal__panel h3 {
    margin: 0 0 10px;
    color: var(--nc-dark);
    font-size: 20px;
    line-height: 1.18;
}

.nc-client-portal__panel p {
    margin: 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.nc-addons {
    background: linear-gradient(180deg, #ffffff, #f4f8fb);
}

.nc-addons__block {
    margin-top: 26px;
}

.nc-addons__intro {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.nc-addons__intro > span {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-blue), var(--nc-cyan));
    font-size: 23px;
}

.nc-addons__intro h3 {
    margin: 0;
    color: var(--nc-dark);
    font-size: 28px;
    line-height: 1.1;
}

.nc-addons__intro .nc-kicker,
.nc-addons__cta .nc-kicker {
    margin-bottom: 5px;
}

.nc-addons__copy {
    max-width: 760px;
    margin: -4px 0 18px 66px;
    color: var(--nc-muted);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
}

.nc-addon-grid {
    display: grid;
    gap: 18px;
}

.nc-addon-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nc-addon-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nc-addon-card,
.nc-addon-note {
    padding: 24px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 14px 34px rgba(8, 52, 95, 0.08);
}

.nc-addon-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nc-addon-card > i {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: var(--nc-blue);
    font-size: 22px;
}

.nc-addon-card h4 {
    margin: 0;
    color: var(--nc-dark);
    font-size: 22px;
    line-height: 1.18;
}

.nc-addon-card__price {
    color: var(--nc-orange);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.nc-addon-card__price small {
    color: var(--nc-blue);
    font-size: 15px;
    font-weight: 900;
}

.nc-addon-card p,
.nc-addon-note p {
    margin: 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.nc-addon-card ul,
.nc-addon-note ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    list-style: none;
}

.nc-addon-card li,
.nc-addon-note li {
    display: flex;
    gap: 8px;
    color: #31516b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.nc-addon-card li i,
.nc-addon-note li i {
    margin-top: 2px;
    color: var(--nc-cyan);
}

.nc-addon-card .nc-btn {
    width: 100%;
    margin-top: auto;
}

.nc-addon-card__link {
    color: var(--nc-blue);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.nc-addon-card__link:hover {
    color: var(--nc-orange);
}

.nc-addon-card--compact {
    min-height: 100%;
}

.nc-addon-note {
    background: linear-gradient(135deg, #eef9ff, #ffffff);
    border-color: rgba(0, 139, 210, 0.18);
}

.nc-addon-note strong {
    display: block;
    margin-bottom: 10px;
    color: var(--nc-orange);
    font-size: 16px;
    font-weight: 900;
}

.nc-addons__bottom {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 0.86fr 1.4fr;
    gap: 18px;
    align-items: stretch;
}

.nc-addon-card--box > span {
    color: var(--nc-blue);
    font-size: 13px;
    font-weight: 900;
}

.nc-addons__cta {
    padding: 28px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-dark), var(--nc-blue));
    box-shadow: 0 18px 42px rgba(8, 52, 95, 0.14);
}

.nc-addons__cta h3 {
    max-width: 720px;
    margin: 0;
    color: var(--nc-white);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.nc-addons__cta > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-addons__micro {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
}

.nc-checks {
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(8, 52, 95, 0.14);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background: #f8fbfd;
}

.nc-checks legend {
    padding: 0 6px;
    color: var(--nc-dark);
    font-size: 14px;
    font-weight: 900;
}

.nc-form .nc-checks label {
    min-height: 44px;
    padding: 10px;
    border: 1px solid rgba(8, 52, 95, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--nc-white);
    color: var(--nc-ink);
    font-size: 13px;
    font-weight: 800;
}

.nc-checks input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    accent-color: var(--nc-orange);
}

.nc-checks span {
    color: var(--nc-ink);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
}

.nc-tv {
    color: var(--nc-white);
    background: linear-gradient(135deg, #07335e, #007fc4);
}

.nc-tv .nc-kicker,
.nc-final-cta .nc-kicker {
    color: #ffd8b8;
}

.nc-tv h2,
.nc-final-cta h2 {
    color: var(--nc-white);
}

.nc-tv p,
.nc-final-cta p {
    color: rgba(255, 255, 255, 0.88);
}

.nc-tv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.nc-tv__visual {
    min-height: 300px;
    padding: 20px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-content: end;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.nc-tv__visual span {
    padding: 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--nc-dark);
    background: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 900;
}

.nc-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.nc-stat-grid article {
    padding: 26px 20px;
    text-align: center;
}

.nc-stat-grid strong {
    display: block;
    color: var(--nc-orange);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.nc-stat-grid span {
    display: block;
    margin-top: 8px;
    color: var(--nc-dark);
    font-size: 14px;
    font-weight: 800;
}

.nc-proof-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nc-proof-grid article {
    padding: 24px;
}

.nc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nc-testimonial-grid article {
    padding: 24px;
}

.nc-testimonial-grid p {
    margin: 0 0 18px;
    color: var(--nc-dark);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 800;
}

.nc-testimonial-grid span {
    color: var(--nc-blue);
    font-size: 13px;
    font-weight: 900;
}

.nc-faq__grid {
    display: grid;
    grid-template-columns: 0.78fr 1.2fr;
    gap: 28px;
}

.nc-accordion details {
    margin-bottom: 10px;
    padding: 16px 18px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
}

.nc-accordion summary {
    color: var(--nc-dark);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.nc-accordion p {
    margin: 12px 0 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.nc-final-cta {
    padding: 62px 0;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-blue), var(--nc-cyan));
    text-align: center;
}

.nc-final-cta .nc-btn {
    margin-top: 10px;
}

.nc-footer {
    padding: 56px 0 0;
    width: 100%;
    height: auto;
    clear: both;
    float: none;
    color: rgba(255, 255, 255, 0.82);
    background: #062a4d;
}

.nc-footer__grid {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
    gap: 30px;
}

.nc-footer h3 {
    margin: 0 0 14px;
    color: var(--nc-white);
    font-size: 16px;
}

.nc-footer p,
.nc-footer a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
}

.nc-footer a {
    display: block;
    margin-bottom: 9px;
    text-decoration: none;
}

.nc-footer a:hover {
    color: var(--nc-cyan);
}

.nc-logo--footer img {
    width: 170px;
    margin-bottom: 16px;
}

.nc-social {
    display: flex;
    gap: 10px;
}

.nc-social a {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: rgba(255, 255, 255, 0.12);
}

.nc-footer__bottom {
    width: min(1120px, calc(100% - 32px));
    margin: 36px auto 0;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.nc-footer__bottom p {
    margin: 0;
    font-size: 13px;
}

.nc-footer__counter {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.nc-footer__counter i {
    color: var(--nc-orange);
}

.nc-whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: #25d366;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
    font-size: 30px;
    text-decoration: none;
}

.nc-whatsapp-float:hover {
    color: var(--nc-white);
    transform: translateY(-2px);
}

.nc-intent-strip {
    padding: 18px 0;
    background: var(--nc-white);
    border-bottom: 1px solid var(--nc-line);
}

.nc-intent-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.nc-intent-strip a {
    min-height: 86px;
    padding: 16px;
    border: 1px solid rgba(8, 52, 95, 0.12);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    color: var(--nc-dark);
    background: #f8fbfd;
    text-decoration: none;
}

.nc-intent-strip a:hover {
    border-color: rgba(0, 139, 210, 0.28);
    color: var(--nc-dark);
    background: #eef9ff;
    transform: translateY(-1px);
}

.nc-intent-strip i {
    grid-row: 1 / 3;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-blue), var(--nc-cyan));
}

.nc-intent-strip span {
    color: var(--nc-dark);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.nc-intent-strip small {
    color: var(--nc-muted);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 800;
}

.nc-patrias-banner {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    color: var(--nc-white);
    background: var(--nc-patrias-dark);
    isolation: isolate;
    overflow: hidden;
}

.nc-patrias-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.nc-patrias-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 72px;
    z-index: 1;
    background: linear-gradient(0deg, rgba(244, 248, 251, 1), rgba(244, 248, 251, 0));
    pointer-events: none;
}

.nc-patrias-banner__content {
    position: relative;
    z-index: 2;
    padding: 68px 0 74px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 36px;
    align-items: center;
}

.nc-patrias-banner__copy h2 {
    max-width: 780px;
    margin: 0 0 16px;
    color: var(--nc-white);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
}

.nc-patrias-banner__copy > p:not(.nc-kicker):not(.nc-patrias-banner__fineprint) {
    max-width: 710px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 750;
}

.nc-patrias-banner__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-patrias-banner__fineprint {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.nc-patrias-banner__benefits {
    display: grid;
    gap: 12px;
}

.nc-patrias-banner__benefits span {
    min-height: 72px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--nc-white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
}

.nc-patrias-banner__benefits i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--nc-patrias-red);
    background: var(--nc-white);
}

.nc-patrias-banner .nc-kicker {
    color: #ffd6dc;
}

.nc-patrias-banner__actions .nc-btn--primary {
    background: var(--nc-orange);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.nc-patrias-banner__actions .nc-btn--primary:hover {
    background: #ff973b;
}

.nc-combos {
    background: linear-gradient(180deg, #f4f8fb, #ffffff);
}

.nc-combo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nc-combo-card {
    position: relative;
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--nc-white);
    box-shadow: 0 16px 38px rgba(8, 52, 95, 0.1);
}

.nc-combo-card__tag {
    align-self: flex-start;
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--nc-blue);
    background: #eef9ff;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 900;
}

.nc-combo-card h3 {
    margin: 0;
    color: var(--nc-dark);
    font-size: 26px;
    line-height: 1.08;
}

.nc-combo-card p {
    margin: 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
}

.nc-combo-card__price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: var(--nc-orange);
}

.nc-combo-card__price small,
.nc-combo-card__price em {
    color: var(--nc-blue);
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
}

.nc-combo-card__price span {
    color: var(--nc-orange);
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
}

.nc-combo-card ul,
.nc-legal ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.nc-combo-card li,
.nc-legal li {
    display: flex;
    gap: 8px;
    color: #31516b;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.nc-combo-card li i,
.nc-legal li i {
    margin-top: 2px;
    color: var(--nc-cyan);
}

.nc-combo-card .nc-btn {
    width: 100%;
    margin-top: auto;
}

.nc-combos__notice {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(0, 139, 210, 0.18);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #eef9ff;
}

.nc-combos__notice i {
    margin-top: 3px;
    color: var(--nc-blue);
}

.nc-combos__notice p {
    margin: 0;
    color: var(--nc-muted);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

.nc-legal {
    background: var(--nc-light);
}

.nc-legal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.nc-legal article {
    padding: 28px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 14px 34px rgba(8, 52, 95, 0.08);
}

.nc-legal h2 {
    margin: 0 0 16px;
    color: var(--nc-dark);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.08;
}

.nc-legal p {
    margin: 0;
    color: var(--nc-muted);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
}

.nc-legal__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-page {
    background: var(--nc-white);
}

.nc-page-hero {
    padding: 118px 0 72px;
    color: var(--nc-white);
    background: linear-gradient(135deg, var(--nc-dark), var(--nc-blue));
    background-position: center;
    background-size: cover;
}

.nc-page-hero .nc-kicker,
.nc-page-hero h1,
.nc-page-hero p,
.nc-page-hero a {
    color: var(--nc-white);
}

.nc-page-hero .nc-btn--light {
    color: var(--nc-dark);
}

.nc-page-hero .nc-btn--light:hover {
    color: var(--nc-dark);
}

/* Fiberlan-inspired Netcond skin */
:root {
    --nc-blue: #008bd2;
    --nc-cyan: #20c7f4;
    --nc-orange: #f58220;
    --nc-dark: #23272c;
    --nc-ink: #2b2b2b;
    --nc-muted: #62717a;
    --nc-light: #f4f5f9;
    --nc-white: #ffffff;
    --nc-line: rgba(63, 71, 84, 0.14);
    --nc-charcoal: #262a26;
    --nc-slate: #3f4754;
}

body.netcond-site {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--nc-ink);
    background: var(--nc-white);
}

.nc-btn,
.nc-nav a,
.nc-mobile-menu__panel a,
.nc-form input,
.nc-form select,
.nc-form button {
    font-family: 'Open Sans', Arial, sans-serif;
}

.nc-header {
    background: var(--nc-dark);
    border-bottom: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: none;
}

.nc-header__top {
    background: var(--nc-charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nc-header__top-inner {
    width: min(1180px, calc(100% - 28px));
    min-height: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nc-header__social {
    display: flex;
    gap: 10px;
}

.nc-header__social a {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    color: var(--nc-dark);
    background: var(--nc-blue);
    text-decoration: none;
}

.nc-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nc-white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.nc-header__phone i {
    color: var(--nc-blue);
}

.nc-header__phone small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.nc-header__phone span {
    color: var(--nc-blue);
    font-size: 16px;
    font-weight: 900;
}

.nc-header__inner {
    min-height: 82px;
}

.nc-logo {
    padding: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    background: transparent;
}

.nc-logo img {
    width: 154px;
    max-height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.nc-nav a {
    color: var(--nc-white);
    font-size: 13px;
    font-weight: 800;
}

.nc-nav a:hover {
    color: var(--nc-blue);
}

.nc-btn {
    border-radius: 5px;
    color: var(--nc-dark);
    font-weight: 900;
    box-shadow: none;
}

.nc-btn:hover {
    color: var(--nc-dark);
}

.nc-btn--primary,
.nc-btn--secondary {
    color: var(--nc-dark);
    background: var(--nc-blue);
    box-shadow: 0 12px 24px rgba(0, 139, 210, 0.18);
}

.nc-btn--primary:hover,
.nc-btn--secondary:hover {
    color: var(--nc-dark);
    background: var(--nc-orange);
}

.nc-btn--ghost,
.nc-btn--light {
    color: var(--nc-white);
    background: var(--nc-slate);
    border-color: rgba(255, 255, 255, 0.16);
}

.nc-btn--ghost:hover,
.nc-btn--light:hover {
    color: var(--nc-dark);
    background: var(--nc-white);
}

.nc-mobile-menu summary {
    color: var(--nc-white);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.nc-mobile-menu__panel {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--nc-dark);
}

.nc-mobile-menu__panel a {
    color: var(--nc-white);
}

.nc-home--fiber {
    background: var(--nc-white);
}

.nc-hero--fiber {
    min-height: 620px;
    padding: 118px 0 70px;
    background: #000;
    overflow: hidden;
    border-bottom: 7px solid var(--nc-patrias-red);
}

.nc-hero--fiber::after {
    height: 120px;
    background: linear-gradient(0deg, rgba(244, 245, 249, 1), rgba(244, 245, 249, 0));
}

.nc-hero-slider,
.nc-hero-slider__item {
    position: absolute;
    inset: 0;
}

.nc-hero-slider {
    z-index: 0;
}

.nc-hero-slider__item {
    opacity: 0;
    background-size: cover;
    background-position: center;
    animation: ncHeroFade 18s infinite;
}

.nc-hero-slider__item--2 {
    animation-delay: 6s;
}

.nc-hero-slider__item--3 {
    animation-delay: 12s;
}

@keyframes ncHeroFade {
    0%, 28% {
        opacity: 1;
        transform: scale(1);
    }

    34%, 100% {
        opacity: 0;
        transform: scale(1.04);
    }
}

.nc-hero--fiber .nc-hero__content {
    align-items: center;
}

.nc-hero--fiber h1 {
    max-width: 760px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.02;
}

.nc-hero--fiber .nc-hero__lead {
    max-width: 650px;
    font-size: clamp(17px, 2vw, 22px);
}

.nc-kicker {
    color: var(--nc-blue);
    letter-spacing: 0;
}

.nc-hero--fiber .nc-kicker {
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: var(--nc-white);
    background: rgba(200, 16, 46, 0.84);
    box-shadow: 0 10px 26px rgba(40, 0, 8, 0.22);
}

.nc-hero__deal {
    border-top-color: var(--nc-patrias-red);
    border-radius: 6px;
    color: var(--nc-dark);
}

.nc-hero__deal span,
.nc-hero__deal small {
    color: var(--nc-slate);
}

.nc-hero__deal strong {
    color: var(--nc-patrias-red);
}

.nc-hero-dots {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.nc-hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
}

.nc-hero-dots span:first-child {
    background: var(--nc-patrias-red);
}

.nc-home--fiber .nc-section__head h2::after {
    content: "";
    width: 96px;
    height: 4px;
    margin: 16px auto 0;
    display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nc-patrias-red) 0 40%, var(--nc-white) 40% 60%, var(--nc-patrias-red) 60% 100%);
    box-shadow: 0 0 0 1px rgba(200, 16, 46, 0.16);
}

.nc-section {
    padding: 74px 0;
}

.nc-about-preview {
    background: var(--nc-light);
}

.nc-about-preview__grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 42px;
    align-items: center;
}

.nc-about-preview__media img {
    width: 100%;
    min-height: 360px;
    border-radius: 6px;
    display: block;
    object-fit: cover;
    box-shadow: 0 18px 42px rgba(35, 39, 44, 0.18);
}

.nc-about-preview h2,
.nc-payments-lite h2 {
    margin: 0 0 16px;
    color: var(--nc-slate);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.nc-about-preview p,
.nc-payments-lite p {
    color: var(--nc-muted);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 700;
}

.nc-about-preview__actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-section__head h2,
.nc-coverage h2,
.nc-payments h2,
.nc-tv h2,
.nc-faq h2,
.nc-final-cta h2 {
    color: var(--nc-slate);
}

.nc-section__head p {
    color: var(--nc-muted);
    font-weight: 700;
}

.nc-plans {
    background: #f4f5f9;
}

.nc-plan-card {
    border: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(35, 39, 44, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nc-plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(30deg, var(--nc-cyan), var(--nc-blue));
}

.nc-plan-card:hover,
.nc-plan-card--featured {
    background: linear-gradient(30deg, var(--nc-cyan), var(--nc-blue));
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(0, 239, 0, 0.2);
}

.nc-plan-card:hover h3,
.nc-plan-card:hover .nc-plan-card__speed strong,
.nc-plan-card:hover .nc-plan-card__speed span,
.nc-plan-card:hover .nc-plan-card__ideal,
.nc-plan-card:hover .nc-plan-card__price,
.nc-plan-card:hover .nc-plan-card__price small,
.nc-plan-card:hover li,
.nc-plan-card--featured h3,
.nc-plan-card--featured .nc-plan-card__speed strong,
.nc-plan-card--featured .nc-plan-card__speed span,
.nc-plan-card--featured .nc-plan-card__ideal,
.nc-plan-card--featured .nc-plan-card__price,
.nc-plan-card--featured .nc-plan-card__price small,
.nc-plan-card--featured li {
    color: var(--nc-dark);
}

.nc-plan-card h3 {
    color: var(--nc-slate);
}

.nc-plan-card__speed strong,
.nc-plan-card__speed span {
    color: var(--nc-slate);
}

.nc-plan-card__price {
    color: var(--nc-blue);
}

.nc-plan-card__price small {
    color: var(--nc-slate);
}

.nc-plan-card li i {
    color: var(--nc-blue);
}

.nc-plan-card:hover li i,
.nc-plan-card--featured li i {
    color: var(--nc-dark);
}

.nc-plan-card__tag {
    color: var(--nc-dark);
    background: var(--nc-orange);
}

.nc-plan-card:hover .nc-btn,
.nc-plan-card--featured .nc-btn {
    color: var(--nc-dark);
    background: var(--nc-white);
}

.nc-benefits--fiber {
    padding: 84px 0;
    color: var(--nc-white);
    background: var(--nc-slate);
}

.nc-benefits--fiber__grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 38px;
    align-items: center;
}

.nc-benefits--fiber h2 {
    margin: 0 0 16px;
    color: var(--nc-white);
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
}

.nc-benefits--fiber p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 700;
}

.nc-benefits--fiber__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nc-benefits--fiber .nc-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nc-benefits--fiber .nc-feature-grid article {
    border: 0;
    border-radius: 6px;
    background: var(--nc-white);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.nc-feature-grid i {
    border-radius: 6px;
    color: var(--nc-dark);
    background: var(--nc-blue);
}

.nc-feature-grid h3 {
    color: var(--nc-slate);
}

.nc-feature-grid p {
    color: var(--nc-muted);
}

.nc-payments-lite {
    background: var(--nc-white);
}

.nc-payments-lite__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr auto;
    gap: 28px;
    align-items: center;
}

.nc-payments-lite__items {
    display: grid;
    gap: 10px;
}

.nc-payments-lite__items span {
    min-height: 46px;
    padding: 12px 14px;
    border-left: 5px solid var(--nc-blue);
    border-radius: 5px;
    color: var(--nc-muted);
    background: var(--nc-light);
    font-size: 14px;
    font-weight: 800;
}

.nc-payments-lite__items strong {
    color: var(--nc-slate);
}

.nc-payments-lite__actions {
    display: grid;
    gap: 10px;
}

.nc-final-cta {
    background: linear-gradient(135deg, #0e789c, #0c3d4e);
}

.nc-final-cta h2,
.nc-final-cta p,
.nc-final-cta .nc-kicker {
    color: var(--nc-white);
}

.nc-final-cta .nc-kicker {
    color: var(--nc-orange);
}

.nc-footer {
    background: var(--nc-dark);
}

.nc-footer h3 {
    color: var(--nc-blue);
}

.nc-footer a:hover {
    color: var(--nc-blue);
}

.nc-social a {
    border-radius: 4px;
    color: var(--nc-dark);
    background: var(--nc-blue);
}

.nc-footer__counter i {
    color: var(--nc-blue);
}

.nc-whatsapp-float {
    background: #00c853;
}

@media (prefers-reduced-motion: reduce) {
    .nc-hero-slider__item {
        animation: none;
    }

    .nc-hero-slider__item:first-child {
        opacity: 1;
    }
}

@media (max-width: 1040px) {
    .nc-header__top {
        display: none;
    }

    .nc-about-preview__grid,
    .nc-benefits--fiber__grid,
    .nc-payments-lite__grid {
        grid-template-columns: 1fr;
    }

    .nc-payments-lite__actions {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .nc-logo {
        padding: 0;
    }

    .nc-hero--fiber {
        min-height: auto;
        padding: 92px 0 62px;
    }

    .nc-hero--fiber h1 {
        font-size: 38px;
    }

    .nc-about-preview__media img {
        min-height: 260px;
    }

    .nc-about-preview__actions .nc-btn,
    .nc-benefits--fiber__actions .nc-btn,
    .nc-payments-lite__actions .nc-btn {
        width: 100%;
    }

    .nc-benefits--fiber .nc-feature-grid {
        grid-template-columns: 1fr;
    }

    .nc-plan-card:hover,
    .nc-plan-card--featured {
        transform: none;
    }
}

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

@media (max-width: 1040px) {
    .nc-contact-page .nc-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nc-contact-page .nc-contact-grid {
        grid-template-columns: 1fr;
    }
}

.nc-page-hero h1 {
    max-width: 780px;
    margin: 12px 0 18px;
    font-size: 56px;
    line-height: 1.02;
}

.nc-page-hero p {
    max-width: 720px;
    font-size: 19px;
    line-height: 1.7;
}

.nc-page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.nc-breadcrumb {
    margin-bottom: 28px;
}

.nc-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nc-breadcrumb li,
.nc-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
}

.nc-breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.58);
}

.nc-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nc-info-card {
    min-height: 210px;
    padding: 24px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 18px 36px rgba(8, 52, 95, 0.08);
}

.nc-info-card i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    color: var(--nc-white);
    background: var(--nc-blue);
}

.nc-info-card h2 {
    margin: 0 0 10px;
    color: var(--nc-dark);
    font-size: 21px;
}

.nc-info-card p,
.nc-info-card a {
    color: var(--nc-muted);
    font-size: 15px;
    line-height: 1.6;
}

.nc-contact-form-section {
    background: var(--nc-light);
}

.nc-contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: start;
}

.nc-contact-shortcuts {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.nc-contact-shortcuts a {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    color: var(--nc-dark);
    background: var(--nc-white);
    font-weight: 900;
}

.nc-form-panel {
    padding: 28px;
    border: 1px solid var(--nc-line);
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 18px 36px rgba(8, 52, 95, 0.08);
}

.nc-form-panel p {
    margin-bottom: 16px;
    color: var(--nc-muted);
}

.nc-about-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 34px;
    align-items: start;
}

.nc-about-intro h2,
.nc-contact-form-grid h2 {
    margin: 0 0 14px;
    color: var(--nc-dark);
    font-size: 36px;
}

.nc-about-intro p,
.nc-contact-form-grid p {
    color: var(--nc-muted);
    font-size: 17px;
    line-height: 1.75;
}

.nc-about-values {
    background: var(--nc-light);
}

.nc-about-values__grid {
    display: grid;
    gap: 22px;
}

.nc-about-values article {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    padding: 24px;
    border-radius: 8px;
    background: var(--nc-white);
    box-shadow: 0 18px 36px rgba(8, 52, 95, 0.08);
}

.nc-about-values article:nth-child(even) img {
    order: 2;
}

.nc-about-values img {
    width: 100%;
    min-height: 320px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.nc-about-values h2 {
    margin: 0 0 12px;
    color: var(--nc-dark);
    font-size: 32px;
}

.nc-about-values p {
    color: var(--nc-muted);
    font-size: 16px;
    line-height: 1.75;
}

.nc-content {
    max-width: 860px;
}

.nc-content h2,
.nc-content h3,
.nc-content h4 {
    margin: 28px 0 12px;
    color: var(--nc-dark);
}

.nc-content p,
.nc-content li {
    color: var(--nc-muted);
    font-size: 16px;
    line-height: 1.75;
}

.nc-content ul,
.nc-content ol {
    margin: 16px 0 16px 22px;
}

@media (max-width: 1040px) {
    .nc-nav,
    .nc-header__actions {
        display: none;
    }

    .nc-mobile-menu {
        display: block;
    }

    .nc-hero {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .nc-hero__content,
    .nc-patrias-banner__content,
    .nc-coverage__grid,
    .nc-coverage__tool,
    .nc-payments__grid,
    .nc-client-portal__grid,
    .nc-tv__grid,
    .nc-faq__grid,
    .nc-addons__bottom {
        grid-template-columns: 1fr;
    }

    .nc-hero__deal {
        max-width: 360px;
    }

    .nc-patrias-banner__content {
        padding: 58px 0 70px;
    }

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

    .nc-plan-grid,
    .nc-feature-grid,
    .nc-stat-grid,
    .nc-payment-grid,
    .nc-client-portal__panel,
    .nc-proof-grid,
    .nc-addon-grid--three,
    .nc-intent-strip__grid,
    .nc-combo-grid,
    .nc-legal__grid,
    .nc-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nc-contact-form-grid,
    .nc-about-intro,
    .nc-about-values article {
        grid-template-columns: 1fr;
    }

    .nc-about-values article:nth-child(even) img {
        order: 0;
    }
}

@media (max-width: 640px) {
    .admin-bar .nc-header {
        top: 0;
    }

    .nc-shell,
    .nc-footer__grid,
    .nc-footer__bottom {
        width: min(100% - 24px, 1120px);
    }

    .nc-header__inner {
        min-height: 68px;
    }

    .nc-logo img {
        width: 134px;
    }

    .nc-hero {
        padding: 96px 0 58px;
    }

    .nc-hero h1 {
        font-size: 40px;
        line-height: 1.02;
    }

    .nc-hero__lead {
        font-size: 17px;
    }

    .nc-hero__actions .nc-btn,
    .nc-patrias-banner__actions .nc-btn,
    .nc-coverage .nc-btn,
    .nc-coverage__actions .nc-btn,
    .nc-payments .nc-btn,
    .nc-client-portal__actions .nc-btn,
    .nc-addons__cta .nc-btn {
        width: 100%;
    }

    .nc-badges span {
        width: calc(50% - 5px);
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nc-section {
        padding: 64px 0;
    }

    .nc-patrias-banner {
        min-height: auto;
    }

    .nc-patrias-banner__content {
        padding: 52px 0 62px;
    }

    .nc-patrias-banner__copy h2 {
        font-size: 34px;
    }

    .nc-patrias-banner__copy > p:not(.nc-kicker):not(.nc-patrias-banner__fineprint) {
        font-size: 16px;
    }

    .nc-patrias-banner__benefits {
        grid-template-columns: 1fr;
    }

    .nc-plan-grid,
    .nc-feature-grid,
    .nc-stat-grid,
    .nc-testimonial-grid,
    .nc-payment-grid,
    .nc-proof-grid,
    .nc-client-portal__panel,
    .nc-addon-grid--two,
    .nc-addon-grid--three,
    .nc-intent-strip__grid,
    .nc-combo-grid,
    .nc-legal__grid,
    .nc-checks,
    .nc-footer__grid {
        grid-template-columns: 1fr;
    }

    .nc-intent-strip a {
        min-height: 74px;
    }

    .nc-legal article {
        padding: 22px;
    }

    .nc-legal__actions .nc-btn {
        width: 100%;
    }

    .nc-addons__intro {
        align-items: flex-start;
    }

    .nc-addons__intro h3 {
        font-size: 24px;
    }

    .nc-addons__copy {
        margin-left: 0;
    }

    .nc-addons__cta {
        padding: 24px;
    }

    .nc-plan-card--featured {
        transform: none;
    }

    .nc-plan-card h3 {
        padding-right: 96px;
    }

    .nc-tv__visual {
        min-height: 260px;
        grid-template-columns: 1fr;
    }

    .nc-coverage-map {
        height: 320px;
        min-height: 320px;
    }

    .nc-map-card {
        padding: 14px;
    }

    .nc-contact-grid,
    .nc-contact-form-grid,
    .nc-about-values__grid,
    .nc-about-values article,
    .nc-about-intro {
        grid-template-columns: 1fr;
    }

    .nc-page-hero h1 {
        font-size: 36px;
    }

    .nc-page-hero {
        padding: 92px 0 58px;
    }

    .nc-page-hero__actions .nc-btn {
        width: 100%;
    }

    .nc-map-card__head {
        display: grid;
    }

    .nc-footer__bottom {
        flex-direction: column;
    }

    .nc-whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}
