/**
 * Nikitabs Theme – Main Stylesheet
 *
 * Design tokens from Nikitabs brand guidelines.
 * Font: Sofia Sans (self-hosted).
 *
 * @package Nikitabs
 */

/* ========================================================================
   1. CSS Custom Properties (Design Tokens)
   ======================================================================== */

:root {
	/* Brand colors — Nikitabs blue scheme */
	--brand-primary: #1B3A6B;
	--brand-primary-light: #0066B3;
	--brand-secondary: #00A0E3;
	--brand-secondary-light: #4DC4F0;
	--brand-accent: #C41E3A;
	--brand-accent-light: #E63946;

	/* Backgrounds */
	--cream-bg: #EAF2FA;
	--white: #FFFFFF;
	--text-dark: #2B2B2B;
	--text-gray: #555555;
	--footer-dark: #1A1A2E;
	--border-light: #C8DDF0;

	/* Blog / slider / accent color */
	--color-primary: var(--brand-primary-light);
	--color-primary-dark: #004A8C;

	/* Legacy aliases (for forked code compatibility) */
	--brand-orange: var(--brand-secondary);
	--brand-orange-light: var(--brand-secondary-light);
	--brand-crimson: var(--brand-primary);
	--brand-burgundy: var(--brand-primary);
	--brand-green: var(--brand-secondary);
	--brand-green-light: var(--brand-secondary-light);
	--brand-green-dark: var(--brand-primary-light);

	/* Typography */
	--font-family: 'Sofia Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-heading: 'Sofia Sans', var(--font-family);

	/* Layout */
	--container-max: 1200px;
	--container-padding: 24px;
	--header-height: 72px;
	--disclaimer-height: 36px;

	/* Borders & Radius */
	--radius: 8px;
	--radius-lg: 16px;
	--radius-pill: 24px;

	/* Shadows */
	--shadow-card: 0 4px 20px rgba(27, 58, 107, 0.08);
	--shadow-card-hover: 0 8px 28px rgba(27, 58, 107, 0.14);
	--shadow-header: 0 2px 12px rgba(27, 58, 107, 0.1);
	--shadow-glow: 0 4px 20px rgba(0, 102, 179, 0.3);

	/* Transitions */
	--transition: 0.25s ease;
	--transition-fast: 150ms ease;
	--transition-slow: 500ms ease;

	/* Accents */
	--accent-bar-width: 60px;
	--accent-bar-height: 4px;
	--icon-size: 56px;
	--icon-bg: rgba(0, 160, 227, 0.12);

	/* Spacing scale */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;
	--space-4xl: 6rem;
	--space-5xl: 8rem;
}

/* ========================================================================
   2. Reset & Base
   ======================================================================== */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.625;
	color: var(--text-dark);
	background-color: var(--cream-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--brand-orange);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--brand-orange-light);
}

ul,
ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.25;
	font-weight: 700;
	color: var(--text-dark);
}

/* ========================================================================
   3. Accessibility
   ======================================================================== */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ========================================================================
   4. Utilities
   ======================================================================== */

.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 36px;
	min-height: 48px;
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--radius-pill);
	cursor: pointer;
	border: none;
	transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
	text-align: center;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

a.btn--primary,
.btn--primary,
.content-section .btn--primary,
.product-lifestyle .btn--primary {
	background: var(--brand-orange) !important;
	color: var(--white) !important;
}

a.btn--primary:hover,
.btn--primary:hover,
.content-section .btn--primary:hover,
.product-lifestyle .btn--primary:hover {
	background: var(--brand-orange-light) !important;
	color: var(--white) !important;
}

a.btn--outline,
.btn--outline {
	background: transparent;
	color: var(--white);
	border: 2px solid var(--white);
}

a.btn--outline:hover,
.btn--outline:hover {
	background: var(--white);
	color: var(--brand-orange);
}

.btn--sm {
	padding: 8px 20px;
	font-size: 14px;
}

.content-section .btn--outline {
	color: var(--brand-orange);
	border-color: var(--brand-orange);
}

.content-section .btn--outline:hover {
	background: var(--brand-orange);
	color: var(--white);
}

.btn--full {
	width: 100%;
}

/* ========================================================================
   5. Disclaimer Bar
   ======================================================================== */

.disclaimer-bar {
	background: var(--brand-primary, #1B3A6B);
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	padding: 8px var(--container-padding);
	font-size: 11px;
	line-height: 1.4;
	min-height: var(--disclaimer-height);
	display: flex;
	align-items: center;
	justify-content: center;
}

.disclaimer-bar p {
	margin: 0;
}

/* ========================================================================
   6. Site Header
   ======================================================================== */

.site-header {
	background: var(--white);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow var(--transition), background-color var(--transition);
	border-bottom: 1px solid rgba(27, 58, 107, 0.08);
}

.site-header.is-sticky {
	box-shadow: 0 4px 20px rgba(27, 58, 107, 0.08);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}

.site-header__logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	white-space: nowrap;
	letter-spacing: -0.5px;
}

.site-header__logo:hover {
	color: var(--white);
}

/* Custom logo image */
.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo {
	max-height: 40px;
	width: auto;
}

/* Navigation */

.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-menu li a {
	color: var(--brand-primary, #1B3A6B);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: var(--radius);
	transition: background var(--transition), color var(--transition);
	white-space: nowrap;
	position: relative;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
	background: rgba(0, 102, 179, 0.08);
	color: var(--brand-primary-light, #0066B3);
}

/* Hamburger */

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.15);
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	cursor: pointer;
	padding: 10px;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--brand-primary, #1B3A6B);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Nav close button (visible inside mobile slide-in panel) */

.nav-close {
	display: none;
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--white);
	align-items: center;
	justify-content: center;
	z-index: 10;
	padding: 0;
}

.nav-close svg {
	width: 28px;
	height: 28px;
	stroke-width: 2.5;
}

.nav-close:hover {
	opacity: 0.7;
}

.nav-close:focus-visible {
	outline: 2px solid var(--white);
	outline-offset: 2px;
}

/* Nav overlay (backdrop when menu is open) */

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 98;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), visibility var(--transition);
	pointer-events: none;
}

.nav-overlay.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ========================================================================
   7. Page Hero (Subpages – cream background)
   ======================================================================== */

.page-hero {
	background: var(--cream-bg);
	color: var(--text-dark);
	padding: 48px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero__image {
	position: absolute;
	right: -5%;
	top: 50%;
	transform: translateY(-50%);
	max-height: 180%;
	width: auto;
	opacity: 0.1;
	pointer-events: none;
	user-select: none;
}

.page-hero__title {
	font-size: 42px;
	font-weight: 700;
	color: var(--brand-burgundy);
	margin-bottom: 8px;
}

.page-hero__subtitle {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-gray);
}

/* ========================================================================
   8. Homepage – Hero Section
   ======================================================================== */

