:root {
    --nt-ink: #07162e;
    --nt-ink-2: #10233f;
    --nt-blue: #1376f8;
    --nt-cyan: #13b8de;
    --nt-mint: #14b886;
    --nt-orange: #ff8a3d;
    --nt-paper: #fbfcfe;
    --nt-soft: #f3f7fb;
    --nt-line: #dbe5ef;
    --nt-muted: #5e6f84;
    --nt-white: #ffffff;
    --nt-shadow-sm: 0 8px 28px rgba(7, 22, 46, 0.07);
    --nt-shadow: 0 24px 72px rgba(7, 22, 46, 0.12);
    --nt-radius-sm: 10px;
    --nt-radius: 18px;
    --nt-radius-lg: 28px;
    --nt-container: 1440px;
}

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

html {
    scroll-behavior: smooth;
}

body.novatec-site {
    margin: 0;
    color: var(--nt-ink);
    background: var(--nt-paper);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.novatec-site.admin-bar .nt-site-header {
    top: 32px;
}

body.novatec-site img {
    display: block;
    max-width: 100%;
    height: auto;
}

body.novatec-site a {
    color: inherit;
    text-decoration: none;
}

body.novatec-site button,
body.novatec-site input,
body.novatec-site textarea,
body.novatec-site select {
    font: inherit;
}

body.novatec-site button,
body.novatec-site a {
    -webkit-tap-highlight-color: transparent;
}

body.novatec-site :focus-visible {
    outline: 3px solid rgba(19, 118, 248, 0.35);
    outline-offset: 3px;
}

.screen-reader-text,
.nt-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nt-skip-link:focus {
    z-index: 99999;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    clip: auto;
    background: var(--nt-ink);
    color: var(--nt-white);
    border-radius: 8px;
}

.nt-container {
    width: min(calc(100% - 80px), var(--nt-container));
    margin-inline: auto;
}

.nt-narrow {
    max-width: 880px;
}

.nt-site-main {
    min-height: 60vh;
    overflow: hidden;
}

.elementor-section.elementor-section-boxed > .elementor-container,
.e-con-boxed > .e-con-inner {
    max-width: none !important;
}

.elementor-widget-shortcode,
.elementor-widget-shortcode > .elementor-widget-container {
    width: 100%;
}

/* Header */
.nt-site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    padding: 0;
    background: rgba(251, 252, 254, 0.94);
    backdrop-filter: blur(18px);
}

.nt-header-shell {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    width: 100%;
    min-height: 74px;
    margin: 0 auto;
    padding: 0 max(28px, calc((100% - 1440px) / 2));
    border: 0;
    border-bottom: 1px solid var(--nt-line);
    border-radius: 0;
    background: var(--nt-white);
    box-shadow: 0 4px 18px rgba(7, 22, 46, 0.035);
}

.nt-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.nt-brand img {
    width: 174px;
    mix-blend-mode: multiply;
}

.nt-primary-nav {
    justify-self: center;
}

.nt-menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 1.8vw, 30px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nt-menu a {
    position: relative;
    display: block;
    padding: 26px 0 24px;
    color: #34445b;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nt-menu a::after {
    position: absolute;
    right: 0;
    bottom: 15px;
    left: 0;
    height: 2px;
    background: var(--nt-blue);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 180ms ease, transform 180ms ease;
}

.nt-menu a:hover,
.nt-menu .current-menu-item > a,
.nt-menu .current_page_item > a {
    color: var(--nt-ink);
}

.nt-menu a:hover::after,
.nt-menu .current-menu-item > a::after,
.nt-menu .current_page_item > a::after {
    opacity: 1;
    transform: scaleX(1);
}

.nt-header-actions,
.nt-button-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nt-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    border: 1px solid var(--nt-line);
    border-radius: 12px;
    background: var(--nt-white);
    cursor: pointer;
}

.nt-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--nt-ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.nt-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nt-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.nt-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Reusable UI */
.nt-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.nt-button-dark {
    background: var(--nt-ink);
    color: var(--nt-white) !important;
    box-shadow: 0 10px 26px rgba(7, 22, 46, 0.16);
}

.nt-button-dark:hover {
    background: #102647;
    box-shadow: 0 14px 34px rgba(7, 22, 46, 0.22);
}

