:root {
    --nc24-navy-950: #080f1f;
    --nc24-navy-900: #0f172a;
    --nc24-navy-800: #1e293b;
    --nc24-navy-700: #334155;
    --nc24-blue-700: #1d4ed8;
    --nc24-blue-600: #2563eb;
    --nc24-blue-500: #3b82f6;
    --nc24-blue-100: #dbeafe;
    --nc24-blue-50: #eff6ff;
    --nc24-red: #d52b1e;
    --nc24-slate-600: #475569;
    --nc24-slate-500: #64748b;
    --nc24-slate-300: #cbd5e1;
    --nc24-slate-200: #e2e8f0;
    --nc24-slate-100: #f1f5f9;
    --nc24-slate-50: #f8fafc;
    --nc24-white: #ffffff;
    --nc24-radius-sm: 10px;
    --nc24-radius: 16px;
    --nc24-radius-lg: 24px;
    --nc24-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --nc24-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
    --nc24-shadow-blue: 0 18px 38px rgba(37, 99, 235, 0.24);
}

html {
    scroll-behavior: smooth;
}

body.nc24-site {
    background: var(--nc24-slate-50);
    color: var(--nc24-navy-900);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

.nc24-site a {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.nc24-site a:focus,
.nc24-site button:focus,
.nc24-site input:focus,
.nc24-site select:focus,
.nc24-site textarea:focus {
    outline: 3px solid rgba(59, 130, 246, .28);
    outline-offset: 2px;
}

.nc24-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--nc24-blue-600);
    color: var(--nc24-white);
    font-weight: 700;
    transform: translateY(-150%);
}

.nc24-skip-link:focus {
    color: var(--nc24-white);
    transform: translateY(0);
}

/* Header */
.nc24-header {
    position: relative;
    z-index: 100;
    background: var(--nc24-navy-900);
}

.nc24-header .nc24-account-bar {
    background: var(--nc24-navy-950);
    border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.nc24-header .nc24-account-bar .btn,
.nc24-header .nc24-account-bar .input-group-text {
    color: var(--nc24-slate-300);
}

.nc24-header .nc24-account-bar .btn:hover {
    color: var(--nc24-white);
}

.nc24-header .nc24-brand-bar {
    min-height: 84px;
    padding: 14px 0;
    background: var(--nc24-navy-900);
}

.nc24-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.nc24-logo {
    display: block;
    width: 236px;
    max-width: 100%;
    height: auto;
}

.nc24-site-nav {
    min-height: 80px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    background: var(--nc24-navy-900);
}

.nc24-site-nav .nc24-logo {
    width: 205px;
}

.nc24-site-links {
    gap: 2px;
}

.nc24-site-nav .nc24-site-links .nav-link {
    padding: 10px 11px;
    color: var(--nc24-slate-300);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.nc24-site-nav .nc24-site-links .nav-link:hover,
.nc24-site-nav .nc24-site-links .nav-link:focus {
    color: #60a5fa;
}

.nc24-language-label {
    cursor: default;
}

.nc24-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 11px;
}

.nc24-nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: 9px;
    color: var(--nc24-slate-300);
    background: rgba(255, 255, 255, .04);
}

.nc24-nav-cart:hover {
    border-color: var(--nc24-blue-500);
    color: var(--nc24-white);
    text-decoration: none;
}

.nc24-nav-cart .badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 4px;
    border: 2px solid var(--nc24-navy-900);
    border-radius: 999px;
    background: var(--nc24-blue-500);
    color: var(--nc24-white);
    font-size: 9px;
}

.nc24-site-nav .nc24-login-btn {
    padding: 10px 16px;
    color: var(--nc24-white);
    font-size: 13px;
}

.nc24-header-search {
    margin-right: 10px;
}

.nc24-header .search {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
}

.nc24-header .search .btn,
.nc24-header .search .form-control {
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--nc24-white);
}

.nc24-header .search .btn {
    color: var(--nc24-slate-300);
}

.nc24-header .search .form-control {
    width: 225px;
    padding-left: 2px;
}

.nc24-header .search .form-control::placeholder {
    color: #94a3b8;
}

.nc24-support-link {
    color: var(--nc24-slate-300);
    font-weight: 700;
}

.nc24-support-link:hover {
    color: var(--nc24-white);
}

.nc24-header .toolbar .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 10px;
    color: var(--nc24-white);
    background: rgba(255, 255, 255, .05);
}

.nc24-header .toolbar .nav-link:hover {
    border-color: var(--nc24-blue-500);
    background: rgba(37, 99, 235, .18);
    color: var(--nc24-white);
}

.nc24-header .toolbar .nav-link .badge {
    top: -9px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    padding: 4px 5px;
    border: 2px solid var(--nc24-navy-900);
    background: var(--nc24-red);
}

