/**
 * HiTechCloud Design System — Shared CSS
 * Based on the vMaaS page design reference.
 * Include this BEFORE any page-specific CSS to provide the unified design foundation.
 *
 * Usage: <link rel="stylesheet" href="css/hitechcloud-design-system.css?ver=..."/>
 */

/* ==========================================================================
   1. DESIGN TOKENS (CSS CUSTOM PROPERTIES)
   ========================================================================== */

:root {
	/* Brand Colors */
	--hc-blue: #0969ff;
	--hc-blue-dark: #082f86;
	--hc-cyan: #00c2ff;
	--hc-red: #0b398c;
	--hc-red-dark: #094eb3;
	--hc-orange: #1791c8;
	--hc-navy: #071832;
	--hc-deep: #041020;

	/* Surface Colors */
	--hc-white: #ffffff;
	--hc-bg: #f5f9ff;
	--hc-text: #22304a;
	--hc-muted: #667895;
	--hc-border: #d9e7f5;

	/* Gradients */
	--hc-gradient-cta: linear-gradient(135deg, #0b398c, #1791c8);
	--hc-gradient-hero: linear-gradient(135deg, var(--hc-blue-dark), var(--hc-blue) 58%, var(--hc-cyan));
	--hc-gradient-card: linear-gradient(180deg, #ffffff, #fafdff);
	--hc-gradient-step: linear-gradient(180deg, #ffffff, #f7fbff);
	--hc-gradient-common: linear-gradient(135deg, rgba(9, 105, 255, 0.08), rgba(0, 194, 255, 0.08));
	--hc-gradient-model: linear-gradient(180deg, var(--hc-navy), var(--hc-blue-dark));

	/* Shadows */
	--hc-shadow-card: 0 18px 50px rgba(8, 47, 134, 0.08);
	--hc-shadow-hover: 0 24px 70px rgba(8, 47, 134, 0.12);
	--hc-shadow-pricing: 0 16px 42px rgba(7, 22, 47, 0.08);
	--hc-shadow-pricing-hover: 0 26px 62px rgba(11, 57, 140, 0.1);
	--hc-shadow-cta: 0 30px 90px rgba(9, 105, 255, 0.24);
	--hc-shadow-glass: 0 28px 80px rgba(0, 0, 0, 0.25);
	--hc-shadow-btn: 0 18px 38px rgba(4, 16, 32, 0.18);

	/* Border Radius */
	--hc-radius-card: 28px;
	--hc-radius-lg: 30px;
	--hc-radius-pill: 999px;
	--hc-radius-btn-sm: 8px;
	--hc-radius-faq: 22px;
	--hc-radius-rich: 30px;

	/* Typography Weights */
	--hc-weight-body: 700;
	--hc-weight-medium: 750;
	--hc-weight-strong: 800;
	--hc-weight-heavy: 850;
	--hc-weight-black: 950;

	/* Spacing */
	--hc-section-pad: 96px 0;
	--hc-section-pad-md: 74px 0;
	--hc-card-pad: 30px;
	--hc-card-pad-sm: 24px;
	--hc-card-pad-lg: 34px;
}


/* ==========================================================================
   2. PAGE CONTAINER
   ========================================================================== */

.hc-page {
	background: var(--hc-white);
	color: var(--hc-text);
	font-family: inherit;
	overflow: hidden;
}

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

.hc-page a {
	text-decoration: none;
}


/* ==========================================================================
   3. EYEBROW / SECTION HEADING
   ========================================================================== */

.hc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	color: var(--hc-cyan);
	font-size: 13px;
	font-weight: var(--hc-weight-strong);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hc-eyebrow::before {
	content: '';
	width: 28px;
	height: 2px;
	border-radius: var(--hc-radius-pill);
	background: currentColor;
}

.hc-section-heading {
	max-width: 900px;
}

.hc-section-heading h2 {
	margin: 0;
	color: var(--hc-navy);
	font-size: clamp(30px, 3.25vw, 46px);
	font-weight: var(--hc-weight-heavy);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.hc-section-heading p {
	margin: 12px 0 0;
	color: var(--hc-muted);
	font-size: 16px;
	font-weight: var(--hc-weight-body);
	line-height: 1.75;
}

.hc-center {
	max-width: 1180px;
	margin: 0 auto 46px;
	text-align: center;
}

.hc-center .hc-eyebrow {
	justify-content: center;
}


/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */

.hc-hero {
	position: relative;
	padding: clamp(56px, 4.7vw, 96px) 0 0;
	color: var(--hc-white);
}

.hc-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
}

.hc-hero__content {
	max-width: 570px;
	padding-bottom: 76px;
}

.hc-hero h1 {
	margin: 0;
	color: inherit;
	font-size: clamp(38px, 4.8vw, 58px);
	font-weight: 850;
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.hc-hero p {
	max-width: 570px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	line-height: 1.5;
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.hc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 24px;
	border-radius: var(--hc-radius-pill);
	font-weight: var(--hc-weight-strong);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hc-btn:hover {
	transform: translateY(-2px);
}

.hc-btn--primary {
	background: var(--hc-white);
	color: var(--hc-red);
	box-shadow: var(--hc-shadow-btn);
}

.hc-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.42);
	background: transparent;
	color: var(--hc-white);
	backdrop-filter: blur(10px);
}

.hc-btn--light {
	background: var(--hc-white);
	color: var(--hc-blue-dark);
	box-shadow: var(--hc-shadow-btn);
}

.hc-btn--cta {
	background: var(--hc-gradient-cta);
	color: var(--hc-white);
	box-shadow: 0 12px 24px rgba(11, 57, 140, 0.16);
	border-radius: var(--hc-radius-btn-sm);
	font-size: 13px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hc-btn--cta:hover {
	color: var(--hc-white);
	transform: translateY(-1px);
}

.hc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}


/* ==========================================================================
   6. SECTIONS
   ========================================================================== */

.hc-section {
	padding: var(--hc-section-pad);
}

.hc-section:nth-of-type(even) {
	background: var(--hc-bg);
}


/* ==========================================================================
   7. CARDS — REUSABLE COMPONENTS
   ========================================================================== */

/* Base Card */
.hc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: var(--hc-card-pad);
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius-card);
	background: var(--hc-white);
	box-shadow: var(--hc-shadow-card);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hc-card:hover {
	border-color: rgba(9, 105, 255, 0.32);
	box-shadow: var(--hc-shadow-hover);
	transform: translateY(-6px);
}

/* Card with gradient background */
.hc-card--gradient {
	background: var(--hc-gradient-card);
}

/* Card with step gradient */
.hc-card--step {
	background: var(--hc-gradient-step);
}

/* Card with accent gradient */
.hc-card--accent {
	background: var(--hc-gradient-common);
	border-color: rgba(9, 105, 255, 0.18);
}

/* Card with radial cyan overlay */
.hc-card--cyan {
	background:
		radial-gradient(circle at right top, rgba(0, 194, 255, 0.14), transparent 42%),
		var(--hc-white);
}

/* Dark card */
.hc-card--dark {
	background: var(--hc-navy);
	color: var(--hc-white);
	border-color: rgba(255, 255, 255, 0.08);
}

/* Card icon */
.hc-card__icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border-radius: 20px;
	background: rgba(9, 105, 255, 0.1);
}

.hc-card__icon img {
	width: 28px;
	height: 28px;
}

.hc-card__icon--lg {
	width: 64px;
	height: 64px;
	border-radius: 24px;
}

.hc-card__icon--lg img {
	width: 34px;
	height: 34px;
}

/* Card headings */
.hc-card h3 {
	margin: 0 0 12px;
	color: var(--hc-navy);
	font-size: 22px;
	font-weight: var(--hc-weight-black);
	letter-spacing: -0.03em;
	line-height: 1.25;
}

.hc-card h4 {
	margin: 0 0 8px;
	color: var(--hc-navy);
	font-size: 20px;
	font-weight: var(--hc-weight-black);
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.hc-card p {
	color: var(--hc-muted);
	font-size: 14px;
	font-weight: var(--hc-weight-body);
	line-height: 1.55;
}

/* Card tag/badge */
.hc-card__tag {
	display: inline-flex;
	margin-bottom: 16px;
	padding: 7px 11px;
	border-radius: var(--hc-radius-pill);
	background: rgba(11, 57, 140, 0.09);
	color: var(--hc-red-dark);
	font-size: 12px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}


/* ==========================================================================
   8. FEATURE LIST
   ========================================================================== */

.hc-feature-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hc-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 13px 0;
	border-bottom: 1px solid var(--hc-border);
	color: var(--hc-text);
	font-size: 14px;
	font-weight: var(--hc-weight-body);
	line-height: 1.55;
}

.hc-feature-list li:last-child {
	border-bottom: 0;
}

.hc-feature-list img {
	width: 18px;
	height: 18px;
	margin-top: 1px;
	flex: 0 0 auto;
}


/* ==========================================================================
   9. CHECK LIST
   ========================================================================== */

.hc-check-list {
	display: grid;
	gap: 16px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.hc-check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--hc-text);
	font-size: 15px;
	font-weight: var(--hc-weight-body);
	line-height: 1.65;
}