.hero {
	background: linear-gradient(135deg, #3d6b0a 0%, var(--brand-green-dark) 40%, var(--brand-green) 100%);
	color: var(--white);
	padding: 80px 0 120px;
}

/* Subpage hero with banner background */
.page-hero--banner {
	position: relative;
	overflow: hidden;
	background: var(--hero-bg) center / 100% auto no-repeat;
	background-color: var(--brand-burgundy);
	color: var(--white);
	aspect-ratio: 1920 / 600;
	max-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-hero--banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(211, 5, 54, 0.65), rgba(241, 139, 41, 0.5));
	z-index: 0;
}

.page-hero--banner .container {
	position: relative;
	z-index: 1;
}

.page-hero--banner .page-hero__title {
	color: var(--white);
}

.page-hero--banner .page-hero__subtitle {
	color: rgba(255, 255, 255, 0.9);
}

/* Gradient hero (no background image) */
.page-hero--gradient {
	background: linear-gradient(135deg, var(--brand-crimson) 0%, var(--brand-orange) 100%);
	color: var(--white);
	padding: 56px 0;
	text-align: center;
}

.page-hero--gradient .page-hero__title {
	color: var(--white);
	font-size: 38px;
}

.page-hero--gradient .page-hero__subtitle {
	color: rgba(255, 255, 255, 0.9);
}

/* Simple title bar (no background, no hero) */
.page-title-bar {
	padding: 40px 0 24px;
	border-bottom: 3px solid var(--brand-crimson);
}

.page-title-bar__heading {
	font-size: 36px;
	font-weight: 700;
	color: var(--brand-crimson);
	margin-bottom: 4px;
}

.page-title-bar__subtitle {
	font-size: 16px;
	color: var(--text-gray);
}

.hero__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
}

.hero__text {
	text-align: left;
}

.hero__title {
	font-size: 64px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 16px;
	letter-spacing: -1px;
}

.hero__subtitle {
	font-size: 24px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 8px;
}

.hero__description {
	font-size: 18px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 32px;
}

.hero__image {
	position: relative;
	z-index: 2;
}

.hero__image img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.hero__video {
	position: relative;
	z-index: 2;
}

.hero__video video {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 0 60px rgba(0, 102, 179, 0.2), 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========================================================================
   9. Homepage – Product Intro
   ======================================================================== */

.product-intro {
	padding: 48px 0;
	background: var(--white);
	position: relative;
	z-index: 1;
}

.product-intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.product-intro__image img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-intro__text p {
	margin-bottom: 16px;
	color: var(--text-gray);
}

/* ========================================================================
   10. Section Titles with Accent Bars
   ======================================================================== */

.section-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
}

.section-title::after {
	content: '';
	display: block;
	width: var(--accent-bar-width);
	height: var(--accent-bar-height);
	background: var(--brand-orange);
	margin-top: 12px;
	border-radius: 2px;
}

.section-title--center {
	text-align: center;
}

.section-title--center::after {
	margin-left: auto;
	margin-right: auto;
}

/* ========================================================================
   11. Content Sections (Subpages)
   ======================================================================== */

.content-section {
	padding: 16px 0;
}

.content-section--cream {
	background: var(--cream-bg);
	border-top: 1px solid rgba(0, 102, 179, 0.1);
	border-bottom: 1px solid rgba(0, 102, 179, 0.1);
}

.content-section__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--brand-burgundy);
}

.content-section__title::after {
	content: '';
	display: block;
	width: var(--accent-bar-width);
	height: var(--accent-bar-height);
	background: var(--brand-orange);
	margin-top: 8px;
	border-radius: 2px;
}

.content-section p {
	margin-bottom: 16px;
	color: var(--text-gray);
	line-height: 1.625;
}

.content-section p:last-child {
	margin-bottom: 0;
}

.content-section a:not(.btn) {
	color: var(--brand-orange);
	font-weight: 500;
}

/* ========================================================================
   12. Homepage – Benefits
   ======================================================================== */

.benefits {
	padding: 48px 0;
	background: var(--cream-bg);
}

.benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.benefit-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	text-align: center;
	box-shadow: var(--shadow-card);
	border-top: 4px solid var(--brand-orange);
	transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-hover);
}

.benefit-card__icon-wrap {
	width: var(--icon-size);
	height: var(--icon-size);
	border-radius: 50%;
	background: var(--icon-bg);
	border: 2px solid rgba(0, 102, 179, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.benefit-card__svg {
	color: var(--brand-orange);
}

.benefit-card__title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.benefit-card__desc {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
}

/* ========================================================================
   13. Homepage – How It Works / Stats
   ======================================================================== */

.how-it-works {
	padding: 48px 0;
	background: var(--white);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.stats-grid--four {
	grid-template-columns: repeat(4, 1fr);
}

.stat-item {
	text-align: center;
	padding: 24px;
}

.stat-item__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 3px solid var(--brand-orange);
	margin: 0 auto 16px;
	background: rgba(0, 102, 179, 0.08);
}

.stat-item__value {
	font-size: 28px;
	font-weight: 700;
	color: var(--brand-orange);
}

.stat-item__label {
	display: block;
	font-size: 14px;
	color: var(--text-gray);
}

/* ========================================================================
   14. Homepage – CTA Banner
   ======================================================================== */

.cta-banner {
	background: var(--brand-crimson);
	padding: 48px 0;
	text-align: center;
	color: var(--white);
}

.cta-banner__title {
	font-size: 32px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 12px;
}

.cta-banner__text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 24px;
}

.cta-banner .btn--primary {
	background: var(--white);
	color: var(--brand-burgundy);
}

.cta-banner .btn--primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* ========================================================================
   Product Lifestyle (image + text side-by-side)
   ======================================================================== */

.product-lifestyle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	padding: 32px 0;
}

.product-lifestyle--reverse {
	direction: rtl;
}

.product-lifestyle--reverse > * {
	direction: ltr;
}

.product-lifestyle__image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-lifestyle__text .content-section__title {
	margin-bottom: 16px;
}

.product-lifestyle__text p {
	line-height: 1.7;
	margin-bottom: 24px;
}

/* ========================================================================
   15. Category Grid (About Page)
   ======================================================================== */

.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.category-card {
	background: var(--white);
	border-radius: 8px;
	padding: 24px 20px;
	box-shadow: var(--shadow-card);
	border-top: 3px solid var(--brand-orange);
	transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:nth-child(even) {
	border-top-color: var(--brand-burgundy);
}

.category-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card-hover);
}

.category-card__title {
	font-size: 15px;
	font-weight: 600;
	color: var(--brand-orange);
	margin-bottom: 8px;
}

.category-card:nth-child(even) .category-card__title {
	color: var(--brand-burgundy);
}

.category-card__desc {
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.5;
	margin: 0;
}

/* ========================================================================
   16. Prevention List (Pain Page)
   ======================================================================== */

.prevention-list {
	margin-top: 16px;
	padding-left: 20px;
	list-style: disc;
}

.prevention-list li {
	margin-bottom: 10px;
	color: var(--text-gray);
	line-height: 1.6;
}