.nc24-header .nc24-main-nav {
    min-height: 52px;
    padding: 0;
    border-top: 1px solid rgba(148, 163, 184, .12);
    background: var(--nc24-navy-900);
}

.nc24-header .nc24-main-nav .navbar-collapse {
    padding: 0;
}

.nc24-header .nc24-main-nav .navbar-nav > li > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px !important;
    color: var(--nc24-slate-300);
    font-size: 14px;
    font-weight: 600;
}

.nc24-header .nc24-main-nav .navbar-nav > li:first-child > a {
    padding-left: 0 !important;
}

.nc24-header .nc24-main-nav .navbar-nav > li > a:hover,
.nc24-header .nc24-main-nav .navbar-nav > li > a:focus,
.nc24-header .nc24-main-nav .navbar-nav > li.active > a {
    color: var(--nc24-white);
}

.nc24-header .dropdown-menu {
    margin-top: 0;
    padding: 8px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: 12px;
    box-shadow: var(--nc24-shadow);
}

.nc24-header .dropdown-item,
.nc24-header .dropdown-item a {
    border-radius: 8px;
    color: var(--nc24-navy-700) !important;
}

.nc24-header .dropdown-item:hover,
.nc24-header .dropdown-item:focus,
.nc24-header .dropdown-item a:hover,
.nc24-header .dropdown-item a:focus {
    background: var(--nc24-blue-50);
    color: var(--nc24-blue-700) !important;
}

/* Hero */
.nc24-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 70% 20%, rgba(37, 99, 235, .16), transparent 30%),
        linear-gradient(135deg, var(--nc24-navy-950) 0%, var(--nc24-navy-900) 58%, #111d36 100%);
}

.nc24-hero::after {
    position: absolute;
    right: -8%;
    bottom: -45%;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(96, 165, 250, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(96, 165, 250, .025), 0 0 0 160px rgba(96, 165, 250, .018);
    content: "";
}

.nc24-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.nc24-hero-glow-one {
    top: -180px;
    right: 10%;
    width: 430px;
    height: 430px;
    background: rgba(37, 99, 235, .22);
}

.nc24-hero-glow-two {
    bottom: -230px;
    left: -90px;
    width: 420px;
    height: 420px;
    background: rgba(79, 70, 229, .11);
}

.nc24-hero-content {
    position: relative;
    z-index: 2;
}

.nc24-eyebrow,
.nc24-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    color: var(--nc24-blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.nc24-eyebrow {
    padding: 8px 12px;
    border: 1px solid rgba(96, 165, 250, .22);
    border-radius: 999px;
    background: rgba(37, 99, 235, .1);
    color: #93c5fd;
}

.nc24-eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 0 5px rgba(96, 165, 250, .1);
}

.nc24-hero h1 {
    max-width: 750px;
    margin: 0 0 24px;
    color: var(--nc24-white);
    font-size: clamp(42px, 5.2vw, 66px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.nc24-hero-lead {
    max-width: 700px;
    margin-bottom: 32px;
    color: #aebdd0;
    font-size: 18px;
    line-height: 1.75;
}

.nc24-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.nc24-site .btn {
    border-radius: 9px;
    font-weight: 700;
}

.nc24-site .btn-primary {
    border-color: var(--nc24-blue-600);
    background: var(--nc24-blue-600);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .15);
}

.nc24-site .btn-primary:hover,
.nc24-site .btn-primary:focus {
    border-color: var(--nc24-blue-700);
    background: var(--nc24-blue-700);
    transform: translateY(-1px);
}

.nc24-hero .btn-lg {
    min-height: 54px;
    padding: 14px 24px;
    font-size: 15px;
}

.nc24-hero .btn-primary {
    box-shadow: var(--nc24-shadow-blue);
}

.nc24-hero .btn-outline-light {
    border-color: rgba(203, 213, 225, .34);
    color: var(--nc24-slate-100);
    background: rgba(255, 255, 255, .035);
}

.nc24-hero .btn-outline-light:hover {
    border-color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .1);
    color: var(--nc24-white);
}

.nc24-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
    color: #c5d1e0;
    font-size: 13px;
    font-weight: 600;
}

.nc24-hero-points i {
    margin-right: 6px;
    color: #60a5fa;
}

.nc24-hero-card {
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: var(--nc24-radius-lg);
    background: rgba(15, 23, 42, .64);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
    backdrop-filter: blur(18px);
}

.nc24-hero-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.nc24-hero-card-icon {
    display: flex;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: rgba(37, 99, 235, .17);
    color: #60a5fa;
    font-size: 22px;
}

.nc24-hero-card h2 {
    margin: 0 0 4px;
    color: var(--nc24-white);
    font-size: 18px;
    font-weight: 750;
}