.nt-button-blue {
    background: var(--nt-blue);
    color: var(--nt-white) !important;
    box-shadow: 0 10px 26px rgba(19, 118, 248, 0.2);
}

.nt-button-blue:hover {
    background: #0568e8;
}

.nt-button-ghost {
    border-color: #c8d5e2;
    background: var(--nt-white);
    color: var(--nt-ink) !important;
}

.nt-button-ghost:hover {
    border-color: var(--nt-blue);
    box-shadow: var(--nt-shadow-sm);
}

.nt-button-small {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 12px;
}

.nt-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nt-blue) !important;
    font-size: 14px;
    font-weight: 700;
}

.nt-text-link i,
.nt-button i {
    transition: transform 180ms ease;
}

.nt-text-link:hover i,
.nt-button:hover i {
    transform: translateX(3px);
}

.nt-eyebrow,
.nt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #087b9d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.nt-eyebrow::before,
.nt-hero-badge::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nt-cyan);
    box-shadow: 0 0 0 5px rgba(19, 184, 222, 0.1);
    content: "";
}

.nt-hero-badge {
    padding: 11px 16px;
    border: 1px solid rgba(19, 184, 222, 0.26);
    border-radius: 999px;
    background: #f2fcff;
}

.nt-section {
    padding: 112px 0;
}

.nt-section-soft {
    background: var(--nt-soft);
    border-top: 1px solid #e6edf4;
    border-bottom: 1px solid #e6edf4;
}

.nt-section-dark {
    background: var(--nt-ink);
    color: var(--nt-white);
}

.nt-section-heading {
    max-width: 760px;
    margin-bottom: 54px;
}

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

.nt-section-heading-wide {
    max-width: 940px;
}

.nt-section-heading h1,
.nt-section-heading h2,
.nt-page-hero h1,
.nt-page-title h1,
.nt-error-page h1 {
    margin: 14px 0 18px;
    color: var(--nt-ink);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.nt-section-heading h2 {
    font-size: clamp(34px, 4vw, 58px);
}

.nt-section-heading p,
.nt-page-hero p,
.nt-page-title p {
    max-width: 720px;
    margin: 0;
    color: var(--nt-muted);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.7;
}

.nt-section-heading-centered p {
    margin-inline: auto;
}

/* Homepage hero */
.nt-hero {
    position: relative;
    padding: 86px 0 0;
    background: var(--nt-paper);
}

.nt-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(620px, 1.34fr);
    align-items: center;
    gap: clamp(44px, 5vw, 88px);
}

.nt-hero-copy {
    padding-bottom: 72px;
}

.nt-hero h1 {
    max-width: 720px;
    margin: 28px 0 24px;
    color: var(--nt-ink);
    font-size: clamp(54px, 5.4vw, 88px);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.99;
}

.nt-hero h1 span {
    color: var(--nt-blue);
}

.nt-hero-lead {
    max-width: 650px;
    margin: 0 0 30px;
    color: var(--nt-muted);
    font-size: clamp(17px, 1.5vw, 21px);
}

.nt-value-list {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 26px;
    margin: 0 0 34px;
    padding: 0;
    color: #53667c;
    font-size: 14px;
    list-style: none;
}

.nt-value-list li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nt-value-list i {
    color: var(--nt-cyan);
}

.nt-hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--nt-line);
    color: var(--nt-muted);
    font-size: 13px;
}

.nt-hero-meta strong {
    margin-right: 5px;
    color: var(--nt-ink);
    font-size: 17px;
}

.nt-product-preview {
    position: relative;
    align-self: stretch;
    min-height: 720px;
    padding: 16px;
    border: 1px solid var(--nt-line);
    border-radius: 24px;
    background: var(--nt-white);
    box-shadow: var(--nt-shadow);
}

.nt-dashboard-frame {
    display: grid;
    grid-template-columns: 162px minmax(0, 1fr);
    min-height: 686px;
    overflow: hidden;
    border: 1px solid #d8e3ed;
    border-radius: 15px;
    background: var(--nt-white);
}

.nt-demo-sidebar {
    display: flex;
    flex-direction: column;
    padding: 22px 13px 14px;
    border-right: 1px solid var(--nt-line);
    background: #fbfcfe;
}

.nt-demo-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 6px 26px;
    color: var(--nt-ink);
    font-size: 13px;
    font-weight: 800;
}