/* ========================================================================
   17. Dosage Section / Cards
   ======================================================================== */

.dosage-section {
	padding: 48px 0;
}

.dosage-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.dosage-card {
	background: var(--white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	box-shadow: var(--shadow-card);
	border-top: 4px solid var(--brand-orange);
	transition: transform var(--transition), box-shadow var(--transition);
}

.dosage-card:nth-child(2) {
	border-top-color: var(--brand-orange-light);
}

.dosage-card:nth-child(3),
.dosage-card:nth-child(4) {
	border-top-color: var(--brand-burgundy);
}

.dosage-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card-hover);
}

.dosage-card__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--brand-orange);
	margin-bottom: 12px;
}

.dosage-card:nth-child(3) .dosage-card__title,
.dosage-card:nth-child(4) .dosage-card__title {
	color: var(--brand-burgundy);
}

.dosage-card__desc {
	color: var(--text-gray);
	font-size: 14px;
	line-height: 1.6;
}

/* ========================================================================
   18. Pain Types Section / Cards
   ======================================================================== */

.pain-types {
	padding: 48px 0;
	background: var(--cream-bg);
}

.pain-types__intro {
	text-align: center;
	color: var(--text-gray);
	font-size: 16px;
	margin-top: 8px;
}

.pain-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 32px;
}

.pain-card {
	background: var(--white);
	border-radius: 12px;
	padding: 24px 20px;
	box-shadow: var(--shadow-card);
	text-align: left;
	border-left: 4px solid var(--brand-orange);
	transition: transform var(--transition), box-shadow var(--transition);
}

.pain-card:nth-child(even) {
	border-left-color: var(--brand-burgundy);
}

.pain-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-card-hover);
}

.pain-card__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--brand-orange);
	margin-bottom: 8px;
}

.pain-card:nth-child(even) .pain-card__title {
	color: var(--brand-burgundy);
}

.pain-card__desc {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
}

/* ========================================================================
   18b. Pain Illustrations
   ======================================================================== */

.pain-illustration {
	margin-bottom: 24px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.pain-illustration__img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.pain-illustration:hover .pain-illustration__img {
	transform: scale(1.02);
}

/* ========================================================================
   18c. Header Logo Image
   ======================================================================== */

.site-header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-header__logo-img {
	height: 48px;
	width: auto;
	max-width: 240px;
	transition: opacity var(--transition);
	/* Logo shows in original colors (blue/red) — no filter */
}

.site-header__logo:hover .site-header__logo-img {
	opacity: 0.85;
}

/* ========================================================================
   19. References Section
   ======================================================================== */

.references-list {
	list-style: decimal outside;
	padding-left: 32px;
	margin: 0;
}

.references-list li {
	display: list-item;
	list-style-type: decimal;
	font-size: 15px;
	color: var(--text-gray);
	line-height: 1.8;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-light);
}

.references-list li:last-child {
	border-bottom: none;
}

/* ========================================================================
   20. Contacts Page
   ======================================================================== */

.contacts-section {
	padding: 48px 0;
}

.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}

.contact-block {
	margin-bottom: 24px;
	padding-left: 44px;
	position: relative;
}

.contact-block::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--icon-bg);
	border: 1.5px solid rgba(0, 102, 179, 0.2);
}

.contact-block__label {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-gray);
	margin-bottom: 4px;
}

.contact-block__value {
	font-size: 16px;
	color: var(--text-dark);
}

.contact-block__value a {
	color: var(--brand-orange);
	font-weight: 500;
}

/* Contact Form */

.contacts-form {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-card);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	font-family: var(--font-family);
	border: none;
	border-radius: var(--radius);
	background: #f5f5f5;
	color: var(--text-dark);
	height: 48px;
	transition: box-shadow var(--transition), transform var(--transition);
}

.form-group textarea {
	height: auto;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.15);
	transform: translateY(-1px);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
	outline: 2px solid var(--brand-orange);
	outline-offset: 2px;
}

.btn:focus-visible,
.nav-menu li a:focus-visible,
.footer-nav li a:focus-visible {
	outline: 2px solid var(--brand-orange);
	outline-offset: 2px;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #aaa;
}

/* ========================================================================
   21. Footer
   ======================================================================== */

.site-footer {
	background: var(--footer-dark);
	color: rgba(255, 255, 255, 0.7);
	padding-top: 48px;
}

.site-footer__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.footer-columns {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 32px;
}

.footer-col__heading,
.footer-col h4 {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

.footer-logo {
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	color: var(--brand-orange);
	margin-bottom: 8px;
}

.footer-logo:hover {
	color: var(--brand-orange-light);
}

.footer-link {
	color: var(--brand-orange-light);
	font-size: 13px;
}

.footer-link:hover {
	color: var(--brand-orange);
}

/* Footer Navigation List */

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

.footer-nav li {
	margin-bottom: 6px;
}

.footer-nav li a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	transition: color var(--transition);
}

.footer-nav li a:hover {
	color: var(--white);
}

.footer-divider {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 24px;
}

.footer-copyright {
	padding: 16px 0;
	text-align: center;
}

.footer-copyright p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
}

.footer-legal-links {
	margin-top: 4px;
}

.footer-legal-links a {
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
	transition: color var(--transition);
}

.footer-legal-links a:hover {
	color: var(--white);
}

.footer-logo__img {
	max-height: 40px;
	width: auto;
	margin-bottom: 8px;
}

/* ========================================================================
   22. Inline Disclaimer (contextual)
   ======================================================================== */

.disclaimer-inline {
	background: rgba(211, 5, 54, 0.05);
	border-left: 3px solid var(--brand-burgundy);
	padding: 12px 16px;
	margin: 24px 0;
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.6;
	border-radius: 0 var(--radius) var(--radius) 0;
}

/* ========================================================================
   22b. Policy Pages
   ======================================================================== */

.policy-content {
	padding: 32px 0 48px;
}

.policy-content h2,
.policy-content h3 {
	color: var(--brand-crimson);
	margin-top: 24px;
	margin-bottom: 12px;
}

.policy-content h2 {
	font-size: 22px;
}

.policy-content h3 {
	font-size: 18px;
}

.policy-content p {
	margin-bottom: 12px;
	color: var(--text-gray);
	line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
	padding-left: 24px;
	margin-bottom: 16px;
	list-style: disc;
}

.policy-content li {
	margin-bottom: 6px;
	color: var(--text-gray);
	line-height: 1.6;
}

/* ========================================================================
   23. 404 Page
   ======================================================================== */

.error-404 {
	text-align: center;
	padding: 80px 0;
}

.error-404__btn {
	margin-top: 24px;
}

/* ========================================================================
   24. Responsive – Tablet (max-width: 1024px)
   ======================================================================== */