.nc24-hero-card-head p {
    margin: 0;
    color: #8191a7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nc24-hero-card ul {
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.nc24-hero-card li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    color: #9caec3;
    font-size: 13px;
    line-height: 1.55;
}

.nc24-hero-card li > i {
    flex: 0 0 20px;
    margin-top: 3px;
    color: #60a5fa;
    font-size: 17px;
    text-align: center;
}

.nc24-hero-card li strong {
    display: block;
    margin-bottom: 2px;
    color: #f1f5f9;
    font-size: 14px;
}

.nc24-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, .16);
    color: #93c5fd;
    font-size: 13px;
    font-weight: 750;
}

.nc24-card-link:hover {
    color: var(--nc24-white);
    text-decoration: none;
}

/* Breadcrumb and domain search */
.nc24-site .master-breadcrumb {
    border-bottom: 1px solid var(--nc24-slate-200);
    background: var(--nc24-white);
}

.nc24-site .master-breadcrumb .breadcrumb {
    min-height: 48px;
    padding: 15px 0;
    background: transparent;
    color: var(--nc24-slate-500);
    font-size: 12px;
}

.nc24-home .master-breadcrumb {
    background: var(--nc24-navy-800);
    border-color: rgba(148, 163, 184, .14);
}

.nc24-home .master-breadcrumb .breadcrumb,
.nc24-home .master-breadcrumb .breadcrumb a {
    color: #a9b7ca;
}

.nc24-home .master-breadcrumb .breadcrumb .active {
    color: #bfdbfe;
}

.nc24-site .home-domain-search {
    padding: 34px 0;
    border-bottom: 1px solid var(--nc24-slate-200);
    background: var(--nc24-white) !important;
}

.nc24-site .home-domain-search > .container > .p-5 {
    padding: 0 !important;
}

.nc24-site .home-domain-search h2 {
    margin-bottom: 20px;
    color: var(--nc24-navy-900);
    font-size: 22px;
    font-weight: 750;
}

.nc24-site .home-domain-search .input-group-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 6px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: 13px;
    background: var(--nc24-slate-50);
}

.nc24-site .home-domain-search .input-group-wrapper .form-control,
.nc24-site .home-domain-search .input-group-wrapper .btn {
    height: 48px;
}

.nc24-site .home-domain-search .input-group-wrapper .form-control {
    padding-left: 17px;
    border: 0;
    background: transparent;
}

.nc24-site .home-domain-search .tld-logos {
    margin: 22px auto 0;
}

/* Main content and standard WHMCS components */
.nc24-site section#main-body {
    min-height: 440px;
    padding: 56px 0 76px;
    background: var(--nc24-slate-50);
}

.nc24-home section#main-body {
    padding-top: 76px;
    padding-bottom: 88px;
}

.nc24-site .primary-content > h1,
.nc24-site .primary-content > .header-lined h1 {
    color: var(--nc24-navy-900);
    font-weight: 760;
    letter-spacing: -.025em;
}

.nc24-site .header-lined {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-color: var(--nc24-slate-200);
}

.nc24-site .card,
.nc24-site .panel,
.nc24-site .list-group,
.nc24-site .modal-content {
    border-color: var(--nc24-slate-200);
    border-radius: var(--nc24-radius-sm);
    box-shadow: var(--nc24-shadow-sm);
}

.nc24-site .card-header,
.nc24-site .panel-heading {
    border-color: var(--nc24-slate-200);
    background: var(--nc24-white);
}

.nc24-site .form-control,
.nc24-site .custom-select {
    min-height: 42px;
    border-color: #cbd5e1;
    border-radius: 8px;
}

.nc24-site .form-control:focus,
.nc24-site .custom-select:focus {
    border-color: var(--nc24-blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .14);
}

.nc24-site .btn-outline-primary {
    border-color: var(--nc24-blue-600);
    color: var(--nc24-blue-700);
}

.nc24-site .btn-outline-primary:hover {
    background: var(--nc24-blue-600);
    color: var(--nc24-white);
}

.nc24-site .sidebar .card {
    overflow: hidden;
}

.nc24-site .sidebar .card-header {
    color: var(--nc24-navy-900);
    font-weight: 750;
}

.nc24-site .sidebar .list-group-item.active,
.nc24-site .sidebar .list-group-item:hover {
    border-color: var(--nc24-blue-100);
    background: var(--nc24-blue-50);
    color: var(--nc24-blue-700);
}