.nt-demo-sidebar-brand span {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 8px;
    background: var(--nt-ink);
    color: var(--nt-white);
    font-size: 11px;
}

.nt-demo-nav-label {
    margin: 16px 9px 8px;
    color: #8b9aab;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nt-demo-nav {
    display: grid;
    gap: 3px;
}

.nt-demo-nav span {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    border-radius: 7px;
    color: #53667b;
    font-size: 9px;
    font-weight: 600;
}

.nt-demo-nav span.active {
    background: var(--nt-ink);
    color: var(--nt-white);
}

.nt-demo-nav i {
    width: 12px;
    color: var(--nt-blue);
    text-align: center;
}

.nt-demo-nav span.active i {
    color: var(--nt-cyan);
}

.nt-demo-user {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding: 12px 8px 2px;
    border-top: 1px solid var(--nt-line);
    color: var(--nt-ink);
    font-size: 9px;
    font-weight: 700;
}

.nt-avatar {
    display: inline-grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: #ddecff;
    color: var(--nt-blue);
    font-size: 10px;
    font-weight: 800;
}

.nt-demo-main {
    min-width: 0;
    padding: 21px;
}

.nt-demo-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 21px;
}

.nt-demo-topbar p {
    margin: 2px 0 0;
    color: var(--nt-muted);
    font-size: 8px;
}

.nt-demo-topbar strong {
    font-size: 15px;
}

.nt-demo-action {
    padding: 9px 12px;
    border-radius: 7px;
    background: var(--nt-ink);
    color: var(--nt-white);
    font-size: 8px;
    font-weight: 700;
}

.nt-demo-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.nt-demo-kpi,
.nt-demo-panel {
    border: 1px solid var(--nt-line);
    border-radius: 9px;
    background: var(--nt-white);
}

.nt-demo-kpi {
    padding: 13px;
}

.nt-demo-kpi span {
    display: block;
    color: var(--nt-muted);
    font-size: 7px;
}

.nt-demo-kpi strong {
    display: block;
    margin: 5px 0 3px;
    font-size: 18px;
}

.nt-demo-kpi em {
    color: var(--nt-blue);
    font-size: 7px;
    font-style: normal;
    font-weight: 700;
}

.nt-demo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 11px;
}

.nt-demo-panel {
    min-width: 0;
    padding: 14px;
}

.nt-demo-panel h3 {
    margin: 0 0 12px;
    font-size: 9px;
}

.nt-demo-project,
.nt-demo-activity,
.nt-demo-file {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 11px 0;
    border-top: 1px solid #edf1f5;
}

.nt-demo-project:first-of-type,
.nt-demo-activity:first-of-type,
.nt-demo-file:first-of-type {
    border-top: 0;
}

.nt-demo-icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 8px;
    background: #eef7ff;
    color: var(--nt-blue);
    font-size: 9px;
}

.nt-demo-project strong,
.nt-demo-activity strong,
.nt-demo-file strong {
    display: block;
    overflow: hidden;
    color: var(--nt-ink);
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nt-demo-project small,
.nt-demo-activity small,
.nt-demo-file small {
    display: block;
    margin-top: 2px;
    color: var(--nt-muted);
    font-size: 7px;
}

.nt-demo-status {
    padding: 4px 6px;
    border-radius: 999px;
    background: #e8fbf3;
    color: #11815f;
    font-size: 6px;
    font-weight: 800;
}

.nt-demo-status.review {
    background: #fff5e8;
    color: #bd6908;
}

.nt-demo-progress {
    height: 4px;
    margin-top: 7px;
    overflow: hidden;
    border-radius: 99px;
    background: #edf2f7;
}

.nt-demo-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--nt-cyan);
}

.nt-demo-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
    margin-top: 11px;
}

.nt-demo-bottom-grid .nt-demo-panel {
    min-height: 132px;
}

.nt-demo-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--nt-blue);
    font-size: 7px;
    font-weight: 700;
}

/* Trust and service sections */
.nt-trust-strip {
    border-top: 1px solid var(--nt-line);
    border-bottom: 1px solid var(--nt-line);
    background: var(--nt-white);
}

.nt-trust-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 44px;
    min-height: 118px;
}