.hc-check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--hc-gradient-hero);
}


/* ==========================================================================
   10. STAT PANEL (Glassmorphism)
   ========================================================================== */

.hc-stat-panel {
	display: grid;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: var(--hc-shadow-glass);
	backdrop-filter: blur(16px);
}

.hc-stat-panel div {
	padding: 24px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.13);
}

.hc-stat-panel strong {
	display: block;
	color: var(--hc-white);
	font-size: 42px;
	line-height: 1;
}

.hc-stat-panel span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-weight: var(--hc-weight-body);
}


/* ==========================================================================
   11. PRICING CARDS
   ========================================================================== */

.hc-pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 610px;
	padding: 0;
	border: 1px solid var(--hc-border);
	border-radius: 20px;
	background: var(--hc-white);
	box-shadow: var(--hc-shadow-pricing);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hc-pricing-card:hover {
	border-color: rgba(11, 57, 140, 0.28);
	box-shadow: var(--hc-shadow-pricing-hover);
	transform: translateY(-6px);
}

.hc-pricing-card--featured {
	border-color: rgba(11, 57, 140, 0.42);
	background:
		radial-gradient(circle at 88% 5%, rgba(11, 57, 140, 0.12), transparent 28%),
		var(--hc-white);
}

.hc-pricing-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 7px 11px;
	border-radius: var(--hc-radius-pill);
	background: var(--hc-gradient-cta);
	color: var(--hc-white);
	font-size: 12px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hc-pricing-card__head {
	padding: 24px 22px 20px;
	border-bottom: 1px solid #edf2f8;
	background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.hc-pricing-card__head span {
	display: inline-flex;
	margin-bottom: 16px;
	padding: 7px 11px;
	border-radius: var(--hc-radius-pill);
	background: rgba(11, 57, 140, 0.09);
	color: var(--hc-red-dark);
	font-size: 12px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hc-pricing-card__price {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
}

.hc-pricing-card__head h3 {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	color: var(--hc-red);
	font-size: clamp(26px, 2.15vw, 38px);
	font-weight: var(--hc-weight-black);
	letter-spacing: -0.06em;
	line-height: 1;
	white-space: nowrap;
	min-width: 0;
	flex: 0 1 auto;
}

.hc-pricing-card__head h3 small {
	margin-top: 0;
	font-size: 0.48em;
	letter-spacing: 0;
	line-height: 1;
}

.hc-pricing-card__head em {
	display: inline-flex;
	margin-top: 0;
	color: var(--hc-muted);
	font-size: clamp(12px, 0.9vw, 14px);
	font-style: normal;
	font-weight: var(--hc-weight-heavy);
	line-height: 1;
	white-space: nowrap;
	flex: 0 0 auto;
}

.hc-pricing-card__head h4 {
	margin: 16px 0 0;
	color: var(--hc-navy);
	font-size: 22px;
	font-weight: var(--hc-weight-black);
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.hc-pricing-card__tokens {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 17px 22px;
	border-bottom: 1px solid #edf2f8;
	background: #ffffff;
}

.hc-pricing-card__tokens strong {
	color: var(--hc-blue-dark);
	font-size: 26px;
	font-weight: var(--hc-weight-black);
	line-height: 1;
}

.hc-pricing-card__tokens span {
	color: var(--hc-muted);
	font-size: 13px;
	font-weight: var(--hc-weight-heavy);
	text-align: right;
}

.hc-pricing-card__specs {
	display: grid;
	gap: 0;
	padding: 0 22px;
	background: #fbfdff;
}

.hc-pricing-card__specs div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 48px;
	border-bottom: 1px solid #edf2f8;
}

.hc-pricing-card__specs strong {
	color: var(--hc-navy);
	font-size: 15px;
	font-weight: var(--hc-weight-black);
	line-height: 1.35;
}

.hc-pricing-card__specs span {
	color: var(--hc-muted);
	font-size: 13px;
	font-weight: var(--hc-weight-medium);
	line-height: 1.35;
	text-align: right;
}

.hc-pricing-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0 22px 22px;
	margin-top: auto;
}

.hc-pricing-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 14px;
	border-radius: var(--hc-radius-btn-sm);
	background: var(--hc-gradient-cta);
	box-shadow: 0 12px 24px rgba(11, 57, 140, 0.16);
	color: var(--hc-white);
	font-size: 13px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hc-pricing-card__btn:hover {
	color: var(--hc-white);
	transform: translateY(-1px);
}

.hc-pricing-card__btn--ghost {
	border: 1px solid rgba(11, 57, 140, 0.28);
	background: rgba(11, 57, 140, 0.06);
	box-shadow: none;
	color: var(--hc-red-dark);
}

.hc-pricing-card__btn--ghost:hover {
	color: var(--hc-red-dark);
}


/* ==========================================================================
   12. PRICING TABLE
   ========================================================================== */

.hc-pricing-table-wrap {
	margin-top: 24px;
	border: 1px solid var(--hc-border);
	border-radius: 24px;
	background: var(--hc-white);
	box-shadow: var(--hc-shadow-card);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.hc-pricing-table {
	width: 100%;
	min-width: 930px;
	border-collapse: collapse;
}

.hc-pricing-table thead th {
	padding: 18px 18px;
	background: linear-gradient(180deg, #f7fbff, #eef6ff);
	color: var(--hc-navy);
	font-size: 13px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: left;
	white-space: nowrap;
	border-bottom: 1px solid #edf2f8;
}

.hc-pricing-table tbody td {
	padding: 14px 18px;
	border-bottom: 1px solid #edf2f8;
	color: var(--hc-text);
	font-size: 14px;
	font-weight: var(--hc-weight-body);
	line-height: 1.45;
	vertical-align: middle;
}

.hc-pricing-table tbody tr:last-child td {
	border-bottom: 0;
}

.hc-pricing-table tbody tr:hover {
	background: rgba(9, 105, 255, 0.03);
}

.hc-table-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	min-height: 38px;
	padding: 9px 16px;
	border-radius: var(--hc-radius-btn-sm);
	background: var(--hc-gradient-cta);
	color: var(--hc-white);
	font-size: 12px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 10px 22px rgba(11, 57, 140, 0.14);
}

.hc-table-action:hover {
	color: var(--hc-white);
	transform: translateY(-1px);
}


/* ==========================================================================
   13. FAQ
   ========================================================================== */

.hc-faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	max-width: 1180px;
	margin: 0 auto;
}

.hc-faq-item {
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius-faq);
	background: var(--hc-white);
	overflow: hidden;
}