@media (max-width: 1024px) {

	/* Header & Nav – show hamburger at tablet */

	.hamburger {
		display: flex;
	}

	.nav-close {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: var(--white);
		box-shadow: -4px 0 24px rgba(27, 58, 107, 0.12);
		padding: 80px 24px 32px;
		transition: right var(--transition);
		z-index: 99;
		overflow-y: auto;
	}

	.site-nav.is-open {
		right: 0;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav-menu li a {
		display: block;
		padding: 16px 16px;
		font-size: 16px;
		border-radius: var(--radius);
	}

	.site-header__inner {
		padding: 0 var(--container-padding);
	}

	.disclaimer-bar p {
		font-size: 10px;
	}

	/* Layouts */

	.hero__content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 32px;
	}

	.hero__text {
		text-align: center;
	}

	.hero__image img {
		max-width: 400px;
		margin: 0 auto;
	}

	.product-intro__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

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

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

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

	.contacts-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-columns {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
}

/* ========================================================================
   25. Responsive – Mobile (max-width: 768px)
   ======================================================================== */

@media (max-width: 768px) {

	:root {
		--container-padding: 16px;
		--header-height: 56px;
	}

	/* Narrower slide-in on small phones */
	.site-nav {
		width: 260px;
	}

	/* Hero */

	.hero {
		padding: 48px 0;
	}

	.hero__title {
		font-size: 36px;
	}

	.hero__subtitle {
		font-size: 18px;
	}

	.hero__image {
		display: block;
	}

	.hero__image img {
		max-width: 280px;
		margin: 0 auto;
		animation: none;
	}

	.hero__video {
		margin-top: 24px;
	}

	.hero__video video {
		max-height: 240px;
		width: auto;
		margin: 0 auto;
	}

	.hero__text {
		text-align: center;
	}

	.product-intro {
		margin-top: 0;
		padding: 32px 0;
	}

	.product-intro__inner {
		grid-template-columns: 1fr;
	}

	.product-intro__image {
		order: 2;
	}

	.product-intro__text {
		order: 1;
	}

	.product-intro__image img {
		max-width: 240px;
		margin: 0 auto;
	}

	/* Page Hero */

	.page-hero {
		padding: 32px 0 28px;
	}

	.page-hero--banner {
		aspect-ratio: auto;
		max-height: none;
		min-height: 180px;
		padding: 48px 0;
		background-size: cover;
	}

	.page-hero__image {
		display: none;
	}

	.page-hero__title {
		font-size: 28px;
	}

	/* Sections */

	.content-section {
		padding: 16px 0;
	}

	.section-title {
		font-size: 24px;
	}

	.content-section__title {
		font-size: 22px;
	}

	/* Grids */

	.benefits__grid,
	.stats-grid,
	.pain-cards,
	.dosage-cards,
	.category-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* Stats circle */

	.stat-item__circle {
		width: 90px;
		height: 90px;
	}

	.stat-item__value {
		font-size: 20px;
	}

	.stat-item__label {
		font-size: 12px;
	}

	/* Contact form card */

	.contacts-form {
		padding: 20px;
	}

	.contact-block {
		padding-left: 0;
	}

	.contact-block::before {
		display: none;
	}

	/* Footer */

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* CTA */

	.cta-banner {
		padding: 40px 0;
	}

	.cta-banner__title {
		font-size: 22px;
	}

	/* Product Lifestyle */

	.product-lifestyle {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.product-lifestyle--reverse {
		direction: ltr;
	}
}

/* ========================================================================
   26. Animations & Dynamic Effects
   ======================================================================== */

/* --- Enhanced Card Hovers (lift higher + orange glow) --- */

.benefit-card:hover,
.pain-card:hover,
.dosage-card:hover,
.category-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 102, 179, 0.15);
}

.stat-item__circle {
	transition: transform var(--transition), box-shadow var(--transition);
}

.stat-item__circle:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(0, 102, 179, 0.2);
}

/* --- Floating Animation for Hero Image --- */

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

.hero__image img {
	animation: float 4s ease-in-out infinite;
}

/* --- Subtle Parallax on Hero Background --- */

.hero {
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 70%;
	height: 140%;
	background: radial-gradient(
		ellipse at 60% 50%,
		rgba(0, 102, 179, 0.15) 0%,
		rgba(0, 102, 179, 0.08) 40%,
		transparent 70%
	);
	pointer-events: none;
	z-index: 0;
}

.hero > * {
	position: relative;
	z-index: 1;
}

/* --- CTA Banner subtle shimmer --- */

.cta-banner {
	position: relative;
	overflow: hidden;
}

.cta-banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.03),
		transparent
	);
	animation: shimmer 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes shimmer {
	0%, 100% {
		left: -100%;
	}
	50% {
		left: 150%;
	}
}

/* --- Accent bar grow animation (handled by animations.css) --- */

/* --- Accessibility: Respect prefers-reduced-motion --- */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	[data-animate] {
		opacity: 1 !important;
		transform: none !important;
	}

	.hero__image img {
		animation: none;
	}

	.cta-banner::after {
		animation: none;
	}
}

/* ========================================================================
   27. Cookie Consent Banner
   ======================================================================== */

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: var(--white);
	color: var(--text-dark);
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
	animation: slideUp 0.4s ease;
}

@keyframes slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

.cookie-consent__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 20px var(--container-padding);
}

.cookie-consent__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 15px;
}

.cookie-consent__icon {
	font-size: 20px;
}

.cookie-consent__text {
	font-size: 13px;
	line-height: 1.5;
	margin: 0 0 12px;
	color: var(--text-gray);
}

.cookie-consent__text a {
	color: var(--brand-orange);
	text-decoration: underline;
}

.cookie-consent__categories {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.cookie-cat {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	user-select: none;
}

.cookie-cat input {
	display: none;
}

.cookie-cat__check {
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
}

.cookie-cat input:checked + .cookie-cat__check {
	background: var(--brand-green);
	border-color: var(--brand-green);
}

.cookie-cat input:checked + .cookie-cat__check::after {
	content: '✓';
	color: white;
	font-size: 12px;
	font-weight: 700;
}

.cookie-cat input:disabled + .cookie-cat__check {
	background: #ddd;
	border-color: #bbb;
}

.cookie-cat input:disabled:checked + .cookie-cat__check {
	background: #aaa;
	border-color: #999;
}

.cookie-consent__toggle {
	background: none;
	border: none;
	color: var(--text-gray);
	font-size: 12px;
	cursor: pointer;
	padding: 0;
	margin-bottom: 12px;
	font-family: var(--font-family);
}

.cookie-consent__toggle:hover {
	color: var(--text-dark);
}

.cookie-consent__details {
	background: #f8f8f8;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 12px;
}

.cookie-detail {
	margin-bottom: 12px;
}

.cookie-detail:last-child {
	margin-bottom: 0;
}

.cookie-detail strong {
	font-size: 13px;
	display: block;
	margin-bottom: 2px;
}

.cookie-detail p {
	font-size: 12px;
	color: var(--text-gray);
	margin: 0;
	line-height: 1.4;
}

.cookie-consent__actions {
	display: flex;
	gap: 12px;
}

.cookie-consent .btn--sm {
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 600;
}

.cookie-consent .btn--outline {
	color: var(--text-dark);
	border-color: var(--text-dark);
}

.cookie-consent .btn--outline:hover {
	background: var(--text-dark);
	color: var(--white);
}

.cookie-cat input:checked + .cookie-cat__check {
	background: var(--cmp-check-color, var(--brand-green));
	border-color: var(--cmp-check-color, var(--brand-green));
}

/* Revoke/settings button (floating) */
.cookie-revoke-btn {
	position: fixed;
	bottom: 16px;
	left: 16px;
	z-index: 9999;
	background: var(--footer-dark);
	color: var(--white);
	border: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 50%;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0,0,0,0.25);
	transition: transform 0.2s, opacity 0.2s;
	opacity: 0.65;
}