.nc24-site table.table thead th {
    border-color: var(--nc24-slate-200);
    background: var(--nc24-slate-100);
    color: var(--nc24-navy-700);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Homepage sections */
.nc24-section,
.nc24-value-section,
.nc24-portal-section {
    padding: 20px 0 78px;
}

.nc24-section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.nc24-section-heading.text-left {
    margin-left: 0;
    text-align: left;
}

.nc24-section-heading h2,
.nc24-value-section h2,
.nc24-help-section h2 {
    margin: 0 0 16px;
    color: var(--nc24-navy-900);
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 780;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.nc24-section-heading p,
.nc24-value-lead {
    margin: 0;
    color: var(--nc24-slate-600);
    font-size: 16px;
    line-height: 1.75;
}

.nc24-product-grid > [class*="col-"] {
    margin-bottom: 24px;
}

.nc24-product-card {
    overflow: hidden;
    border: 1px solid var(--nc24-slate-200) !important;
    border-radius: var(--nc24-radius) !important;
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm) !important;
}

.nc24-product-card:hover {
    border-color: rgba(37, 99, 235, .35) !important;
    box-shadow: var(--nc24-shadow) !important;
    transform: translateY(-4px);
}

.nc24-product-card .card-body {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 30px;
}

.nc24-product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 13px;
    background: var(--nc24-blue-50);
    color: var(--nc24-blue-600);
    font-size: 21px;
}

.nc24-product-card h3 {
    margin-bottom: 12px;
    color: var(--nc24-navy-900);
    font-size: 21px;
    font-weight: 750;
}

.nc24-product-card p {
    margin-bottom: 24px;
    color: var(--nc24-slate-600);
    line-height: 1.7;
}

.nc24-product-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--nc24-slate-200);
    color: var(--nc24-blue-700);
    font-weight: 750;
}

.nc24-product-link:hover {
    color: var(--nc24-blue-600);
    text-decoration: none;
}

.nc24-product-link:hover i {
    transform: translateX(4px);
}

.nc24-product-link i {
    transition: transform .2s ease;
}

.nc24-empty-state {
    padding: 46px;
    border: 1px dashed #bfdbfe;
    border-radius: var(--nc24-radius);
    background: var(--nc24-blue-50);
    text-align: center;
}

.nc24-empty-state > i {
    margin-bottom: 16px;
    color: var(--nc24-blue-600);
    font-size: 38px;
}

.nc24-value-section {
    position: relative;
    margin: 14px 0 82px;
    padding: 62px;
    border: 1px solid #dbe5f1;
    border-radius: var(--nc24-radius-lg);
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
}

.nc24-value-lead {
    margin-bottom: 25px;
}

.nc24-value-grid > [class*="col-"] {
    margin-bottom: 20px;
}

.nc24-value-card {
    height: 100%;
    padding: 24px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: var(--nc24-radius);
    background: var(--nc24-slate-50);
}

.nc24-value-card > i {
    margin-bottom: 17px;
    color: var(--nc24-blue-600);
    font-size: 23px;
}

.nc24-value-card h3 {
    margin: 0 0 9px;
    color: var(--nc24-navy-900);
    font-size: 16px;
    font-weight: 750;
}

.nc24-value-card p {
    margin: 0;
    color: var(--nc24-slate-600);
    font-size: 13px;
    line-height: 1.65;
}

.nc24-portal-section {
    padding-top: 0;
}

.nc24-portal-grid > [class*="col-"] {
    margin-bottom: 20px;
}

.nc24-portal-card {
    display: flex;
    flex-direction: column;
    min-height: 170px;
    padding: 25px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: var(--nc24-radius);
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
    color: var(--nc24-navy-900);
}

.nc24-portal-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--nc24-shadow);
    color: var(--nc24-blue-700);
    text-decoration: none;
    transform: translateY(-3px);
}

.nc24-portal-card > i {
    margin-bottom: auto;
    color: var(--nc24-blue-600);
    font-size: 28px;
}

.nc24-portal-card strong {
    display: block;
    margin: 17px 0 3px;
    font-size: 15px;
}

.nc24-portal-card span {
    color: var(--nc24-slate-500);
    font-size: 12px;
}

.nc24-help-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 48px 54px;
    border-radius: var(--nc24-radius-lg);
    background:
        radial-gradient(circle at 90% 0, rgba(96, 165, 250, .18), transparent 32%),
        var(--nc24-navy-900);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}

.nc24-kicker-light {
    color: #93c5fd;
}

.nc24-help-section h2 {
    max-width: 700px;
    color: var(--nc24-white);
}

.nc24-help-section p {
    max-width: 710px;
    margin: 0;
    color: #aebdd0;
    line-height: 1.7;
}

.nc24-help-actions {
    display: flex;
    flex: 0 0 230px;
    flex-direction: column;
    gap: 10px;
}

.nc24-help-actions .btn {
    padding: 12px 18px;
}

/* Dedicated Windows VPS Canada landing page */
.nc24-hero-card-copy {
    margin: 0;
    padding: 25px 4px;
    color: #c4d0df;
    font-size: 14px;
    line-height: 1.75;
}