.hc-faq-item summary {
	position: relative;
	display: flex;
	align-items: center;
	padding: 20px 60px 20px 24px;
	gap: 14px;
	color: var(--hc-navy);
	font-size: 18px;
	font-weight: var(--hc-weight-heavy);
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.hc-faq-item summary::-webkit-details-marker {
	display: none;
}

.hc-faq-item summary::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(9, 105, 255, 0.1);
	color: var(--hc-blue);
	font-size: 18px;
	font-weight: 700;
	transition: transform 0.2s ease;
}

.hc-faq-item[open] summary::after {
	content: '−';
}

.hc-faq-item p {
	margin: 0;
	padding: 0 24px 24px;
	color: var(--hc-muted);
	font-size: 15px;
	font-weight: var(--hc-weight-body);
	line-height: 1.75;
}


/* ==========================================================================
   14. CTA SECTION
   ========================================================================== */

.hc-cta {
	padding: 40px 0 110px;
}

.hc-cta__box {
	position: relative;
	padding: 52px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 34px;
	background: linear-gradient(135deg, var(--hc-blue-dark), var(--hc-blue) 58%, var(--hc-cyan));
	color: var(--hc-white);
	text-align: center;
	box-shadow: var(--hc-shadow-cta);
	overflow: hidden;
}