.cookie-revoke-btn:hover {
	opacity: 1;
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.cookie-consent__categories {
		gap: 12px;
	}

	.cookie-consent__actions {
		flex-direction: column;
	}

	.cookie-consent .btn--sm {
		width: 100%;
		text-align: center;
	}
}

/* ========================================================================
   28. FAQ Page
   ======================================================================== */

/* Quick Nav */

.faq-nav {
	padding: 32px 0;
	background: var(--section-cream);
}

.faq-nav__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 16px;
}

.faq-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 12px;
	background: var(--white);
	border-radius: 12px;
	text-decoration: none;
	color: var(--text-dark);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-nav__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 102, 179, 0.15);
	color: var(--brand-crimson);
}

.faq-nav__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--brand-crimson), var(--brand-orange));
	border-radius: 50%;
	color: var(--white);
}

.faq-nav__icon svg {
	width: 24px;
	height: 24px;
}

/* FAQ Section */

.faq-section {
	padding: 48px 0;
}

.faq-section__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-heading);
	font-size: 28px;
	color: var(--brand-crimson);
	margin-bottom: 28px;
}

.faq-section__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: linear-gradient(135deg, var(--brand-crimson), var(--brand-orange));
	border-radius: 10px;
	color: var(--white);
}

.faq-section__icon svg {
	width: 22px;
	height: 22px;
}

/* FAQ Accordion */

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: box-shadow var(--transition);
}

.content-section--cream .faq-item {
	background: #fafaf5;
}

.faq-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
	text-align: left;
	line-height: 1.4;
	gap: 16px;
	transition: color var(--transition);
}

.faq-item__question:hover {
	color: var(--brand-crimson);
}

.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--section-cream);
	transition: transform 0.3s ease, background-color var(--transition);
}

.faq-item__question[aria-expanded="true"] .faq-item__toggle {
	transform: rotate(180deg);
	background: var(--brand-crimson);
	color: var(--white);
}

.faq-item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item__answer[aria-hidden="false"] {
	max-height: 500px;
}

.faq-item__answer p {
	padding: 0 24px 20px;
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-medium);
}

/* FAQ Summary */

.faq-summary {
	padding: 48px 0;
}

/* Medical Disclaimer */

.medical-disclaimer {
	background: rgba(211, 5, 54, 0.06);
	border-left: 4px solid var(--brand-crimson);
	border-radius: 0 12px 12px 0;
	padding: 24px 28px;
}

.medical-disclaimer p {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.6;
}

.medical-disclaimer p:last-child {
	margin-bottom: 0;
}

/* Responsive FAQ */

@media (max-width: 768px) {
	.faq-nav__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.faq-section__title {
		font-size: 22px;
	}

	.faq-item__question {
		padding: 16px 18px;
		font-size: 15px;
	}

	.faq-item__answer p {
		padding: 0 18px 16px;
		font-size: 14px;
	}
}

/* ========================================================================
   Additional Styles (v2.4.0)
   ======================================================================== */

/* Mobile: center logo + absolute hamburger */
@media (max-width: 768px) {
    .site-header__inner {
        position: relative;
        justify-content: center;
    }
    .site-header__logo {
        display: flex;
        justify-content: center;
    }
    .site-header__logo-img {
        height: 40px;
    }
    .hamburger {
        position: absolute;
        right: var(--container-padding, 16px);
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Hero slogan */
.hero__image {
    position: relative;
}

.hero__slogan {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

/* Medical disclaimer section */
.medical-disclaimer-section {
    padding: 24px 0;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}
.medical-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}
.medical-disclaimer__ial {
    font-weight: 600;
    margin-top: 4px;
}
.medical-disclaimer__inn {
    font-style: italic;
    margin-top: 4px;
}

/* Benefit card icon images (replacing SVG) */
.benefit-card__icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

/* ========================================================================
   Buy Online — Pharmacy Grid (v3.0)
   ======================================================================== */

.pharmacy-section {
	padding: 60px 0 80px;
	background: var(--white);
}

.pharmacy-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 960px;
	margin: 0 auto;
}

.pharmacy-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 32px 20px;
	background: var(--white);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	text-decoration: none;
	color: var(--text-dark);
	transition: box-shadow var(--transition), transform var(--transition);
	min-height: 160px;
}

a.pharmacy-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
	cursor: pointer;
}

.pharmacy-card__logo {
	max-height: 80px;
	max-width: 180px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.pharmacy-card__name {
	font-size: 0.85rem;
	color: var(--text-gray);
	text-align: center;
	font-weight: 500;
}

.pharmacy-card__name-fallback {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-dark);
	text-align: center;
}

/* Responsive: 2 per row on tablet, 1 on mobile */
@media (max-width: 768px) {
	.pharmacy-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.pharmacy-card {
		padding: 24px 16px;
		min-height: 130px;
	}

	.pharmacy-card__logo {
		max-height: 60px;
		max-width: 140px;
	}
}

@media (max-width: 480px) {
	.pharmacy-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.pharmacy-section {
		padding: 40px 0 60px;
	}
}

/* ========================================================================
   Blog — Listing, Cards, Single Post (v3.0)
   ======================================================================== */

/* Blog Listing */
.blog-listing {
	padding: 60px 0 40px;
	background: var(--cream-bg);
}

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

/* Blog Card (shared between listing & recent-posts) */
.blog-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: var(--text-dark);
	transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

.blog-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: #f0f0f0;
}

.blog-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__img {
	transform: scale(1.05);
}

.blog-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	background: linear-gradient(135deg, #f7f8fa, #e8ecef);
}

.blog-card__badge {
	display: inline-block;
	background: var(--brand-orange);
	color: var(--white, #fff);
	font-size: 0.7rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.blog-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-card__title {
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.blog-card__excerpt {
	font-size: 0.9rem;
	color: var(--text-gray);
	line-height: 1.6;
	margin-bottom: 12px;
	flex-grow: 1;
}

.blog-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.8rem;
	color: #999;
}

.blog-card__read-time {
	display: flex;
	align-items: center;
	gap: 4px;
}

.blog-card__cta {
	display: inline-block;
	margin-top: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--brand-crimson);
}

.blog-card:hover .blog-card__cta {
	text-decoration: underline;
}

/* Blog Pagination */
.blog-pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.blog-pagination__list {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
}

.blog-pagination__item a,
.blog-pagination__item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--text-dark);
	background: var(--white);
	border: 1px solid #e5e7eb;
	transition: all var(--transition);
}