.nc24-hero-card-note {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, .16);
    color: #9cacbf;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.65;
    text-align: center;
}

.nc24-home section#main-body {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--nc24-white);
}

.nc24-content-section {
    padding: 92px 0 96px;
}

.nc24-full-bleed {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    padding: 92px 0;
}

.nc24-pricing-section .nc24-section-heading {
    max-width: 790px;
}

.nc24-plan-grid > [class*="col-"] {
    margin-bottom: 28px;
}

.nc24-tax-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 880px;
    margin: 4px auto 0;
    padding: 16px 18px;
    border: 1px solid var(--nc24-blue-100);
    border-radius: 12px;
    background: var(--nc24-blue-50);
    color: var(--nc24-slate-600);
    font-size: 13px;
    line-height: 1.6;
}

.nc24-tax-note > i {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--nc24-blue-600);
}

.nc24-tax-note strong {
    color: var(--nc24-navy-900);
}

.nc24-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: var(--nc24-radius);
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nc24-plan-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--nc24-shadow);
    transform: translateY(-4px);
}

.nc24-plan-featured {
    border: 2px solid var(--nc24-blue-600);
    box-shadow: 0 20px 48px rgba(37, 99, 235, .18);
}

.nc24-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--nc24-blue-600);
    color: var(--nc24-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.nc24-plan-head {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--nc24-slate-100);
}

.nc24-plan-head h3 {
    min-height: 48px;
    margin: 0 0 13px;
    color: var(--nc24-navy-900);
    font-size: 18px;
    font-weight: 760;
    line-height: 1.35;
}

.nc24-plan-price {
    color: var(--nc24-navy-900);
    font-size: 30px;
    font-weight: 820;
    letter-spacing: -.04em;
}

.nc24-plan-period {
    margin-top: 5px;
    color: var(--nc24-slate-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nc24-plan-specs {
    flex: 1 1 auto;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.nc24-plan-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--nc24-slate-600);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.nc24-plan-specs li > i {
    flex: 0 0 15px;
    margin-top: 2px;
    color: var(--nc24-blue-600);
}

.nc24-plan-specs li.is-included > i {
    color: #16a34a;
}

.nc24-plan-specs li.is-addon > i,
.nc24-plan-specs li.is-addon small {
    color: #d97706;
}

.nc24-plan-specs li.is-addon small {
    margin-left: 2px;
    font-size: 10px;
    font-weight: 750;
}

.nc24-rds-included {
    margin-bottom: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--nc24-slate-100);
}

.nc24-rds-included > span {
    display: block;
    margin-bottom: 8px;
    color: #16a34a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nc24-rds-included > strong {
    display: block;
    padding: 11px 12px;
    border: 1px solid #bbf7d0;
    border-radius: 9px;
    background: #f0fdf4;
    color: #166534;
    font-size: 12px;
    line-height: 1.45;
}

.nc24-plan-card .btn {
    padding: 12px 16px;
}

.nc24-plan-card .btn-dark {
    border-color: var(--nc24-navy-900);
    background: var(--nc24-navy-900);
}

.nc24-dark-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(37, 99, 235, .14), transparent 24%),
        var(--nc24-navy-900);
}

.nc24-heading-light h2 {
    color: var(--nc24-white);
}

.nc24-heading-light p {
    color: #9fb0c4;
}

.nc24-feature-grid > [class*="col-"],
.nc24-business-grid > [class*="col-"],
.nc24-license-grid > [class*="col-"],
.nc24-managed-grid > [class*="col-"],
.nc24-review-grid > [class*="col-"],
.nc24-knowledge-grid > [class*="col-"] {
    margin-bottom: 24px;
}

.nc24-feature-card {
    padding: 29px;
    border: 1px solid #334155;
    border-radius: var(--nc24-radius);
    background: rgba(30, 41, 59, .55);
}

.nc24-feature-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: rgba(59, 130, 246, .12);
    color: #60a5fa;
    font-size: 21px;
}

.nc24-feature-card h3 {
    margin: 0 0 12px;
    color: var(--nc24-white);
    font-size: 18px;
    font-weight: 750;
}

.nc24-feature-card p {
    margin: 0;
    color: #9fb0c4;
    font-size: 13px;
    line-height: 1.7;
}

.nc24-soft-section {
    border-bottom: 1px solid var(--nc24-slate-200);
    background: var(--nc24-slate-50);
}

.nc24-business-card {
    padding: 30px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: var(--nc24-radius);
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nc24-business-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--nc24-shadow);
    transform: translateY(-4px);
}

.nc24-business-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 23px;
    border-radius: 14px;
    background: var(--nc24-blue-600);
    color: var(--nc24-white);
    box-shadow: 0 13px 26px rgba(37, 99, 235, .2);
    font-size: 23px;
}