.nt-trust-layout > strong {
    color: var(--nt-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.nt-sector-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nt-sector-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #40526a;
    font-size: 13px;
    font-weight: 700;
}

.nt-sector-list i {
    color: var(--nt-blue);
}

.nt-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nt-service-card {
    position: relative;
    min-height: 360px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius);
    background: var(--nt-white);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nt-service-card:hover {
    transform: translateY(-6px);
    border-color: #b9d1e7;
    box-shadow: var(--nt-shadow-sm);
}

.nt-service-number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: #d5e0ea;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.nt-service-icon,
.nt-feature-icon,
.nt-process-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    background: #eaf7fc;
    color: #078ab0;
    font-size: 20px;
}

.nt-service-card:nth-child(2) .nt-service-icon {
    background: #eef0ff;
    color: #5b65d8;
}

.nt-service-card:nth-child(3) .nt-service-icon {
    background: #eaf9f4;
    color: #138264;
}

.nt-service-card h3,
.nt-feature-card h3,
.nt-case-card h3,
.nt-process-card h3,
.nt-plan-card h3 {
    margin: 26px 0 12px;
    color: var(--nt-ink);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nt-service-card p,
.nt-feature-card p,
.nt-case-card p,
.nt-process-card p,
.nt-plan-card p {
    margin: 0 0 24px;
    color: var(--nt-muted);
    font-size: 14px;
}

.nt-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.nt-service-tags li,
.nt-chip {
    padding: 6px 9px;
    border: 1px solid #d9e6f0;
    border-radius: 999px;
    background: #f8fbfd;
    color: #576b82;
    font-size: 10px;
    font-weight: 700;
}

/* Cases */
.nt-case-featured {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 580px;
    overflow: hidden;
    border: 1px solid #243752;
    border-radius: var(--nt-radius-lg);
    background: var(--nt-ink);
    color: var(--nt-white);
}

.nt-case-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 82px);
}

.nt-case-copy .nt-eyebrow {
    color: var(--nt-cyan);
}

.nt-case-copy h3 {
    margin: 20px 0 20px;
    color: var(--nt-white);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.nt-case-copy > p {
    max-width: 600px;
    margin: 0 0 28px;
    color: #bdcad8;
    font-size: 17px;
}

.nt-case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 10px 0 34px;
}

.nt-case-metrics div {
    padding-left: 14px;
    border-left: 2px solid var(--nt-cyan);
}

.nt-case-metrics strong {
    display: block;
    color: var(--nt-white);
    font-size: 20px;
}

.nt-case-metrics span {
    color: #8fa1b5;
    font-size: 11px;
}

.nt-case-media {
    display: flex;
    align-items: center;
    padding: 60px 0 60px 48px;
    background: #10233f;
}

.nt-case-media img {
    width: 100%;
    border: 10px solid #f3f6f9;
    border-right: 0;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.nt-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.nt-case-card {
    min-height: 330px;
    padding: 36px;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius);
    background: var(--nt-white);
}

.nt-case-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nt-case-card .nt-case-metrics {
    margin-top: 34px;
}

.nt-case-card .nt-case-metrics strong {
    color: var(--nt-ink);
}

/* Process */
.nt-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.nt-process-card {
    position: relative;
    padding: 28px 32px 28px 0;
}

.nt-process-card:not(:last-child)::after {
    position: absolute;
    top: 26px;
    right: 0;
    left: 72px;
    height: 1px;
    background: #bfd0df;
    content: "";
}

.nt-process-index {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid #bbcfdf;
    border-radius: 50%;
    background: var(--nt-paper);
    color: var(--nt-blue);
    font-size: 14px;
    font-weight: 800;
}

.nt-process-card h3 {
    margin-top: 28px;
    font-size: 19px;
}

/* CTA */
.nt-cta {
    padding: 38px 0 110px;
}

.nt-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    padding: clamp(44px, 6vw, 86px);
    border-radius: var(--nt-radius-lg);
    background: var(--nt-ink);
    color: var(--nt-white);
}