.hc-cta__box::before {
	content: '';
	position: absolute;
	top: -60%;
	right: -18%;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}

.hc-cta h2 {
	margin: 0;
	color: inherit;
	font-size: clamp(30px, 3.25vw, 46px);
	font-weight: var(--hc-weight-heavy);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.hc-cta p {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.75;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.hc-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 34px;
}


/* ==========================================================================
   15. PRICING SLIDER ARROWS
   ========================================================================== */

.hc-slider-btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: var(--hc-radius-pill);
	background: #8f98a6;
	box-shadow: 0 12px 26px rgba(7, 22, 47, 0.18);
	color: var(--hc-white);
	cursor: pointer;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	transform: translateY(-50%);
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hc-slider-btn:hover,
.hc-slider-btn:focus-visible {
	background: #737d8c;
	box-shadow: 0 14px 30px rgba(7, 22, 47, 0.22);
	color: var(--hc-white);
	transform: translateY(-50%) scale(1.04);
}

.hc-slider-btn--prev { left: 0; }
.hc-slider-btn--next { right: 0; }


/* ==========================================================================
   16. PRICING SHELL & SLIDER
   ========================================================================== */

.hc-pricing-shell {
	position: relative;
	overflow: visible;
	padding: 0 64px;
}

.hc-pricing-slider {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 72px) / 4);
	gap: 24px;
	overflow-x: auto;
	padding: 8px 4px 30px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.hc-pricing-slider::-webkit-scrollbar {
	display: none;
}