.nc24-business-card h3,
.nc24-license-card h3,
.nc24-managed-card h3,
.nc24-knowledge-card h3 {
    margin: 0 0 12px;
    color: var(--nc24-navy-900);
    font-size: 18px;
    font-weight: 760;
    line-height: 1.35;
}

.nc24-business-card p,
.nc24-license-card p,
.nc24-managed-card p,
.nc24-knowledge-card p {
    margin: 0;
    color: var(--nc24-slate-600);
    font-size: 13px;
    line-height: 1.7;
}

.nc24-licensing-section {
    border-top: 1px solid var(--nc24-slate-200);
    border-bottom: 1px solid var(--nc24-slate-200);
    background: var(--nc24-slate-50);
}

.nc24-licensing-section h2 {
    margin: 0 0 25px;
    color: var(--nc24-navy-900);
    font-size: clamp(32px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.nc24-licensing-section > .container > .row > div:first-child > p {
    color: var(--nc24-slate-600);
    font-size: 16px;
    line-height: 1.75;
}

.nc24-managed-intro {
    margin-bottom: 62px;
}

.nc24-managed-lead {
    font-size: 17px !important;
}

.nc24-ready-panel {
    padding: 32px;
    border: 1px solid var(--nc24-navy-800);
    border-radius: 24px;
    background: var(--nc24-navy-900);
    box-shadow: 0 24px 50px rgba(15, 23, 42, .18);
}

.nc24-ready-panel h3,
.nc24-match-panel h3 {
    margin: 0 0 16px;
    color: var(--nc24-white);
    font-size: 24px;
    font-weight: 780;
    letter-spacing: -.025em;
}

.nc24-ready-panel > p,
.nc24-match-panel p {
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.75;
}

.nc24-ready-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nc24-ready-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.nc24-ready-list li > span {
    display: flex;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--nc24-blue-600);
    color: var(--nc24-white);
    font-size: 13px;
    font-weight: 800;
}

.nc24-ready-list p {
    margin: 5px 0 0;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.55;
}

.nc24-ready-list strong {
    color: var(--nc24-white);
}

.nc24-license-grid {
    margin-top: 0;
    margin-bottom: 40px;
}

.nc24-license-card {
    padding: 25px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: var(--nc24-radius);
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nc24-license-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--nc24-shadow);
    transform: translateY(-3px);
}

.nc24-license-card > i {
    margin-bottom: 20px;
    color: var(--nc24-blue-600);
    font-size: 32px;
}

.nc24-managed-grid {
    margin-top: 0;
}

.nc24-managed-card {
    padding: 22px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: 14px;
    background: var(--nc24-white);
    box-shadow: none;
}

.nc24-managed-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 23px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--nc24-blue-600), #38bdf8);
    color: var(--nc24-white);
    font-size: 25px;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .2);
}

.nc24-managed-card h4 {
    margin: 0 0 10px;
    color: var(--nc24-navy-900);
    font-size: 16px;
    font-weight: 760;
}

.nc24-config-panel {
    margin-top: 2px;
    padding: 38px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: 24px;
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
}

.nc24-config-panel > .row > div:first-child > h3 {
    margin: 0 0 18px;
    color: var(--nc24-navy-900);
    font-size: 25px;
    font-weight: 780;
    letter-spacing: -.025em;
}

.nc24-config-panel > .row > div:first-child > p {
    margin: 0 0 18px;
    color: var(--nc24-slate-600);
    font-size: 14px;
    line-height: 1.75;
}

.nc24-config-panel .nc24-config-note {
    margin-bottom: 0 !important;
    color: var(--nc24-slate-500) !important;
    font-size: 13px !important;
}

.nc24-match-panel {
    max-width: none;
    margin-top: 48px;
    padding: 36px 38px;
    border-radius: 24px;
    background: var(--nc24-navy-900);
    box-shadow: 0 22px 45px rgba(15, 23, 42, .18);
}

.nc24-match-panel p {
    max-width: 940px;
}

.nc24-match-panel p:last-child {
    margin-bottom: 0;
}

.nc24-reviews-section {
    border-top: 1px solid var(--nc24-slate-100);
    background: var(--nc24-white);
}

.nc24-rating-icon,
.nc24-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #fef3c7;
    color: #f59e0b;
    font-size: 22px;
}

.nc24-rating-summary strong {
    color: #eab308;
    font-size: 19px;
}

#use-cases .nc24-rating-icon {
    background: var(--nc24-blue-100);
    color: var(--nc24-blue-600);
}

.nc24-stars {
    display: flex;
    gap: 3px;
    color: #facc15;
}

.nc24-section-heading > .nc24-stars {
    justify-content: center;
    margin-top: 10px;
}