.nt-cta-panel h2 {
    max-width: 780px;
    margin: 0 0 14px;
    color: var(--nt-white);
    font-size: clamp(36px, 4vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.nt-cta-panel p {
    max-width: 680px;
    margin: 0;
    color: #b9c7d7;
    font-size: 17px;
}

.nt-cta-panel .nt-button-ghost {
    background: transparent;
    color: var(--nt-white) !important;
    border-color: #53657c;
}

/* Secondary pages */
.nt-page-hero {
    padding: 110px 0 96px;
    border-bottom: 1px solid var(--nt-line);
    background: var(--nt-paper);
}

.nt-page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
    align-items: end;
    gap: 80px;
}

.nt-page-hero h1 {
    max-width: 940px;
    font-size: clamp(50px, 6vw, 86px);
}

.nt-page-hero-aside {
    padding: 30px;
    border-left: 3px solid var(--nt-blue);
    color: var(--nt-muted);
}

.nt-page-hero-aside strong {
    display: block;
    margin-bottom: 8px;
    color: var(--nt-ink);
    font-size: 18px;
}

.nt-page-title {
    padding: 110px 0 60px;
}

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

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

.nt-feature-card {
    padding: 36px;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius);
    background: var(--nt-white);
}

.nt-feature-card h3 {
    margin-top: 24px;
}

.nt-feature-list,
.nt-check-list,
.nt-plan-features {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    color: #4d6177;
    font-size: 14px;
    list-style: none;
}

.nt-feature-list li,
.nt-check-list li,
.nt-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.nt-feature-list i,
.nt-check-list i,
.nt-plan-features i {
    margin-top: 4px;
    color: var(--nt-mint);
}

.nt-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
}

.nt-split h2 {
    margin: 14px 0 20px;
    color: var(--nt-ink);
    font-size: clamp(36px, 4vw, 56px);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.nt-split p {
    color: var(--nt-muted);
}

.nt-info-panel {
    padding: 42px;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius-lg);
    background: var(--nt-white);
    box-shadow: var(--nt-shadow-sm);
}

.nt-info-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
    padding: 20px 0;
    border-top: 1px solid var(--nt-line);
}

.nt-info-row:first-child {
    border-top: 0;
    padding-top: 0;
}

.nt-info-row:last-child {
    padding-bottom: 0;
}

.nt-info-row i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 12px;
    background: #edf7ff;
    color: var(--nt-blue);
}

.nt-info-row strong {
    display: block;
    margin-bottom: 4px;
}

.nt-info-row p {
    margin: 0;
    font-size: 13px;
}

/* Pricing */
.nt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
}

.nt-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 38px;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius);
    background: var(--nt-white);
}

.nt-plan-card.is-featured {
    border: 2px solid var(--nt-blue);
    box-shadow: var(--nt-shadow);
}

.nt-plan-badge {
    position: absolute;
    top: -15px;
    right: 26px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--nt-blue);
    color: var(--nt-white);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.nt-plan-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 14px 0 4px;
}

.nt-plan-price strong {
    color: var(--nt-ink);
    font-size: 42px;
    letter-spacing: -0.05em;
}

.nt-plan-price span,
.nt-plan-note {
    color: var(--nt-muted);
    font-size: 12px;
}

.nt-plan-features {
    margin: 28px 0 34px;
}

.nt-plan-card .nt-button {
    width: 100%;
    margin-top: auto;
}

.nt-pricing-disclaimer {
    max-width: 900px;
    margin: 32px auto 0;
    color: var(--nt-muted);
    font-size: 13px;
    text-align: center;
}

/* FAQ */
.nt-faq-list {
    max-width: 940px;
    margin: 0 auto;
    border-top: 1px solid var(--nt-line);
}

.nt-faq-item {
    border-bottom: 1px solid var(--nt-line);
}

.nt-faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0;
    border: 0;
    background: transparent;
    color: var(--nt-ink);
    font-size: 17px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.nt-faq-question i {
    color: var(--nt-blue);
    transition: transform 180ms ease;
}

.nt-faq-question[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.nt-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease;
}

.nt-faq-answer > div {
    overflow: hidden;
}

.nt-faq-answer p {
    max-width: 820px;
    margin: 0;
    padding: 0 0 26px;
    color: var(--nt-muted);
}

.nt-faq-question[aria-expanded="true"] + .nt-faq-answer {
    grid-template-rows: 1fr;
}

/* Forms */
.nt-contact-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(46px, 7vw, 110px);
}

.nt-contact-aside {
    padding-top: 16px;
}

.nt-contact-aside h2 {
    margin: 14px 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.nt-contact-aside > p {
    color: var(--nt-muted);
}

.nt-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--nt-line);
    border-radius: 14px;
    background: var(--nt-white);
}