.blog-pagination__item a:hover {
	background: var(--brand-crimson);
	color: var(--white);
	border-color: var(--brand-crimson);
}

.blog-pagination__item span.current {
	background: var(--brand-crimson);
	color: var(--white);
	border-color: var(--brand-crimson);
}

.blog-empty {
	text-align: center;
	padding: 80px 24px;
	color: var(--text-gray);
	font-size: 1.1rem;
}

/* Recent Posts (reusable component) */
.recent-posts {
	padding: 60px 0;
	background: #faf8f5;
}

.recent-posts__title {
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 32px;
	color: var(--text-dark);
}

.recent-posts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.recent-posts__more {
	text-align: center;
	margin-top: 32px;
}

/* Single Post */
/* Single post hero — image on top, text below on solid bg */
.single-hero__image {
	width: 100%;
	max-height: 480px;
	overflow: hidden;
	background: #e8eaed;
}

.single-hero__img {
	width: 100%;
	height: 100%;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

.single-hero {
	position: relative;
	padding: 40px 0 36px;
	text-align: center;
	color: var(--white);
}

.single-hero--solid {
	background: linear-gradient(135deg, var(--brand-green-dark, #0066B3) 0%, var(--brand-green, #00A0E3) 100%);
}

.single-hero--gradient {
	background: var(--hero-gradient);
}

.single-hero__content {
	position: relative;
	z-index: 1;
}

.single-hero__badge {
	display: inline-block;
	background: var(--brand-orange, #00A0E3);
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 600;
	padding: 4px 16px;
	border-radius: 20px;
	text-decoration: none;
	margin-bottom: 16px;
}

.single-hero__badge:hover {
	background: var(--brand-orange-light, #f9a54e);
}

.single-hero__title {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 16px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.single-hero__meta {
	font-size: 0.95rem;
	opacity: 0.9;
}

.single-hero__sep {
	margin: 0 6px;
}

/* Breadcrumbs */
.breadcrumbs {
	background: var(--white);
	border-bottom: 1px solid #eee;
	padding: 12px 0;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	font-size: 0.85rem;
	color: #999;
}

.breadcrumbs__list li::after {
	content: '›';
	margin-left: 8px;
	color: #ccc;
}

.breadcrumbs__list li:last-child::after {
	display: none;
}

.breadcrumbs__list a {
	color: var(--brand-crimson);
	text-decoration: none;
}

.breadcrumbs__list a:hover {
	text-decoration: underline;
}

/* Single Article */
.single-article {
	padding: 48px 0;
	background: var(--white);
}

.container--narrow {
	max-width: 760px;
}

.single-article__content {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-dark);
}

.single-article__content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 32px 0 16px;
	color: var(--text-dark);
}

.single-article__content h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 24px 0 12px;
}

.single-article__content p {
	margin-bottom: 16px;
}

.single-article__content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 16px 0;
}

.single-article__content ul,
.single-article__content ol {
	margin: 16px 0;
	padding-left: 24px;
}

.single-article__content li {
	margin-bottom: 8px;
}

.single-article__content blockquote {
	border-left: 4px solid var(--brand-crimson);
	padding: 16px 24px;
	margin: 24px 0;
	background: #fdf2f4;
	border-radius: 0 8px 8px 0;
	font-style: italic;
	color: var(--text-gray);
}

/* Gutenberg blocks inside content */
.single-article__content .wp-block-image {
	margin: 24px 0;
}

.single-article__content .wp-block-image figcaption {
	font-size: 0.85rem;
	color: var(--text-gray);
	text-align: center;
	margin-top: 8px;
	font-style: italic;
}

.single-article__content .wp-block-gallery {
	margin: 24px 0;
	gap: 8px;
}

.single-article__content .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 0.95rem;
}

.single-article__content .wp-block-table th,
.single-article__content .wp-block-table td {
	padding: 10px 14px;
	border: 1px solid #e0e0e0;
	text-align: left;
}

.single-article__content .wp-block-table th {
	background: var(--brand-crimson);
	color: var(--white);
	font-weight: 600;
}

.single-article__content .wp-block-table tr:nth-child(even) td {
	background: #fafafa;
}

.single-article__content .wp-block-video {
	margin: 24px 0;
}

.single-article__content .wp-block-video video {
	max-width: 100%;
	border-radius: 8px;
}

.single-article__content .wp-block-embed {
	margin: 24px 0;
}

.single-article__content .wp-block-separator {
	border: none;
	border-top: 2px solid #eee;
	margin: 32px auto;
	max-width: 200px;
}

.single-article__content .wp-block-quote {
	border-left: 4px solid var(--brand-crimson);
	padding: 16px 24px;
	margin: 24px 0;
	background: #fdf2f4;
	border-radius: 0 8px 8px 0;
	font-style: italic;
}

.single-article__content .wp-block-quote cite {
	display: block;
	margin-top: 8px;
	font-size: 0.85rem;
	font-style: normal;
	color: var(--text-gray);
}

/* Medical Disclaimer */
.single-article__disclaimer {
	margin-top: 32px;
	padding: 16px 20px;
	background: #fff8e1;
	border-left: 4px solid #f5a623;
	border-radius: 0 8px 8px 0;
	font-size: 0.9rem;
	color: #7a6200;
}

/* (Social share removed per client request) */

/* Related Posts */
.related-posts {
	padding: 48px 0;
	background: var(--cream-bg);
}

.related-posts__title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Blog Responsive */
@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.recent-posts__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.related-posts__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.single-hero__title {
		font-size: 1.6rem;
	}

	.single-hero {
		padding: 32px 0 28px;
	}

	.single-hero__image {
		max-height: 300px;
	}

	.single-hero__img {
		max-height: 300px;
	}
}