.nc24-review-card {
    padding: 27px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: var(--nc24-radius);
    background: var(--nc24-slate-50);
}

.nc24-review-card blockquote {
    min-height: 118px;
    margin: 18px 0 20px;
    color: var(--nc24-navy-700);
    font-size: 13px;
    line-height: 1.75;
}

.nc24-review-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nc24-navy-900);
    font-size: 12px;
}

.nc24-review-card time {
    color: var(--nc24-slate-500);
}

.nc24-usecase-card {
    min-height: 255px;
}

.nc24-usecase-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: var(--nc24-blue-50);
    color: var(--nc24-blue-600);
    font-size: 21px;
}

.nc24-usecase-card h3 {
    margin: 0 0 12px;
    color: var(--nc24-navy-900);
    font-size: 18px;
    font-weight: 760;
}

.nc24-usecase-card p {
    margin: 0;
    color: var(--nc24-slate-600);
    font-size: 13px;
    line-height: 1.75;
}

.nc24-faq-section {
    border-top: 1px solid var(--nc24-slate-200);
    background: var(--nc24-slate-50);
}

.nc24-narrow-container {
    max-width: 900px;
}

.nc24-faq-icon {
    background: var(--nc24-blue-100);
    color: var(--nc24-blue-600);
}

.nc24-faq-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--nc24-slate-200);
    border-radius: 13px;
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
}

.nc24-faq-item > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 21px 23px;
    border: 0;
    background: transparent;
    color: var(--nc24-navy-900);
    font-size: 15px;
    font-weight: 730;
    line-height: 1.45;
    text-align: left;
}

.nc24-faq-item > button i {
    flex: 0 0 auto;
    color: var(--nc24-slate-500);
    transition: transform .2s ease;
}

.nc24-faq-item > button[aria-expanded="true"] i {
    color: var(--nc24-blue-600);
    transform: rotate(180deg);
}

.nc24-faq-answer {
    padding: 21px 23px;
    border-top: 1px solid var(--nc24-slate-100);
    color: var(--nc24-slate-600);
    font-size: 14px;
    line-height: 1.75;
}

.nc24-faq-answer p:last-child {
    margin-bottom: 0;
}

.nc24-knowledge-section {
    background: var(--nc24-white);
}

.nc24-knowledge-section .nc24-section-heading .btn {
    margin-top: 25px;
}

.nc24-knowledge-card {
    display: block;
    padding: 28px;
    border: 1px solid var(--nc24-slate-200);
    border-radius: var(--nc24-radius);
    background: var(--nc24-white);
    box-shadow: var(--nc24-shadow-sm);
}

.nc24-knowledge-card:hover {
    border-color: #bfdbfe;
    box-shadow: var(--nc24-shadow);
    text-decoration: none;
    transform: translateY(-4px);
}

.nc24-knowledge-card > i {
    margin-bottom: 23px;
    color: var(--nc24-blue-600);
    font-size: 30px;
}

.nc24-knowledge-card p {
    min-height: 68px;
    margin-bottom: 20px;
}

.nc24-knowledge-card span {
    color: var(--nc24-blue-700);
    font-size: 12px;
    font-weight: 750;
}

/* Footer */
.nc24-site .nc24-footer {
    padding: 72px 0 28px;
    border-top: 1px solid rgba(148, 163, 184, .13);
    background: var(--nc24-navy-900);
    color: #94a3b8;
}

.nc24-footer-grid > [class*="col-"] {
    margin-bottom: 38px;
}

.nc24-footer-logo {
    display: block;
    width: 220px;
    height: auto;
    margin-bottom: 21px;
}

.nc24-footer-brand > p {
    max-width: 350px;
    margin-bottom: 20px;
    color: #9aaabe;
    line-height: 1.7;
}

.nc24-footer address {
    color: #9aaabe;
    font-size: 13px;
    font-style: normal;
    line-height: 1.7;
}

.nc24-footer address strong {
    color: var(--nc24-white);
}

.nc24-footer h2 {
    margin: 5px 0 20px;
    color: var(--nc24-white);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.nc24-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nc24-footer li {
    margin-bottom: 12px;
}

.nc24-site .nc24-footer a {
    color: #9aaabe;
}

.nc24-site .nc24-footer a:hover {
    color: #93c5fd;
    text-decoration: none;
}

.nc24-currency-btn {
    margin-top: 12px;
    border: 1px solid rgba(148, 163, 184, .26);
    background: rgba(255, 255, 255, .04);
    color: #cbd5e1;
}

.nc24-currency-btn:hover {
    border-color: #60a5fa;
    color: var(--nc24-white);
}

.nc24-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 25px;
    border-top: 1px solid rgba(148, 163, 184, .14);
    color: #728198;
    font-size: 12px;
}