/* ==========================================================================
   17. RESPONSIVE — TABLET (≤1280px)
   ========================================================================== */

@media (max-width: 1280px) {
	.hc-card-grid--four,
	.hc-step-grid,
	.hc-icon-card-grid--three,
	.hc-icon-card-grid--auto,
	.hc-model-grid,
	.hc-business-usecase-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.hc-feature-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hc-pricing-slider {
		grid-auto-columns: calc((100% - 48px) / 3);
	}
}


/* ==========================================================================
   18. RESPONSIVE — TABLET SMALL (≤980px)
   ========================================================================== */

@media (max-width: 980px) {
	.hc-hero {
		min-height: clamp(260px, 37.5vw, 368px);
		padding: clamp(48px, 7vw, 84px) 0 0;
	}

	.hc-hero__grid {
		grid-template-columns: 1fr;
	}

	.hc-hero__content {
		max-width: 540px;
		padding-bottom: 76px;
	}

	.hc-section {
		padding: var(--hc-section-pad-md);
	}

	.hc-center,
	.hc-section-heading {
		max-width: 100%;
	}

	.hc-pricing-slider {
		grid-auto-columns: calc((100% - 24px) / 2);
	}
}


/* ==========================================================================
   19. RESPONSIVE — MOBILE (≤680px)
   ========================================================================== */

@media (max-width: 680px) {
	.hc-hero {
		min-height: clamp(220px, 37.5vw, 255px);
		padding: clamp(34px, 8vw, 54px) 0 0;
	}

	.hc-hero__content {
		padding-bottom: 64px;
	}

	.hc-hero h1 {
		font-size: clamp(30px, 7.5vw, 40px);
	}

	.hc-hero p {
		font-size: 17px;
	}

	.hc-hero__actions {
		flex-direction: column;
	}

	.hc-btn {
		width: 100%;
	}

	.hc-section-heading h2 {
		font-size: 32px;
	}

	.hc-card,
	.hc-card--gradient,
	.hc-card--step,
	.hc-card--accent,
	.hc-card--cyan,
	.hc-card--dark {
		padding: var(--hc-card-pad-sm);
		border-radius: 22px;
	}

	.hc-faq-list {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.hc-faq-item summary {
		padding: 20px 54px 20px 20px;
		font-size: 16px;
	}

	.hc-faq-item p {
		padding: 0 20px 20px;
	}

	.hc-pricing-card {
		min-height: auto;
		border-radius: 16px;
	}

	.hc-pricing-card__head,
	.hc-pricing-card__tokens,
	.hc-pricing-card__specs,
	.hc-pricing-card__actions {
		padding-left: 18px;
		padding-right: 18px;
	}

	.hc-pricing-card__actions {
		grid-template-columns: 1fr;
	}

	.hc-pricing-slider {
		grid-auto-columns: 92%;
		padding-bottom: 22px;
	}

	.hc-slider-btn {
		display: none;
	}

	.hc-pricing-shell {
		padding: 0;
	}

	.hc-cta__box {
		padding: 34px 20px;
	}

	.hc-cta__actions {
		flex-direction: column;
	}

	/* Mobile pricing table → cards */
	.hc-pricing-table {
		min-width: 0;
	}

	.hc-pricing-table thead {
		display: none;
	}

	.hc-pricing-table,
	.hc-pricing-table tbody,
	.hc-pricing-table tr,
	.hc-pricing-table td {
		display: block;
		width: 100%;
	}

	.hc-pricing-table tr {
		margin-bottom: 14px;
		border: 1px solid var(--hc-border);
		border-radius: 18px;
		background: var(--hc-white);
		box-shadow: 0 14px 34px rgba(8, 47, 134, 0.08);
		overflow: hidden;
	}

	.hc-pricing-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 12px 18px;
		border-bottom: 1px solid #edf2f8;
	}

	.hc-pricing-table td::before {
		content: attr(data-label);
		max-width: 48%;
		color: var(--hc-blue-dark);
		font-size: 12px;
		font-weight: var(--hc-weight-black);
		line-height: 1.35;
		text-align: left;
		text-transform: uppercase;
	}
}