.nt-contact-card i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 11px;
    background: #edf7ff;
    color: var(--nt-blue);
}

.nt-contact-card strong,
.nt-contact-card span {
    display: block;
}

.nt-contact-card span {
    color: var(--nt-muted);
    font-size: 12px;
}

.nt-form-shell {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius-lg);
    background: var(--nt-white);
    box-shadow: var(--nt-shadow-sm);
}

.nt-form-shell h2 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: -0.03em;
}

.nt-form-shell > p {
    margin: 0 0 28px;
    color: var(--nt-muted);
    font-size: 14px;
}

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

.nt-form-field {
    display: grid;
    gap: 7px;
}

.nt-form-field-full {
    grid-column: 1 / -1;
}

.nt-form-field label {
    color: var(--nt-ink);
    font-size: 12px;
    font-weight: 800;
}

.nt-form-field input,
.nt-form-field textarea,
.nt-form-field select,
.nt-login-form input,
.nt-portal-form input,
.nt-portal-form textarea,
.nt-portal-form select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cdd9e4;
    border-radius: 9px;
    background: #fbfdff;
    color: var(--nt-ink);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.nt-form-field textarea,
.nt-portal-form textarea {
    min-height: 130px;
    resize: vertical;
}

.nt-form-field input:focus,
.nt-form-field textarea:focus,
.nt-form-field select:focus,
.nt-login-form input:focus,
.nt-portal-form input:focus,
.nt-portal-form textarea:focus,
.nt-portal-form select:focus {
    border-color: var(--nt-blue);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(19, 118, 248, 0.1);
}

.nt-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.nt-form-notice {
    margin: 0 0 22px;
    padding: 14px 16px;
    border: 1px solid #9bdfc8;
    border-radius: 10px;
    background: #eafaf4;
    color: #116e53;
    font-size: 13px;
    font-weight: 700;
}

.nt-form-notice.is-error {
    border-color: #f2b9b9;
    background: #fff1f1;
    color: #a13b3b;
}

/* Blog */
.nt-blog-index {
    padding: 110px 0;
}

.nt-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nt-blog-card {
    overflow: hidden;
    border: 1px solid var(--nt-line);
    border-radius: var(--nt-radius);
    background: var(--nt-white);
}

.nt-blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--nt-soft);
}

.nt-blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.nt-blog-card:hover .nt-blog-card-media img {
    transform: scale(1.04);
}

.nt-blog-card > div {
    padding: 28px;
}

.nt-blog-card > div > span {
    color: var(--nt-blue);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.nt-blog-card h2 {
    margin: 12px 0;
    font-size: 22px;
    line-height: 1.25;
}

.nt-blog-card p {
    color: var(--nt-muted);
    font-size: 14px;
}

.nt-empty-state {
    grid-column: 1 / -1;
    padding: 70px 30px;
    border: 1px dashed #b9cbdc;
    border-radius: var(--nt-radius);
    text-align: center;
}

.nt-empty-state i {
    color: var(--nt-blue);
    font-size: 32px;
}

.nt-article {
    padding: 110px 0;
}

.nt-back-link {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 38px;
    color: var(--nt-blue) !important;
    font-size: 13px;
    font-weight: 700;
}

.nt-article h1 {
    margin: 14px 0 20px;
    font-size: clamp(42px, 5vw, 70px);
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.nt-article-lead {
    color: var(--nt-muted);
    font-size: 20px;
}

.nt-article-cover {
    margin: 50px 0;
    overflow: hidden;
    border-radius: var(--nt-radius);
}

.nt-prose {
    color: #35485f;
    font-size: 17px;
}

.nt-prose h2,
.nt-prose h3 {
    margin-top: 2em;
    color: var(--nt-ink);
}

/* Footer */
.nt-site-footer {
    padding: 84px 0 24px;
    background: #061326;
    color: #b6c4d3;
}

.nt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.72fr);
    gap: 70px;
}

.nt-footer-logo {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--nt-white);
}

.nt-footer-logo img {
    width: 154px;
}

.nt-footer-brand p {
    max-width: 420px;
    margin: 24px 0;
}