.nc24-footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .nc24-site-nav .navbar-collapse {
        margin-top: 14px;
        padding: 15px;
        border: 1px solid rgba(148, 163, 184, .16);
        border-radius: 12px;
        background: var(--nc24-navy-800);
    }

    .nc24-site-links {
        gap: 0;
    }

    .nc24-site-nav .nc24-site-links .nav-link {
        padding: 10px;
    }

    .nc24-nav-actions {
        margin: 10px 0 0;
        padding-top: 14px;
        border-top: 1px solid rgba(148, 163, 184, .16);
    }

    .nc24-header .nc24-main-nav {
        padding: 0 0 12px;
    }

    .nc24-header .nc24-main-nav .navbar-collapse {
        padding: 16px;
        border: 1px solid rgba(148, 163, 184, .16);
        border-radius: 12px;
        background: var(--nc24-navy-800);
    }

    .nc24-header .nc24-main-nav .navbar-nav > li > a,
    .nc24-header .nc24-main-nav .navbar-nav > li:first-child > a {
        min-height: 44px;
        padding: 0 10px !important;
    }

    .nc24-mobile-search .search {
        background: var(--nc24-navy-900);
    }

    .nc24-mobile-search .form-control {
        width: auto !important;
    }
}

@media (max-width: 991.98px) {
    .nc24-hero {
        padding: 74px 0 82px;
    }

    .nc24-hero h1,
    .nc24-hero-lead {
        max-width: 760px;
    }

    .nc24-value-section {
        padding: 44px;
    }

    .nc24-help-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .nc24-help-actions {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .nc24-content-section,
    .nc24-full-bleed {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .nc24-licensing-section h2 {
        max-width: 720px;
    }

    .nc24-managed-intro {
        margin-bottom: 48px;
    }

    .nc24-config-panel {
        padding: 32px;
    }
}

@media (max-width: 767.98px) {
    .nc24-header .nc24-brand-bar {
        min-height: 74px;
    }

    .nc24-logo {
        width: 190px;
    }

    .nc24-hero {
        padding: 60px 0 68px;
    }

    .nc24-hero h1 {
        font-size: 40px;
    }

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

    .nc24-hero-actions .btn {
        width: 100%;
    }

    .nc24-site section#main-body {
        padding: 48px 0 58px;
    }

    .nc24-home section#main-body {
        padding: 0;
    }

    .nc24-content-section,
    .nc24-full-bleed {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .nc24-plan-head h3,
    .nc24-review-card blockquote,
    .nc24-knowledge-card p {
        min-height: 0;
    }

    .nc24-licensing-section h2 {
        font-size: 34px;
    }

    .nc24-ready-panel,
    .nc24-config-panel,
    .nc24-match-panel {
        padding: 27px;
        border-radius: 19px;
    }

    .nc24-license-grid {
        margin-bottom: 28px;
    }

    .nc24-match-panel {
        margin-top: 34px;
    }

    .nc24-review-card footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .nc24-section,
    .nc24-value-section,
    .nc24-portal-section {
        padding-bottom: 54px;
    }

    .nc24-value-section {
        margin-bottom: 56px;
        padding: 32px 24px;
    }

    .nc24-help-section {
        padding: 36px 28px;
    }

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

@media (max-width: 575.98px) {
    .nc24-logo {
        width: 166px;
    }

    .nc24-header .toolbar .nav-link {
        min-width: 40px;
        height: 40px;
        padding: 0 9px;
    }

    .nc24-hero h1 {
        font-size: 35px;
    }

    .nc24-hero-card,
    .nc24-product-card .card-body {
        padding: 23px;
    }

    .nc24-hero-points {
        align-items: flex-start;
        flex-direction: column;
    }

    .nc24-section-heading {
        text-align: left;
    }

    .nc24-reviews-section .nc24-section-heading,
    .nc24-faq-section .nc24-section-heading {
        text-align: center;
    }

    .nc24-section-heading h2,
    .nc24-value-section h2,
    .nc24-help-section h2 {
        font-size: 29px;
    }

    .nc24-portal-card {
        min-height: 156px;
        padding: 18px;
    }

    .nc24-plan-card,
    .nc24-feature-card,
    .nc24-business-card,
    .nc24-license-card,
    .nc24-managed-card,
    .nc24-review-card,
    .nc24-knowledge-card {
        padding: 23px;
    }

    .nc24-ready-panel,
    .nc24-config-panel,
    .nc24-match-panel {
        padding: 23px;
    }

    .nc24-faq-item > button,
    .nc24-faq-answer {
        padding: 18px;
    }

    .nc24-site .nc24-footer {
        padding-top: 54px;
    }
}

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

    .nc24-site *,
    .nc24-site *::before,
    .nc24-site *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