/* ==========================================================================
   20. LEGACY GEN1 COMPATIBILITY — Hero (section_1) Override
   ========================================================================== */

/* Override old Gen1 hero styles to use new design system when hc-page class is present */
.hc-page .section_1 .site-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
}

.hc-page .home-entry-title {
	font-size: clamp(38px, 4.8vw, 58px);
	font-weight: 850;
	line-height: 1.12;
	letter-spacing: -0.04em;
	color: var(--hc-white);
}

.hc-page .section_1 .sec-l {
	color: var(--hc-white);
	flex: auto;
	width: auto;
}

.hc-page .section_1 .sec-l h1 {
	color: var(--hc-white);
}

.hc-page .section_1 .sec-r {
	flex: auto;
}

.hc-page .section_1 .buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hc-page .btn-action-1 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 24px;
	border-radius: var(--hc-radius-pill);
	background: var(--hc-white);
	color: var(--hc-red);
	font-weight: var(--hc-weight-strong);
	box-shadow: var(--hc-shadow-btn);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hc-page .btn-action-1:hover {
	transform: translateY(-2px);
}

.hc-page .btn-readmore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 24px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: var(--hc-radius-pill);
	background: transparent;
	color: var(--hc-white);
	font-weight: var(--hc-weight-strong);
	backdrop-filter: blur(10px);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hc-page .btn-readmore:hover {
	transform: translateY(-2px);
}

/* Legacy section heading override */
.hc-page .section-header h2 {
	margin: 0;
	color: var(--hc-navy);
	font-size: clamp(30px, 3.25vw, 46px);
	font-weight: var(--hc-weight-heavy);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.hc-page .section-header p {
	color: var(--hc-muted);
	font-size: 16px;
	line-height: 1.75;
}

/* Legacy pricing plan boxes override */
.hc-page .plan-inner {
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius-card);
	background: var(--hc-white);
	box-shadow: var(--hc-shadow-card);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	overflow: hidden;
}

.hc-page .plan-inner:hover {
	border-color: rgba(11, 57, 140, 0.28);
	box-shadow: var(--hc-shadow-pricing-hover);
	transform: translateY(-6px);
}

.hc-page .plan-header {
	background: linear-gradient(180deg, #ffffff, #f8fbff);
	border-bottom: 1px solid #edf2f8;
}

.hc-page .plan-name {
	color: var(--hc-navy);
	font-size: 22px;
	font-weight: var(--hc-weight-black);
}

.hc-page .plan-price {
	color: var(--hc-red);
	font-weight: var(--hc-weight-black);
}

.hc-page .plan-action .btn-action-1 {
	background: var(--hc-gradient-cta);
	color: var(--hc-white);
	border-radius: var(--hc-radius-btn-sm);
	font-size: 13px;
	font-weight: var(--hc-weight-black);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 12px 24px rgba(11, 57, 140, 0.16);
}

.hc-page .featured-box .plan-inner {
	border-color: rgba(11, 57, 140, 0.42);
	background:
		radial-gradient(circle at 88% 5%, rgba(11, 57, 140, 0.12), transparent 28%),
		var(--hc-white);
}

/* Legacy feature box override */
.hc-page .feature-box .feature-inner {
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius-card);
	background: var(--hc-white);
	box-shadow: var(--hc-shadow-card);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	padding: var(--hc-card-pad);
}

.hc-page .feature-box .feature-inner:hover {
	border-color: rgba(9, 105, 255, 0.32);
	box-shadow: var(--hc-shadow-hover);
	transform: translateY(-6px);
}

.hc-page .feature-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border-radius: 20px;
	background: rgba(9, 105, 255, 0.1);
}

.hc-page .feature-icon img {
	width: 28px;
	height: 28px;
}

.hc-page .feature-content h3 {
	color: var(--hc-navy);
	font-size: 22px;
	font-weight: var(--hc-weight-black);
	letter-spacing: -0.03em;
}

.hc-page .feature-content p {
	color: var(--hc-muted);
	font-size: 14px;
	line-height: 1.55;
}