@media (max-width: 480px) {
	.recent-posts__grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════
 * BLOG SLIDER (front-page "Полезно" section)
 * ═══════════════════════════════════════════════ */
.blog-slider {
	padding: 80px 0;
	background: var(--sl-bg, #e8f5e9);
}

.blog-slider__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 16px;
}

.blog-slider__header .section-title {
	margin-bottom: 0;
}

.blog-slider__subtitle {
	color: #666;
	font-size: 1rem;
	margin: 4px 0 0;
}

/* View All button — fully dashboard-controlled */
.blog-slider__view-all {
	display: inline-flex;
	align-items: center;
	padding: 10px 24px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s;
	background: var(--sl-va-bg, transparent);
	color: var(--sl-va-color, var(--brand-green-dark, #0066B3));
	border: 2px solid var(--sl-va-color, var(--brand-green-dark, #0066B3));
}

.blog-slider__view-all:hover {
	background: var(--sl-va-hover-bg, var(--brand-green-dark, #0066B3));
	color: var(--sl-va-hover-color, #fff);
	border-color: var(--sl-va-hover-bg, var(--brand-green-dark, #0066B3));
}

/* Bottom CTA — hidden on desktop, shown on mobile */
.blog-slider__bottom-cta {
	display: none;
}

/* ═══════════════════════════════════════════════
 * BLOG CATEGORY FILTER BUTTONS
 * ═══════════════════════════════════════════════ */
.blog-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
	justify-content: center;
}

.blog-categories__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border: 2px solid var(--border-light, #dde8c4);
	border-radius: 30px;
	background: var(--white, #fff);
	color: var(--text-dark, #333);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
}

.blog-categories__btn:hover {
	border-color: var(--brand-green, #00A0E3);
	background: var(--cream-bg, #f0f5e3);
	color: var(--brand-green-dark, #0066B3);
}

.blog-categories__btn.active {
	background: var(--brand-green-dark, #0066B3);
	border-color: var(--brand-green-dark, #0066B3);
	color: var(--white, #fff);
}

.blog-categories__btn.active .blog-categories__count {
	background: rgba(255,255,255,0.25);
	color: var(--white, #fff);
}

.blog-categories__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 10px;
	background: var(--cream-bg, #f0f5e3);
	color: var(--text-gray, #555);
	font-size: 0.7rem;
	font-weight: 700;
}

@media (max-width: 768px) {
	.blog-categories {
		gap: 8px;
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
		margin-bottom: 20px;
	}

	.blog-categories__btn {
		padding: 6px 14px;
		font-size: 0.8rem;
	}
}

/* Outer wrapper — arrows sit on the sides */
.blog-slider__outer {
	display: flex;
	align-items: center;
	gap: 16px;
	position: relative;
}

/* Viewport — overflow hidden, takes up the center */
.blog-slider__viewport {
	flex: 1;
	overflow: hidden;
}

.blog-slider__track {
	display: flex;
	gap: 24px;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-slider__card {
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: 0;
	border-radius: 12px;
	overflow: hidden;
	background: var(--sl-card-bg, #fff);
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}

.blog-slider__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-slider__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.blog-slider__image {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #e8eaed;
}

.blog-slider__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.blog-slider__card:hover .blog-slider__image img {
	transform: scale(1.05);
}

.blog-slider__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	background: linear-gradient(135deg, #e3f2fd, #f5f5f5);
}

.blog-slider__badge {
	display: inline-block;
	background: var(--sl-badge-bg, #00A0E3);
	color: var(--sl-badge-color, #fff);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}

.blog-slider__body {
	padding: 20px;
}

.blog-slider__title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 12px;
	color: var(--sl-card-title, #1d2327);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-slider__btn {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--sl-btn, #0066B3);
	transition: color 0.2s;
}

.blog-slider__card:hover .blog-slider__btn {
	color: var(--color-primary-dark);
}

/* Arrows — sit outside the viewport on desktop */
.blog-slider__arrow {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border: 2px solid #ddd;
	background: rgba(255,255,255,0.95);
	border-radius: 50%;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
}

.blog-slider__arrow:hover {
	background: var(--brand-orange, #00A0E3);
	border-color: var(--brand-orange, #00A0E3);
	color: #fff;
}

/* Dots */
.blog-slider__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.blog-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #ccc;
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: all 0.2s;
}

.blog-slider__dot.active {
	background: var(--brand-orange, #00A0E3);
	border-color: var(--brand-orange, #00A0E3);
	transform: scale(1.2);
}

/* ── Mobile: 1 card, horizontal layout, swipe + dots ── */
@media (max-width: 768px) {
	.blog-slider { padding: 36px 0; }

	.blog-slider__outer { gap: 0; }
	.blog-slider__arrow { display: none; }
	/* Mobile: native scroll-snap instead of JS transform */
	.blog-slider__viewport {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE */
	}
	.blog-slider__viewport::-webkit-scrollbar { display: none; }

	.blog-slider__track {
		gap: 12px;
		transform: none !important; /* disable JS transform on mobile */
	}

	.blog-slider__card {
		flex: 0 0 85%;
		scroll-snap-align: start;
	}

	/* Horizontal card on mobile: image left, text right */
	.blog-slider__link {
		display: flex;
		flex-direction: row;
		align-items: stretch;
	}

	.blog-slider__image {
		flex: 0 0 120px;
		aspect-ratio: auto;
		min-height: 130px;
	}

	.blog-slider__body {
		flex: 1;
		padding: 12px 14px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.blog-slider__badge {
		font-size: 0.65rem;
		padding: 2px 8px;
		margin-bottom: 6px;
	}

	.blog-slider__title {
		font-size: 0.9rem;
		margin-bottom: 6px;
		-webkit-line-clamp: 3;
	}

	.blog-slider__btn {
		font-size: 0.8rem;
	}

	.blog-slider__header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-bottom: 20px;
	}

	.blog-slider__header .section-title {
		font-size: 1.4rem;
	}

	/* Hide button in header on mobile — show bottom one instead */
	.blog-slider__header .blog-slider__view-all {
		display: none;
	}

	.blog-slider__dots {
		margin-top: 16px;
	}

	.blog-slider__dot {
		width: 8px;
		height: 8px;
	}

	/* Bottom centered button on mobile */
	.blog-slider__bottom-cta {
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	.blog-slider__bottom-cta .blog-slider__view-all {
		padding: 10px 28px;
		font-size: 0.9rem;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.blog-slider__card {
		flex: 0 0 88%;
	}

	.blog-slider__image {
		flex: 0 0 100px;
		min-height: 110px;
	}

	.blog-slider__body { padding: 10px 12px; }
	.blog-slider__title { font-size: 0.85rem; }
}

/* ========================================================================
   NEW DESIGN — Nikitabs Homepage Redesign
   Different from Dexinal: split-screen hero, trust bar,
   bento grid, zigzag, wave CTA
   ======================================================================== */

/* --- Split-Screen Hero --- */

.hero--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 85vh;
	background: var(--white);
	padding: 0;
	overflow: hidden;
}

.hero__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 48px 60px 64px;
	background: linear-gradient(160deg, #f0f6ff 0%, var(--cream-bg) 100%);
}

.hero__text-wrap {
	max-width: 540px;
	margin-left: auto;
}

.hero__tagline {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-accent, #C41E3A);
	margin-bottom: 12px;
}

.hero--split .hero__title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	color: var(--brand-primary, #1B3A6B);
	line-height: 1.05;
	margin-bottom: 8px;
}

.hero--split .hero__title sup {
	font-size: 0.4em;
	top: -0.8em;
}

.hero--split .hero__inn {
	font-family: 'DIN Pro', var(--font-family);
	font-size: 0.95rem;
	color: var(--brand-primary-light, #0066B3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hero--split .hero__description {
	font-size: 1.15rem;
	line-height: 1.7;
	color: var(--text-gray);
	margin-bottom: 32px;
	max-width: 460px;
}

.hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero__product {
	margin-top: auto;
	padding-top: 24px;
}

.hero__product-img {
	max-width: 380px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 12px 32px rgba(27, 58, 107, 0.2));
	animation: hero-float 4s ease-in-out infinite;
}

.hero__right {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background: linear-gradient(180deg, #c5ddf5 0%, #a3c8ed 100%);
	overflow: hidden;
	position: relative;
}

.hero__illustration {
	max-height: 90vh;
	width: auto;
	object-fit: contain;
	object-position: bottom center;
}

/* --- Trust Bar --- */

.trust-bar {
	background: var(--brand-primary, #1B3A6B);
	color: var(--white);
	padding: 36px 0;
}

.trust-bar__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.trust-bar__stat {
	text-align: center;
	min-width: 120px;
}

.trust-bar__number {
	display: block;
	font-family: 'DIN Pro', var(--font-family);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.1;
	color: var(--brand-secondary, #00A0E3);
}

.trust-bar__number small {
	font-size: 0.6em;
	font-weight: 400;
}

.trust-bar__label {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.8;
	margin-top: 4px;
}

.trust-bar__divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
}

/* --- Bento Grid (Why Quit) --- */

.why-quit {
	padding: 80px 0;
	background: var(--white);
}

.section-heading {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 700;
	color: var(--brand-primary, #1B3A6B);
	margin-bottom: 48px;
	text-wrap: balance;
}

.section-heading__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--brand-secondary, #00A0E3);
	margin-bottom: 8px;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bento-card {
	background: var(--cream-bg, #EAF2FA);
	border-radius: 16px;
	padding: 32px;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bento-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--brand-primary-light), var(--brand-secondary));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.bento-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(27, 58, 107, 0.12);
}

.bento-card:hover::before {
	opacity: 1;
}

.bento-card--featured {
	grid-column: span 2;
	grid-row: span 2;
	background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
	color: var(--white);
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.bento-card--featured::before {
	display: none;
}

.bento-card--featured .bento-card__title {
	font-size: 1.6rem;
	color: var(--white);
}

.bento-card--featured .bento-card__desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	line-height: 1.7;
}

.bento-card--featured .bento-card__link {
	color: var(--brand-secondary, #00A0E3);
	font-weight: 600;
	text-decoration: none;
	margin-top: 16px;
	display: inline-block;
}

.bento-card--featured .bento-card__link:hover {
	text-decoration: underline;
}

.bento-card--wide {
	grid-column: span 3;
	display: flex;
	align-items: center;
	gap: 20px;
	background: linear-gradient(90deg, #f0f6ff, var(--cream-bg));
	padding: 24px 32px;
}

.bento-card--wide .bento-card__title {
	font-size: 1.1rem;
	margin-bottom: 4px;
}

.bento-card--wide .bento-card__desc {
	font-size: 0.92rem;
}

.bento-card__icon {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin-bottom: 16px;
	border-radius: 12px;
}

.bento-card--featured .bento-card__icon {
	width: 80px;
	height: 80px;
	margin-bottom: 24px;
	filter: brightness(0) invert(1);
	opacity: 0.7;
}

.bento-card--wide .bento-card__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	margin-bottom: 0;
}

.bento-card__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--brand-primary, #1B3A6B);
	margin-bottom: 8px;
}

.bento-card__desc {
	font-size: 0.95rem;
	color: var(--text-gray);
	line-height: 1.6;
}

/* --- Zigzag (How It Works) --- */

.how-works {
	padding: 80px 0;
	background: var(--cream-bg, #EAF2FA);
}

.zigzag {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 64px;
}

.zigzag:last-of-type {
	margin-bottom: 0;
}

.zigzag--reverse {
	direction: rtl;
}

.zigzag--reverse > * {
	direction: ltr;
}

.zigzag__media {
	border-radius: 20px;
	overflow: hidden;
	background: var(--white);
	padding: 32px;
	box-shadow: 0 8px 32px rgba(27, 58, 107, 0.08);
}

.zigzag__media img {
	width: 100%;
	height: auto;
	object-fit: contain;
	max-height: 320px;
	display: block;
	margin: 0 auto;
}

.zigzag__step {
	font-family: 'DIN Pro', var(--font-family);
	font-size: 4rem;
	font-weight: 700;
	color: rgba(0, 102, 179, 0.12);
	line-height: 1;
	display: block;
	margin-bottom: -8px;
}

.zigzag__text h3 {
	font-size: 1.4rem;
	color: var(--brand-primary, #1B3A6B);
	margin-bottom: 12px;
}

.zigzag__text p {
	font-size: 1.05rem;
	color: var(--text-gray);
	line-height: 1.7;
}

/* --- Disclaimer Block --- */

.disclaimer-section {
	padding: 32px 0;
	background: #f5f7fa;
}

.disclaimer-block {
	text-align: center;
	font-size: 0.82rem;
	color: var(--text-gray);
	line-height: 1.6;
}

.disclaimer-block__meta {
	margin-top: 4px;
	font-weight: 600;
	color: var(--brand-primary, #1B3A6B);
}

/* --- CTA Section with Wave --- */

.cta-section {
	background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
	color: var(--white);
	padding: 80px 0;
	position: relative;
	text-align: center;
}

.cta-section__wave {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 60px;
}

.cta-section__title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--white);
}

.cta-section__text {
	font-size: 1.1rem;
	opacity: 0.85;
	margin-bottom: 32px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.cta-section__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* --- Button variants --- */

.btn--lg {
	padding: 14px 32px;
	font-size: 1rem;
}

.btn--white {
	background: var(--white);
	color: var(--brand-primary, #1B3A6B);
	border: none;
	font-weight: 700;
}

.btn--white:hover {
	background: #f0f6ff;
	transform: translateY(-2px);
}

.btn--outline-white {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* --- Responsive: Split Hero → Stack --- */

@media (max-width: 1024px) {
	.hero--split {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero__left {
		padding: 48px 24px;
		order: 1;
	}

	.hero__text-wrap {
		max-width: 100%;
		margin-left: 0;
	}

	.hero__right {
		order: 2;
		max-height: 50vh;
	}

	.hero__product-img {
		max-width: 280px;
	}
}

@media (max-width: 768px) {
	.hero--split .hero__title {
		font-size: 2.2rem;
	}

	.hero__right {
		max-height: 40vh;
	}

	.trust-bar__inner {
		gap: 20px;
	}

	.trust-bar__number {
		font-size: 1.8rem;
	}

	.trust-bar__divider {
		display: none;
	}

	.bento-grid {
		grid-template-columns: 1fr;
	}

	.bento-card--featured,
	.bento-card--wide {
		grid-column: span 1;
		grid-row: span 1;
	}

	.bento-card--featured {
		padding: 32px;
	}

	.bento-card--wide {
		flex-direction: column;
		text-align: center;
	}

	.zigzag,
	.zigzag--reverse {
		grid-template-columns: 1fr;
		gap: 24px;
		direction: ltr;
	}

	.zigzag__step {
		font-size: 2.5rem;
	}

	.cta-section__actions {
		flex-direction: column;
		align-items: center;
	}
}