.nt-site-footer h2 {
    margin: 0 0 20px;
    color: var(--nt-white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nt-site-footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nt-site-footer a:hover {
    color: var(--nt-white);
}

.nt-social-links {
    display: flex;
    gap: 10px;
}

.nt-social-links a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid #273a53;
    border-radius: 10px;
    color: var(--nt-white);
}

.nt-footer-contact {
    display: grid;
    align-content: start;
    gap: 11px;
}

.nt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 70px;
    padding-top: 24px;
    border-top: 1px solid #21344d;
    color: #8294a8;
    font-size: 12px;
}

.nt-footer-bottom div {
    display: flex;
    gap: 22px;
}

.nt-whatsapp-float {
    position: fixed;
    z-index: 950;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #1da851;
    color: var(--nt-white) !important;
    box-shadow: 0 14px 34px rgba(18, 109, 57, 0.28);
    font-size: 12px;
    font-weight: 800;
}

.nt-whatsapp-float i {
    font-size: 20px;
}

.nt-error-page {
    min-height: 66vh;
    display: grid;
    place-items: center;
    padding: 100px 0;
    text-align: center;
}

.nt-error-page .nt-button-row {
    justify-content: center;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 1320px) {
    .nt-header-shell {
        grid-template-columns: 170px 1fr auto;
        gap: 15px;
        min-height: 64px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .nt-brand img {
        width: 154px;
    }

    .nt-menu {
        gap: 14px;
    }

    .nt-menu a {
        font-size: 12px;
    }

    .nt-hero-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(530px, 1fr);
        gap: 34px;
    }

    .nt-hero {
        padding-top: 24px;
    }

    .nt-hero h1 {
        margin-top: 16px;
        margin-bottom: 14px;
        font-size: clamp(46px, 4.2vw, 50px);
    }

    .nt-hero-copy {
        padding-bottom: 22px;
    }

    .nt-hero-lead {
        margin-bottom: 16px;
        font-size: 15px;
    }

    .nt-value-list {
        flex-wrap: nowrap;
        gap: 14px;
        margin-bottom: 18px;
        font-size: 10px;
        white-space: nowrap;
    }

    .nt-hero-meta {
        margin-top: 16px;
        padding-top: 14px;
        font-size: 11px;
    }

    .nt-hero-meta strong {
        font-size: 15px;
    }

    .nt-hero-badge {
        padding: 8px 12px;
        font-size: 10px;
    }

    .nt-hero .nt-button {
        min-height: 46px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .nt-product-preview {
        height: 466px;
        min-height: 466px;
        overflow: hidden;
        transform-origin: right center;
    }

    .nt-product-preview .nt-dashboard-frame {
        width: 156.25%;
        min-height: 686px;
        transform: scale(0.64);
        transform-origin: left top;
    }

    .nt-trust-layout {
        min-height: 92px;
    }

    .novatec-home .nt-section {
        padding: 58px 0;
    }

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

@media (max-width: 1100px) {
    body.novatec-site.admin-bar .nt-site-header {
        top: 32px;
    }

    .nt-container {
        width: min(calc(100% - 48px), var(--nt-container));
    }

    .nt-header-shell {
        grid-template-columns: 1fr auto;
        min-height: 68px;
        padding-right: 12px;
        padding-left: 18px;
    }

    .nt-menu-toggle {
        display: block;
        justify-self: end;
    }

    .nt-primary-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        display: none;
        padding: 14px;
        border: 1px solid var(--nt-line);
        border-radius: 16px;
        background: var(--nt-white);
        box-shadow: var(--nt-shadow);
    }

    .nt-primary-nav.is-open {
        display: block;
    }

    .nt-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    .nt-menu a {
        padding: 12px 14px;
        border-radius: 8px;
    }

    .nt-menu a:hover {
        background: var(--nt-soft);
    }

    .nt-menu a::after,
    .nt-header-actions {
        display: none;
    }

    .nt-hero {
        padding-top: 70px;
    }

    .nt-hero-layout {
        grid-template-columns: 1fr;
    }

    .nt-hero-copy {
        max-width: 780px;
        padding-bottom: 10px;
    }

    .nt-hero h1 {
        font-size: clamp(52px, 8vw, 78px);
    }

    .nt-product-preview {
        min-height: 0;
        height: auto;
        margin-bottom: 70px;
    }

    .nt-product-preview .nt-dashboard-frame {
        width: auto;
        min-height: 686px;
        transform: none;
    }

    .nt-trust-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 0;
    }

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

    .nt-service-card:last-child,
    .nt-pricing-grid .nt-plan-card:last-child {
        grid-column: 1 / -1;
    }

    .nt-case-featured {
        grid-template-columns: 1fr;
    }

    .nt-case-media {
        padding: 0 0 60px 60px;
    }

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

    .nt-process-card:nth-child(2)::after {
        display: none;
    }

    .nt-page-hero-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .nt-page-hero-aside {
        max-width: 680px;
    }

    .nt-contact-layout {
        grid-template-columns: 1fr;
    }

    .nt-footer-grid {
        grid-template-columns: 1.4fr repeat(2, 1fr);
        gap: 50px;
    }

    .nt-footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 782px) {
    body.novatec-site.admin-bar .nt-site-header {
        top: 46px;
    }

    .nt-site-header {
        padding: 0;
    }

    .nt-primary-nav {
        right: 10px;
        left: 10px;
    }

    .nt-container {
        width: min(calc(100% - 32px), var(--nt-container));
    }

    .nt-section {
        padding: 78px 0;
    }

    .nt-hero {
        padding-top: 52px;
    }

    .nt-hero h1 {
        font-size: clamp(46px, 13vw, 64px);
    }

    .nt-hero-meta,
    .nt-button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .nt-button-row .nt-button {
        width: 100%;
    }

    .nt-product-preview {
        margin-right: -220px;
        padding: 9px;
        transform: scale(0.82);
        transform-origin: left top;
        margin-bottom: -80px;
    }

    .nt-sector-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .nt-service-grid,
    .nt-feature-grid,
    .nt-feature-grid-3,
    .nt-case-grid,
    .nt-pricing-grid,
    .nt-split {
        grid-template-columns: 1fr;
    }

    .nt-service-card,
    .nt-service-card:last-child,
    .nt-pricing-grid .nt-plan-card:last-child {
        grid-column: auto;
    }

    .nt-case-copy {
        padding: 42px 28px;
    }

    .nt-case-media {
        padding: 0 0 34px 28px;
    }

    .nt-case-metrics {
        grid-template-columns: 1fr;
    }

    .nt-process-grid {
        grid-template-columns: 1fr;
    }

    .nt-process-card::after {
        display: none;
    }

    .nt-cta-panel {
        grid-template-columns: 1fr;
        padding: 42px 28px;
    }

    .nt-form-grid {
        grid-template-columns: 1fr;
    }

    .nt-form-field-full {
        grid-column: auto;
    }

    .nt-blog-grid {
        grid-template-columns: 1fr;
    }

    .nt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 28px;
    }

    .nt-footer-brand,
    .nt-footer-contact {
        grid-column: 1 / -1;
    }

    .nt-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .nt-whatsapp-float span {
        display: none;
    }

    .nt-whatsapp-float {
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 520px) {
    .nt-menu {
        grid-template-columns: 1fr;
    }

    .nt-brand img {
        width: 142px;
    }

    .nt-header-shell {
        min-height: 62px;
        padding-left: 15px;
    }

    .nt-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .nt-hero-badge {
        padding: 9px 12px;
        font-size: 10px;
    }

    .nt-hero h1 {
        font-size: 43px;
    }

    .nt-hero-lead {
        font-size: 16px;
    }

    .nt-value-list {
        display: grid;
    }

    .nt-product-preview {
        margin-right: -360px;
        transform: scale(0.66);
        margin-bottom: -190px;
    }

    .nt-sector-list {
        grid-template-columns: 1fr;
    }

    .nt-page-hero {
        padding: 80px 0 70px;
    }

    .nt-page-hero h1,
    .nt-section-heading h1,
    .nt-error-page h1 {
        font-size: 42px;
    }

    .nt-section-heading h2,
    .nt-split h2 {
        font-size: 36px;
    }

    .nt-service-card,
    .nt-feature-card,
    .nt-case-card,
    .nt-plan-card,
    .nt-form-shell,
    .nt-info-panel {
        padding: 26px;
    }

    .nt-footer-grid {
        grid-template-columns: 1fr;
    }

    .nt-footer-brand,
    .nt-footer-contact {
        grid-column: auto;
    }
}

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

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