:root {
	--ncc-bg: #f4f6f8;
	--ncc-surface: #ffffff;
	--ncc-text: #1f2933;
	--ncc-muted: #52606d;
	--ncc-primary: #006fb3;
	--ncc-primary-dark: #005689;
	--ncc-border: #d9e2ec;
	--ncc-radius: 14px;
}

.ncc-hero,
.ncc-section,
.ncc-grid,
.ncc-pricing-grid {
	margin: 0 0 1.75rem;
}

.ncc-hero {
	background: linear-gradient(130deg, #0b4870 0%, #0f7cc0 55%, #25a5d9 100%);
	color: #fff;
	padding: 2.25rem;
	border-radius: var(--ncc-radius);
}

.ncc-hero h1 {
	margin: 0 0 0.9rem;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	line-height: 1.15;
}

.ncc-hero p {
	max-width: 60ch;
	margin-bottom: 1rem;
}

.ncc-hero-small {
	padding-top: 1.8rem;
	padding-bottom: 1.8rem;
}

.ncc-kicker {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.92;
}

.ncc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.ncc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.66rem 1.05rem;
	border-radius: 999px;
	background: var(--ncc-primary);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.16s ease;
}

.ncc-btn:hover,
.ncc-btn:focus {
	background: var(--ncc-primary-dark);
	color: #fff;
}

.ncc-btn-secondary {
	background: #fff;
	color: var(--ncc-primary-dark);
	border-color: #fff;
}

.ncc-btn-secondary:hover,
.ncc-btn-secondary:focus {
	background: #e6f2fb;
	color: var(--ncc-primary-dark);
}

.ncc-grid,
.ncc-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

.ncc-card {
	background: var(--ncc-surface);
	border: 1px solid var(--ncc-border);
	border-radius: var(--ncc-radius);
	padding: 1.1rem;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.ncc-card h2,
.ncc-card h3 {
	margin-top: 0;
	margin-bottom: 0.45rem;
}

.ncc-card img {
	max-width: 72px;
	height: auto;
	margin-bottom: 0.55rem;
}

.ncc-text-link {
	font-weight: 600;
}

.ncc-section {
	background: var(--ncc-surface);
	border: 1px solid var(--ncc-border);
	border-radius: var(--ncc-radius);
	padding: 1.15rem;
}

.ncc-section h2,
.ncc-section h3 {
	margin-top: 0;
}

.ncc-pricing-top {
	margin-bottom: 1.1rem;
}

.ncc-pricing-top input[type='number'],
.ncc-pricing-top input[type='email'] {
	width: 100%;
	max-width: 340px;
}

.ncc-account-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.1rem;
}

.ncc-account-table th,
.ncc-account-table td {
	padding: 0.5rem;
	border-bottom: 1px solid var(--ncc-border);
	text-align: left;
}

.ncc-account-table th {
	width: 220px;
	font-weight: 600;
}

.ncc-notice {
	border-radius: 10px;
	padding: 0.8rem 0.95rem;
	margin: 0 0 1rem;
	border: 1px solid;
}

.ncc-notice-success {
	background: #ebf8f1;
	border-color: #7fd5a4;
	color: #1b5f3c;
}

.ncc-notice-error {
	background: #fff0f0;
	border-color: #f2a2a2;
	color: #7f1d1d;
}

@media (max-width: 760px) {
	.ncc-hero {
		padding: 1.4rem;
	}

	.ncc-section,
	.ncc-card {
		padding: 0.95rem;
	}
}
