/* ============================================================
   Schedule Validator WordPress Theme — Main Stylesheet
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
	--bg:            #0b1e0f;
	--bg-dark:       #08140a;
	--bg-card:       #0e2614;
	--bg-light:      #f5f7f5;
	--bg-white:      #ffffff;
	--green-cta:     #7edb7f;
	--green-cta-h:   #6bc870;
	--green-bright:  #7edb7f;
	--green-label:   #6cc46a;
	--green-border:  rgba(76, 175, 80, 0.22);
	--white:         #ffffff;
	--dark-text:     #111b13;
	--mid-text:      #374238;
	--text-muted:    rgba(255, 255, 255, 0.68);
	--text-subtle:   rgba(255, 255, 255, 0.42);
	--border:        rgba(255, 255, 255, 0.08);
	--border-green:  rgba(76, 175, 80, 0.18);
	--radius-sm:     6px;
	--radius-md:     10px;
	--radius-lg:     16px;
	--radius-xl:     24px;
	--shadow:        0 4px 24px rgba(0, 0, 0, 0.4);
	--shadow-card:   0 2px 16px rgba(0, 0, 0, 0.08);
	--transition:    0.2s ease;
	--font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--header-h:      90px;
	--max-w:         1200px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg-dark); color: var(--white); line-height: 1.6; min-height: 100vh; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg  { display: inline-block; vertical-align: middle; flex-shrink: 0; }
:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; }

/* ── Utility ────────────────────────────────────────────────── */
.text-highlight { color: var(--green-bright); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Shared Layout ──────────────────────────────────────────── */
.section-intro { text-align: center; margin-bottom: 56px; }
.section-label {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #46A147;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.section-headline {
	font-size: clamp(1.9rem, 3.8vw, 2.75rem); font-weight: 900; line-height: 1.12;
	letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px;
}
.section-headline--dark { color: var(--dark-text); }
.section-subtitle { font-size: 1.0625rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.65; }
.section-subtitle--dark { color: var(--mid-text); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
	display: inline-flex; align-items: center; gap: 6px; font-family: var(--font);
	font-weight: 600; border-radius: var(--radius-md); transition: background var(--transition),
	color var(--transition), border-color var(--transition); white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn-primary          { background: #46A147; color: #fff; border: 2px solid transparent; font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 600; line-height: 1.4; text-transform: capitalize; }
.btn-primary:hover    { background: var(--green-cta-h); }
.btn-outline-white    { background: rgba(70,161,71,0.1); color: #fff; border: 1px solid #46A147; border-radius: 10px; }
.btn-outline-white:hover { background: rgba(70,161,71,0.2); border-color: #7EDB7F; }
.btn-outline-green    { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-outline-green:hover { border-color: var(--green-bright); color: var(--green-bright); }
.btn-outline-dark     { background: rgba(70,161,71,0.1); color: #fff; border: 1px solid #46A147; border-radius: 10px; }
.btn-outline-dark:hover { background: rgba(70,161,71,0.2); border-color: #7EDB7F; }
.btn-sm    { padding: 10px 14px; font-size: 14px; }
.btn-lg    { padding: 10px 14px; font-size: 1rem; min-height: 64px; gap: 4px; }
.btn-block { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
	height: var(--header-h); background: transparent; border-bottom: 1px solid transparent;
	transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
	background: rgba(8, 20, 10, 0.92);
	border-bottom-color: var(--border);
	box-shadow: 0 2px 24px rgba(0,0,0,0.5);
	backdrop-filter: blur(12px);
}
.site-header.menu-open {
	background: rgba(8, 20, 10, 0.98);
	border-bottom-color: var(--border);
	box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.header-container {
	max-width: 1320px; margin: 0 auto; padding: 0 28px; height: 100%;
	display: flex; align-items: center; gap: 5px;
}
.header-logo { flex-shrink: 0; }
.logo-link { display: inline-flex; align-items: center; gap: 10px; }
.logo-text { font-size: 1.0625rem; font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
/* Custom logo image + SVG icon constrained to Figma height */
.custom-logo          { height: 26.5px; width: auto; display: block; }
.logo-icon svg        { height: 26.5px; width: auto; }
.header-nav { flex: 1; min-width: 0; }
.nav-menu { display: flex; align-items: stretch; gap: 2px; justify-content: center; flex-wrap: nowrap; }
.nav-menu li { position: relative; display: flex; align-items: center; }
.nav-menu li a {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 11px;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255,255,255,0.85);
	border-radius: var(--radius-sm);
	transition: color var(--transition), background var(--transition);
	white-space: nowrap;
}
.nav-menu li a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-menu .menu-item-has-children > a::after {
	content: ''; display: inline-block; width: 14px; height: 14px;
	background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5L7 9L11 5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
	transition: transform var(--transition); opacity: 0.75;
}
.nav-menu .menu-item-has-children:hover > a::after { transform: rotate(180deg); }
.nav-menu .sub-menu {
	position: absolute; top: 100%; left: 0;
	background: #0f2a17; border: 1px solid var(--border-green); border-radius: var(--radius-md);
	min-width: 200px; padding: 14px 6px 6px; opacity: 0; visibility: hidden;
	transform: translateY(-4px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	box-shadow: var(--shadow); z-index: 9999;
}
.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu li a { padding: 9px 14px; font-size: 0.875rem; }
.header-right { flex-shrink: 0; display: flex; align-items: center; gap: 10px; min-width: 0; }
.header-right .btn-outline-white { color: #fff; border: 0px solid #46A147; border-radius: 6px; background: rgba(70,161,71,0.26); height: 40px; }
.header-right .btn-sm { padding: 10px 14px; font-family: 'Manrope', sans-serif; font-size: 14px; font-style: normal; font-weight: 600; line-height: 140%; height: 40px; }
.lang-selector {
	display: flex; align-items: center; gap: 4px; padding: 8px 12px;
	font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85);
	border-radius: var(--radius-sm); cursor: pointer; transition: background var(--transition); user-select: none;
}
.lang-selector:hover { background: rgba(255,255,255,0.06); }
.mobile-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; border-radius: var(--radius-sm); }
.toggle-bar { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); width: 100%; background: var(--bg-dark); z-index: 9999; overflow-x: hidden; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-inner { padding: 24px; }
.mobile-menu { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.mobile-menu li a { display: block; padding: 12px 16px; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.87); border-radius: var(--radius-sm); transition: background var(--transition); }
.mobile-menu li a:hover { background: rgba(255,255,255,0.06); }
.mobile-menu .sub-menu { padding-left: 16px; }
.mobile-actions { display: flex; flex-direction: column; gap: 10px; }

/* ════════════════════════════════════════════════════════════════
   1. HERO SECTION
   ════════════════════════════════════════════════════════════════ */
.hero-section {
	position: relative; min-height: 887px; padding-top: var(--header-h);
	display: flex; flex-direction: column; background: var(--bg);
	background-image: var(--hero-bg, url('../images/hero-bg.jpg'));
	background-size: cover; background-position: center top; overflow: hidden;
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(8,20,10,0.75) 0%, rgba(8,20,10,0.55) 35%, rgba(8,20,10,0.85) 72%, rgba(8,20,10,1) 100%);
	pointer-events: none; z-index: 1;
}
.hero-container {
	position: relative; z-index: 2; flex: 1; max-width: 900px; margin: 0 auto;
	padding: 80px 24px 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; width: 100%;
}
/* Badge — Figma: Anton 20px / 32px lh / 0.6px ls / #7EDB7F */
.hero-badge {
	display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px;
	border: 1.5px solid var(--green-bright); border-radius: 100px;
	font-family: 'Anton', sans-serif; font-size: 20px; font-weight: 400;
	color: var(--green-bright); line-height: 32px; letter-spacing: 0.6px;
}
.hero-badge-bolt { width: 14px; height: 16px; fill: var(--green-bright); flex-shrink: 0; }
/* Headline — Figma: Anton 72px / 88px lh / #FFF */
.hero-headline {
	font-family: 'Anton', sans-serif;
	font-size: clamp(38px, 5vw, 72px);
	font-weight: 400;
	line-height: 1.222;
	letter-spacing: 0;
	color: var(--white);
}
/* Subtitle — Figma: Manrope 20px / 32px lh / #FFF */
.hero-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;
	max-width: 680px;
	line-height: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
/* Note — Figma: Manrope 20px / 600w / 32px lh / #7EDB7F */
.hero-note {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: var(--green-bright);
	line-height: 32px;
}
.hero-dashboard-wrap { width: 100%; max-width: 980px; margin-top: auto; padding: 0 24px; }
.hero-dashboard-img  { width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: 0 -4px 60px rgba(0,0,0,0.5); }
.dashboard-placeholder { background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; box-shadow: 0 -4px 60px rgba(0,0,0,0.5); color: #1a1a1a; }
.dash-header { background: #f8f9fa; padding: 12px 20px; border-bottom: 1px solid #e0e0e0; }
.dash-label  { font-size: 0.875rem; font-weight: 600; color: #333; }
.dash-stats  { display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; background: #e0e0e0; }
.dash-stat   { background: #fff; padding: 14px 10px; text-align: center; }
.dash-stat-label { font-size: 0.65rem; color: #666; margin-bottom: 5px; }
.dash-stat-value { font-size: 1.6rem; font-weight: 800; color: #333; }
.dash-stat-value span { font-size: 0.9rem; }
.dash-stat--green  .dash-stat-value { color: #2e7d32; }
.dash-stat--orange .dash-stat-value { color: #e65100; }
.dash-stat--red    .dash-stat-value { color: #c62828; }
.dash-stat--green2 .dash-stat-value { color: #1b5e20; }

/* ════════════════════════════════════════════════════════════════
   2. CORE CAPABILITIES
   ════════════════════════════════════════════════════════════════ */
.capabilities-section {
	position: relative; background: var(--bg);
	background-image: var(--cap-bg, none); background-size: cover; background-position: center;
	padding: 100px 0 64px; overflow: hidden;
}
.capabilities-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg,rgba(8,20,10,.92) 0%,rgba(8,20,10,.78) 50%,rgba(8,20,10,.92) 100%);
	pointer-events: none; z-index: 1;
}
.capabilities-container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Main Feature Card */
.feature-card {
	display: grid; grid-template-columns: 1fr 1.55fr; border-radius: var(--radius-xl);
	overflow: hidden; background: linear-gradient(135deg,#0d2a18 0%,#112215 100%);
	border: 1px solid var(--green-border); box-shadow: 0 8px 48px rgba(0,0,0,.4); margin-bottom: 32px;
}
.feature-card-content { padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.feature-title { font-size: clamp(1.7rem,2.8vw,2.4rem); font-weight: 900; line-height: 1.1; color: var(--white); letter-spacing: -0.02em; margin-bottom: 18px; }
.feature-desc  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }
.feature-card-image { background: linear-gradient(145deg,#f0f4f1 0%,#e8ede9 100%); padding: 28px; display: flex; align-items: center; justify-content: center; }
.feature-screenshot  { border-radius: var(--radius-md); box-shadow: 0 4px 24px rgba(0,0,0,.18); width: 100%; }
.screenshot-placeholder { background: #fff; border-radius: var(--radius-md); overflow: hidden; width: 100%; box-shadow: 0 4px 24px rgba(0,0,0,.18); }
.screenshot-header   { background: #f8f9fa; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e8e8e8; }
.screenshot-tabs     { display: flex; gap: 6px; }
.tab { padding: 5px 12px; font-size: 0.72rem; font-weight: 600; color: #666; border-radius: 6px; }
.tab.active { background: #2e7d32; color: #fff; }
.screenshot-score    { display: flex; flex-direction: column; align-items: center; background: #e8f5e9; border-radius: 8px; padding: 5px 12px; }
.score-num  { font-size: 1.4rem; font-weight: 800; color: #2e7d32; line-height: 1; }
.score-label{ font-size: 0.58rem; font-weight: 700; color: #4caf50; letter-spacing: 0.05em; }
.screenshot-row { display: grid; grid-template-columns: 90px 44px 1fr 90px; padding: 6px 14px; font-size: 0.7rem; color: #333; border-bottom: 1px solid #f0f0f0; align-items: center; gap: 8px; }
.screenshot-row:last-child { border-bottom: none; }
.header-row  { background: #f8f9fa; font-weight: 700; color: #555; font-size: 0.68rem; }
.score-cell  { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 20px; border-radius: 4px; font-weight: 700; font-size: 0.72rem; color: #fff; background: #2e7d32; }

/* Sub-features light band */
.sub-features-band {
	position: relative;
	background: #f3f6f3;
	background-image: var(--cap-bg, none);
	background-size: cover; background-position: center;
	padding: 64px 0 80px; overflow: hidden;
}
.sub-features-band-overlay {
	position: absolute; inset: 0; pointer-events: none;
	background: rgba(240, 246, 240, 0.90);
}
.sub-features-inner {
	position: relative; z-index: 2;
	max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}

/* Sub-feature cards */
.sub-features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sub-feature-card {
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: 40px 36px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
	align-self: stretch;
	transition: box-shadow var(--transition), transform var(--transition);
}
.sub-feature-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.10); transform: translateY(-3px); }
.sub-feature-title {
	font-family: 'Anton', sans-serif;
	font-size: 32px;
	font-weight: 400;
	color: #7EDB7F;
	line-height: 48px;
	margin-bottom: 16px;
}
.sub-feature-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #121212;
	line-height: 32px;
}

/* ════════════════════════════════════════════════════════════════
   3. THREE STEPS / ZERO INSTALLS
   ════════════════════════════════════════════════════════════════ */
.steps-section {
	position: relative;
	background: var(--bg-dark);
	background-image: var(--steps-bg, none);
	background-size: cover;
	background-position: center center;
	padding: 100px 0 0;
	overflow: hidden;
}
.steps-overlay {
	position: absolute; inset: 0; z-index: 1;
	background: rgba(8, 20, 10, 0.82);
	pointer-events: none;
}
.steps-container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-intro--center { text-align: center; }

/* Headline — Anton display font, exact Figma sizes */
.steps-headline {
	font-family: 'Anton', sans-serif;
	font-size: clamp(38px, 5.5vw, 56px);
	font-weight: 400;
	line-height: 1.08;
	color: var(--white);
	margin-bottom: 20px;
	letter-spacing: 0;
}
.steps-highlight { color: #7edb7f; font-family: 'Anton', sans-serif; }
.steps-subtitle  { font-size: 20px; color: var(--text-muted); max-width: 100%; margin: 0 auto 56px; line-height: 1.65; }

/* Grid */
.steps-grid {
	display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px;
}

/* Step cards */
.step-card {
	background: rgba(13, 40, 20, 0.65);
	border: 1px solid rgba(126, 219, 127, 0.22);
	border-radius: var(--radius-lg);
	padding: 32px 28px 28px;
	display: flex; flex-direction: column;
	min-height: 320px; overflow: hidden;
	transition: border-color var(--transition), background var(--transition);
	backdrop-filter: blur(6px);
}
.step-card:hover {
	border-color: rgba(126, 219, 127, 0.45);
	background: rgba(13, 40, 20, 0.82);
}

/* Large ghost step number — Figma values */
.step-number {
	font-family: 'Anton', sans-serif;
	font-size: 102px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 5.1px;
	color: rgba(126, 219, 127, 0.17);
	-webkit-text-stroke: 2px rgba(126, 219, 127, 0.45);
	opacity: 0.5;
	flex: 1;
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
	user-select: none;
}

/* Title + description pushed to bottom of card */
.step-card-footer { margin-top: auto; }
.step-title {
	font-family: 'Anton', sans-serif;
	font-size: clamp(18px, 1.8vw, 22px);
	font-weight: 400;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 32px;
	letter-spacing: 0.02em;
}
.step-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.80);
}

/* Section-level CTAs + note */
.steps-ctas {
	display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px;
}
.steps-note {
	text-align: center;
	color: #7edb7f;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0;
}

/* Stats Counter Bar */
.stats-counter-bar {
	display: flex; align-items: center; justify-content: center;
	gap: 0; border-top: 1px solid var(--border); background: rgba(0,0,0,.25);
	margin: 48px -24px 0; padding: 0 24px;
}
.stat-item   { flex: 1; text-align: center; padding: 36px 20px; }
.stat-value  { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.stat-label  { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 8px; text-transform: uppercase; }
.stat-divider{ width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   4. THREE VIEWS — TOTAL CLARITY
   ════════════════════════════════════════════════════════════════ */
.views-section {
	position: relative;
	background: #f8f9f8;
	background-image: var(--views-bg, none);
	background-size: cover; background-position: center;
	padding: 100px 0; overflow: hidden;
}
.views-bg-overlay {
	position: absolute; inset: 0; pointer-events: none;
	background: rgba(248, 249, 248, 0.91);
}
.views-container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Section intro — left aligned */
.views-intro { margin-bottom: 72px; }
.views-headline {
	font-family: 'Anton', sans-serif;
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 400;
	color: #121212;
	line-height: 1.05;
	margin-bottom: 20px;
	letter-spacing: 0;
}
.views-headline-hl { color: #46A147; }
.views-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #374238;
	line-height: 1.65;
	max-width: 600px;
}

/* View rows — full-width alternating side-by-side */
.views-rows { display: flex; flex-direction: column; gap: 80px; }
.view-row {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 60px;
	align-items: center;
}
.view-row--alt { grid-template-columns: 1fr 1.15fr; }
.view-row--alt .view-image-col  { order: 2; }
.view-row--alt .view-content-col{ order: 1; }

/* Screenshot frame */
.view-image-frame {
	background: #eef7ee;
	border: 1.5px solid rgba(70, 161, 71, 0.28);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}
.view-screenshot { width: 100%; border-radius: 10px; display: block; }

/* Placeholder */
.view-img-placeholder {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	min-height: 260px;
}
.vip-topbar { display: flex; gap: 6px; padding: 10px 14px; background: #f5f5f5; }
.vip-dot    { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.vip-rows   { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.vip-row    { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 8px; align-items: center; }
.vip-cell   { height: 20px; background: #f0f0f0; border-radius: 3px; }
.vip-cell--wide { height: 20px; }
.vip-score  { height: 22px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: #fff; }

/* Content column */
.view-eyebrow {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #46A147;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.view-title {
	font-family: 'Anton', sans-serif;
	font-size: clamp(32px, 3.5vw, 48px);
	font-weight: 400;
	color: #121212;
	line-height: 1.08;
	margin-bottom: 20px;
	letter-spacing: 0;
}
.view-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #374238;
	line-height: 1.65;
	margin-bottom: 32px;
}
.view-features { display: flex; flex-direction: column; gap: 16px; }
.view-features li {
	display: flex; align-items: center; gap: 12px;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #121212;
}
.view-check { flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════════
   5. BUILT FOR SCALE
   ════════════════════════════════════════════════════════════════ */
.scale-section {
	position: relative; background: var(--bg);
	background-image: var(--scale-bg, none); background-size: cover; background-position: center;
	padding: 100px 0;
}
.scale-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg,rgba(8,20,10,.88) 0%,rgba(8,20,10,.78) 100%);
	pointer-events: none; z-index: 1;
}
.scale-container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; text-align: center; }
.scale-headline  { font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; color: var(--white); margin-bottom: 56px; }
.scale-stats-row { display: flex; align-items: center; justify-content: center; gap: 80px; flex-wrap: wrap; }
.scale-stat      { text-align: center; }
.scale-stat-value{ font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.scale-stat-label{ font-size: 0.9rem; font-weight: 600; color: var(--text-muted); margin-top: 10px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ════════════════════════════════════════════════════════════════
   6. TESTIMONIALS
   ════════════════════════════════════════════════════════════════ */
.testimonials-section    { background: var(--bg-light); padding: 100px 0; }
.testimonials-container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.testimonials-grid       { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testimonial-card        { background: var(--white); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,.06); display: flex; flex-direction: column; gap: 16px; }
.star-row                { display: flex; gap: 3px; }
.testimonial-text        { font-size: 0.9375rem; color: var(--mid-text); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author-row  { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar      { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-avatar-placeholder {
	width: 44px; height: 44px; border-radius: 50%; background: var(--green-cta);
	color: #fff; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-name { font-size: 0.9375rem; font-weight: 700; color: var(--dark-text); }
.testimonial-role { font-size: 0.8125rem; color: #6b7280; }

/* ════════════════════════════════════════════════════════════════
   7. EXPLORE NEW FEATURES
   ════════════════════════════════════════════════════════════════ */
.explore-section    { background: var(--bg-white); padding: 100px 0; }
.explore-container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.explore-layout     { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.explore-features-list { display: flex; flex-direction: column; gap: 20px; }
.explore-feature-item   { display: flex; gap: 16px; align-items: flex-start; }
.explore-feature-icon   {
	flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-md);
	background: #f0faf0; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.explore-feature-title  { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 4px; }
.explore-feature-desc   { font-size: 0.875rem; color: var(--mid-text); line-height: 1.55; }
.explore-image-wrap { position: sticky; top: 100px; }
.explore-image      { border-radius: var(--radius-xl); box-shadow: 0 8px 40px rgba(0,0,0,.12); width: 100%; }
.explore-image-placeholder {
	background: linear-gradient(145deg,#f0f8f0 0%,#e6f2e6 100%); border-radius: var(--radius-xl);
	overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.eip-header { background: #2e7d32; padding: 12px 16px; display: flex; gap: 6px; }
.eip-dot    { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); }
.eip-rows   { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.eip-row    { display: grid; grid-template-columns: 1fr 50px 1fr; gap: 8px; align-items: center; padding: 6px 8px; background: rgba(255,255,255,.8); border-radius: 4px; }
.eip-cell   { height: 8px; background: #ddd; border-radius: 3px; }
.eip-score  { display: flex; align-items: center; justify-content: center; height: 22px; border-radius: 4px; color: #fff; font-size: 0.72rem; font-weight: 700; }
.eip-wide   { /* inherits */ }

/* ════════════════════════════════════════════════════════════════
   8. VIDEO SECTION
   ════════════════════════════════════════════════════════════════ */
.video-section    { background: var(--bg-dark); padding: 80px 0; }
.video-container  { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.video-container .section-label { margin-bottom: 32px; }
.video-wrapper    { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 12px 60px rgba(0,0,0,.6); }
.video-embed      { position: relative; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; background: #000; overflow: hidden; }
.video-poster     { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play-btn   {
	position: relative; z-index: 2; background: none; border: none; cursor: pointer;
	transition: transform var(--transition), opacity var(--transition);
}
.video-play-btn:hover { transform: scale(1.08); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-embed--placeholder .video-placeholder-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#0d2a18 0%,#1a4a26 100%); }
.video-placeholder-label { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--text-muted); font-size: 0.8125rem; white-space: nowrap; }

/* ════════════════════════════════════════════════════════════════
   9. PINPOINT EVERY ANOMALY
   ════════════════════════════════════════════════════════════════ */
.pinpoint-section {
	position: relative; background: var(--bg); padding: 80px 0; overflow: hidden;
}
.pinpoint-overlay {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 70% 50% at 30% 50%,rgba(58,125,58,.12) 0%,transparent 70%);
	pointer-events: none;
}
.pinpoint-container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pinpoint-content   .section-label { margin-bottom: 12px; }
.pinpoint-headline  { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; color: var(--white); letter-spacing: -0.02em; margin-bottom: 18px; }
.pinpoint-subtitle  { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 36px; }
.pinpoint-features  { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.pinpoint-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.pinpoint-check     { flex-shrink: 0; margin-top: 2px; }
.pinpoint-feature-item strong { font-size: 0.9375rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 4px; }
.pinpoint-feature-item p      { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* Pinpoint Placeholder */
.pinpoint-placeholder { background: rgba(255,255,255,.04); border: 1px solid var(--border-green); border-radius: var(--radius-xl); overflow: hidden; }
.pp-header  { background: linear-gradient(90deg,#1a4a26,#2d7a3a); padding: 20px 24px; display: flex; align-items: center; gap: 16px; }
.pp-score-badge { background: #fff; color: #2e7d32; font-size: 1.5rem; font-weight: 900; padding: 8px 16px; border-radius: 10px; }
.pp-label   { color: rgba(255,255,255,.8); font-size: 0.875rem; font-weight: 600; }
.pp-checks  { padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.pp-check-item { display: grid; grid-template-columns: 130px 1fr 40px; gap: 10px; align-items: center; }
.pp-check-label{ font-size: 0.8125rem; color: var(--text-muted); }
.pp-check-bar  { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.pp-check-fill { height: 100%; border-radius: 3px; transition: width 1s ease; }
.pp-check-pct  { font-size: 0.8125rem; font-weight: 700; color: var(--white); text-align: right; }
.pinpoint-image { border-radius: var(--radius-xl); box-shadow: 0 8px 48px rgba(0,0,0,.4); width: 100%; }

/* ════════════════════════════════════════════════════════════════
   10. BLOG SECTION
   ════════════════════════════════════════════════════════════════ */
.blog-section    { background: var(--bg-light); padding: 64px 0; }
.blog-container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.blog-intro      { margin-bottom: 48px; }
.blog-grid       { display: grid; gap: 24px; margin-bottom: 48px; }
.blog-grid--3    { grid-template-columns: repeat(3,1fr); }
.blog-grid--2    { grid-template-columns: repeat(2,1fr); }
.blog-grid--1    { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 48px; }
.blog-card       { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,.06); display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.12); }
.blog-card-image-link { display: block; overflow: hidden; }
.blog-card-image { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; display: block; }
.blog-card:hover .blog-card-image { transform: scale(1.04); }
.blog-card-body  { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta       { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: #9ca3af; margin-bottom: 10px; }
.blog-cat        { background: #ecfdf5; color: var(--green-cta); padding: 2px 8px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
.blog-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--dark-text); line-height: 1.35; margin-bottom: 10px; flex: 1; }
.blog-card-title a { color: inherit; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--green-cta); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--mid-text); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more    { font-size: 0.875rem; font-weight: 600; color: var(--green-cta); transition: color var(--transition); }
.blog-read-more:hover { color: var(--green-cta-h); }
.blog-view-all   { text-align: center; }

/* ════════════════════════════════════════════════════════════════
   11. CTA BOTTOM
   ════════════════════════════════════════════════════════════════ */
.cta-bottom-section {
	position: relative; background: var(--bg);
	background-image: var(--cta-bg, none); background-size: cover; background-position: center;
	padding: 120px 0; overflow: hidden;
}
.cta-bottom-container { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 24px; text-align: center; }
.cta-bottom-headline  { font-size: clamp(2.4rem,5vw,4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; color: var(--white); margin-bottom: 18px; }
.cta-bottom-subtitle  { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 40px; }
.cta-bottom-btns      { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--bg-dark); border-top: 1px solid var(--border-green); }
.footer-container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.footer-main { padding: 72px 0 56px; }
.footer-main > .footer-container { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo-link { display: inline-flex; align-items: center; gap: 8px; }
.footer-logo-text { font-size: 1rem; font-weight: 700; }
.footer-tagline   { font-size: 16px; color: var(--text-muted); line-height: 1.65; }
.footer-col-title { font-size: 16px; font-weight: 700; color: var(--green-bright); letter-spacing: 0.02em; margin-bottom: 20px; }
.footer-links     { display: flex; flex-direction: column; gap: 12px; }
.footer-links li a{ font-size: 16px; color: var(--text-muted); transition: color var(--transition); }
.footer-links li a:hover { color: var(--white); }
.contact-list     { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-item     { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text-muted); line-height: 1.5; }
.contact-item a   { color: var(--text-muted); transition: color var(--transition); }
.contact-item a:hover { color: var(--white); }
.contact-icon { flex-shrink: 0; margin-top: 1px; color: #7EDB7F; opacity: 1; }
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon svg { width: 40px; height: 40px; }
.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #7EDB7F;
	transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-icon:hover { color: var(--green-bright); background: rgba(76,175,80,.08); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copyright     { font-size: 18px; color: var(--text-subtle); }
.footer-bottom-right  { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.footer-bottom-address{ font-size: 16px; color: var(--text-subtle); }
.footer-legal         { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; }
.footer-legal a       { color: rgba(255,255,255,.55); text-decoration: underline; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }
.legal-sep            { color: var(--text-subtle); }

/* ════════════════════════════════════════════════════════════════
   INNER PAGES
   ════════════════════════════════════════════════════════════════ */
.inner-page { padding-top: calc(var(--header-h) + 60px); padding-bottom: 80px; min-height: 100vh; background: var(--bg-dark); }
.inner-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.inner-page-title, .page-title { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 800; color: var(--white); margin-bottom: 40px; letter-spacing: -0.02em; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 28px; }
.post-card { background: var(--bg-card); border: 1px solid var(--border-green); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.post-thumbnail { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8125rem; color: var(--text-subtle); margin-bottom: 12px; }
.post-cat  { background: var(--green-border); color: var(--green-bright); padding: 2px 8px; border-radius: 100px; font-size: .75rem; font-weight: 600; }
.post-title{ font-size: 1.125rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.post-title a { color: var(--white); transition: color var(--transition); }
.post-title a:hover { color: var(--green-bright); }
.post-excerpt { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.no-posts { color: var(--text-muted); font-size: 1.125rem; grid-column: 1/-1; }
.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; color: var(--text-muted); transition: background var(--transition), color var(--transition), border-color var(--transition); }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--green-cta); border-color: var(--green-cta); color: var(--white); }
.page-header { margin-bottom: 32px; }
.page-content { color: var(--text-muted); line-height: 1.8; font-size: 1.0625rem; }
.page-content h2, .page-content h3 { color: var(--white); margin: 28px 0 12px; font-weight: 700; }
.page-content p  { margin-bottom: 16px; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content li { margin-bottom: 8px; }
.page-content a  { color: var(--green-bright); text-decoration: underline; }
.page-content-section { padding: 60px 0; }
.page-content-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
	.footer-main > .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
	.footer-brand { grid-column: 1/-1; }
	.testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 56px auto 0; }
	.scale-stats-row { gap: 48px; }
	.pinpoint-container { grid-template-columns: 1fr; gap: 48px; }
	.pinpoint-image-wrap { order: -1; }
	.pinpoint-image, .pinpoint-placeholder { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 1200px) {
	.nav-menu li a { padding: 8px 7px; font-size: 13px; }
	.header-right .btn-sm { padding: 8px 10px; font-size: 13px; }
	.header-container { gap: 4px; padding: 0 20px; }
}

@media (max-width: 900px) {
	.header-nav, .lang-selector, .header-right .btn-outline-white, .header-right .btn-primary { display: none; }
	.header-right { margin-left: auto; }
	.mobile-toggle { display: flex; }
	.mobile-nav    { display: block; }
	.feature-card  { grid-template-columns: 1fr; }
	.feature-card-content { padding: 40px 32px; }
	.sub-features-grid    { grid-template-columns: 1fr 1fr; }
	.step-card     { min-height: 360px !important; padding: 40px 24px !important; }
	.step-number   { font-size: 76px; }
	.stats-counter-bar { flex-wrap: wrap; }
	.stat-divider  { display: none; }
	.stat-item     { min-width: 45%; border-right: none; }
	.view-row, .view-row--alt { grid-template-columns: 1fr; gap: 40px; }
	.view-row--alt .view-image-col  { order: 0; }
	.view-row--alt .view-content-col{ order: 0; }
	.views-rows { gap: 60px; }
	.blog-grid--3  { grid-template-columns: repeat(2,1fr); }
	.explore-layout{ grid-template-columns: 1fr; }
	.explore-image-wrap { position: static; }
}

@media (max-width: 640px) {
	:root { --header-h: 72px; }
	.header-container { padding: 0 16px; gap: 8px; }
	.logo-text { font-size: 0.9375rem; }
	.header-right .btn-sm { font-size: 12px; padding: 7px 10px; max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.hero-container   { padding: 56px 16px 0; gap: 20px; }
	.hero-ctas        { flex-direction: column; align-items: center; }
	.hero-ctas .btn-lg{ width: 100%; justify-content: center; max-width: 320px; }
	.sub-features-grid  { grid-template-columns: 1fr; }
	.sub-feature-card   { padding: 32px 24px; }
	.sub-feature-title  { font-size: 26px; line-height: 38px; }
	.dash-stats       { grid-template-columns: repeat(3,1fr); }
	.footer-main      { padding: 48px 0 40px; }
	.footer-main > .footer-container { grid-template-columns: 1fr; gap: 32px; }
	.footer-brand     { grid-column: 1; }
	.footer-bottom-inner    { flex-direction: column; align-items: flex-start; }
	.footer-bottom-right    { align-items: flex-start; }
	.blog-grid--3, .blog-grid--2 { grid-template-columns: 1fr; }
	.scale-stats-row  { flex-direction: column; gap: 36px; }
	.steps-ctas       { flex-direction: column; align-items: center; }
	.steps-ctas .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
	.steps-headline   { font-size: clamp(32px, 8vw, 44px); }
	.step-desc        { font-size: 16px; }
	.cta-bottom-btns  { flex-direction: column; align-items: center; }
	.cta-bottom-btns .btn-lg { width: 100%; max-width: 320px; justify-content: center; }
	.views-section    { padding: 72px 0; }
	.views-rows       { gap: 48px; }
	.view-title       { font-size: 30px; }
	.view-desc        { font-size: 16px; margin-bottom: 24px; }
	.explore-section, .blog-section, .testimonials-section { padding: 72px 0; }
	.pinpoint-section { padding: 72px 0; }
	.pp-check-item    { grid-template-columns: 100px 1fr 36px; }
	.screenshot-row   { grid-template-columns: 72px 36px 1fr; }
	.screenshot-row span:last-child { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   CAP-CONTAINER (shared 1280px wrapper)
   ════════════════════════════════════════════════════════════════ */
.cap-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ════════════════════════════════════════════════════════════════
   SECTION 2 — CORE CAPABILITIES (section-wrap)
   ════════════════════════════════════════════════════════════════ */
.section-wrap {
	background-color: #ffffff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding-top: 180px;
	padding-bottom: 80px;
}

.floating-card-outer {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 10;
	margin-top: -260px;
}
.floating-card {
	box-shadow: 0 24px 80px rgba(0,0,0,0.28);
	width: 100%;
	max-width: 900px;
	overflow: hidden;
	border-radius: 24px;
	border: 1px solid rgba(98, 226, 100, 0.64);
	background: rgba(70, 161, 71, 0.08);
	padding: 37px 28px !important;
}

/* Intro copy block */
.intro-block {
	text-align: center;
	padding: 72px 24px 56px;
	max-width: 620px;
	margin: 0 auto;
}
.section-wrap .eyebrow {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #7EDB7F;
	margin-bottom: 18px;
	display: block;
}
.section-wrap .headline {
	font-family: 'Anton', sans-serif;
	font-size: clamp(32px, 5vw, 46px);
	font-weight: 400;
	line-height: 1.1;
	color: #111827;
	margin-bottom: 20px;
}
.section-wrap .accent { color: #46A147; }
.section-wrap .subtext {
	font-size: 20px;
	line-height: 1.7;
	color: #6b7280;
	max-width: 480px;
	margin: 0 auto;
}

/* Validation band */
.validation-band {
	background: #2d7a3a var(--validation-band-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 18px;
	margin: 60px 0 0;
	height: 530px;
	display: flex;
	align-items: stretch;
	overflow: visible;
	position: relative;
}
.validation-text {
	flex: 0 0 420px;
	padding: 0 50px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.validation-text h2 {
	font-family: 'Anton', sans-serif;
	font-size: 46px;
	font-weight: 400;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: 0.01em;
}
.validation-text p {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	line-height: 1.75;
	color: rgba(255,255,255,0.80);
	max-width: 380px;
}
.validation-img {
	flex: 1;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 14px;
}
.validation-img img {
	border-radius: 24px !important;
	border: 1px solid #8FE990;
	background: rgba(70, 161, 71, 0.14);
	padding: 16px 13px 20px 14px;
}

/* Features grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 60px 0 0;
}
.feature-col {
	background: #eef5ee;
	border-radius: 16px;
	padding: 36px 32px 40px;
}
.feature-col h3 {
	font-family: 'Anton', sans-serif;
	font-size: 32px;
	font-weight: 400;
	color: #46A147;
	line-height: 1.15;
	margin-bottom: 18px;
	letter-spacing: 0.01em;
}
.feature-col p {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	line-height: 1.75;
	color: #374151;
}

/* Steps section bottom spacing */
.steps-section { padding-bottom: 60px; }
.steps-note { margin-bottom: 0; padding-bottom: 0; }

/* ════════════════════════════════════════════════════════════════
   STATS BAND (standalone, full-width green)
   ════════════════════════════════════════════════════════════════ */
.stats-band-section {
	width: 100%;
	background: var(--stats-band-bg, none), linear-gradient(90deg, #0E6B21 -23.33%, #0E6B21 107.96%);
	background-size: cover, auto;
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
}
.stats-band-section .stats-counter-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 40px 0;
	background: none;
	border-radius: 0;
	margin: 0;
	width: 100%;
}
.stats-band-section .stat-item {
	flex: 1;
	text-align: center;
	padding: 0;
}
.stats-band-section .stat-value {
	font-family: 'Anton', sans-serif;
	font-size: 64px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 8px;
}
.stats-band-section .stat-label {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.75);
}
.stats-band-section .stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255,255,255,0.25);
	flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   STEP CARDS (Figma specs)
   ════════════════════════════════════════════════════════════════ */
.step-card {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	min-height: 496px !important;
	height: auto !important;
	padding: 56px 31px 56px 30px !important;
	justify-content: flex-start !important;
	align-items: flex-start !important;
	gap: 10px !important;
	border-radius: 24px !important;
	border: 1px solid #46A147 !important;
	background: rgba(70, 161, 71, 0.1) !important;
	backdrop-filter: blur(2px) !important;
	-webkit-backdrop-filter: blur(2px) !important;
	box-sizing: border-box !important;
}

/* ════════════════════════════════════════════════════════════════
   SECTION 5 — BUILT FOR SCALE + TESTIMONIALS
   ════════════════════════════════════════════════════════════════ */
.sv-scale-section {
	position: relative;
	background: #0a1a0f;
	overflow: hidden;
}
.sv-scale-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	z-index: 0;
}
.sv-scale-section .cap-container {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 0;
}

/* Header copy */
.sv-hero-content {
	padding: 48px 0 36px;
	max-width: 860px;
}
.sv-eyebrow {
	font-family: 'Manrope', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #7EDB7F;
	margin-bottom: 14px;
}
.sv-headline {
	font-family: 'Anton', sans-serif;
	font-size: clamp(42px, 7vw, 72px);
	font-weight: 400;
	line-height: 1.02;
	color: #fff;
	margin-bottom: 4px;
}
.sv-accent { color: #7EDB7F; }
.sv-hero-sub {
	font-family: 'Manrope', sans-serif;
	font-size: 13.5px;
	color: rgba(255,255,255,0.70);
	margin-top: 16px;
	max-width: 480px;
	line-height: 1.6;
}

/* Stat cards row */
.sv-scale-section .stats-row {
	display: grid;
	grid-template-columns: 585fr 314fr 314fr;
	gap: 16px;
	padding: 0 0 52px;
}
.sv-scale-section .stat-card {
	background: rgba(22, 101, 52, 0.55);
	border: 1px solid rgba(74, 222, 128, 0.25);
	border-radius: 6px;
	padding: 22px 24px 20px;
	backdrop-filter: blur(10px);
}
.sv-scale-section .stat-label {
	font-family: 'Manrope', sans-serif;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #7EDB7F;
	margin-bottom: 10px;
}
.sv-scale-section .stat-number {
	font-family: 'Anton', sans-serif;
	font-size: clamp(38px, 5vw, 56px);
	line-height: 1;
	color: #7EDB7F;
	margin-bottom: 10px;
}
.sv-scale-section .stat-desc {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.70);
	line-height: 1.55;
}
.sv-scale-section .mini-chart {
	margin-top: 16px;
	display: flex;
	align-items: flex-end;
	gap: 12px;
	height: 66px;
}
.sv-scale-section .bar {
	width: 23.789px;
	flex: none;
	background: rgba(70, 161, 71, 0.50);
	border-radius: 2px 2px 0 0;
}

/* Testimonials block */
.sv-scale-section .testimonials {
	position: relative;
	padding: 52px 40px 36px;
	background: rgba(10, 38, 16, 0.75);
	border: 1px solid rgba(70, 161, 71, 0.35);
	border-radius: 16px;
	backdrop-filter: blur(8px);
}
.sv-scale-section .quote-bubble {
	position: absolute;
	top: -28px;
	left: -28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #4ade80;
}
.sv-scale-section .section-heading {
	font-family: 'Anton', sans-serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 400;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 24px;
}
.sv-scale-section .section-heading .hl { color: #7EDB7F; }
.sv-scale-section .testi-slider {
	display: grid;
}
.sv-scale-section .testimonial-card {
	grid-area: 1 / 1;
	background: rgba(70, 161, 71, 0.2);
	border: 1px solid #46A147;
	border-radius: 24px;
	padding: 28px 32px;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}
.sv-scale-section .testimonial-card.active {
	opacity: 1;
	pointer-events: auto;
}
.sv-scale-section .t-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.sv-scale-section .t-card-title {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #7EDB7F;
}
.sv-scale-section .stars {
	display: flex;
	gap: 3px;
}
.sv-scale-section .star {
	width: 20px;
	height: 20px;
}
.sv-scale-section .t-quote {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	line-height: 1.75;
	margin-bottom: 24px;
}
.sv-scale-section .t-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.sv-scale-section .t-author {
	font-family: 'Orbitron', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}
.sv-scale-section .t-role {
	font-family: 'Orbitron', sans-serif;
	font-size: 12px;
	color: rgba(255,255,255,0.55);
	margin-top: 3px;
}
.sv-scale-section .t-actions { display: flex; gap: 12px; flex-shrink: 0; }
.sv-scale-section .btn-ghost {
	font-family: 'Orbitron', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	background: transparent;
	border: 1.5px solid rgba(255,255,255,0.4);
	border-radius: 6px;
	padding: 10px 24px;
	cursor: pointer;
	white-space: nowrap;
	text-decoration: none;
	display: inline-flex;
}
.sv-scale-section .pagination {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	margin-top: 14px;
}
.sv-scale-section .page-dot {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Orbitron', sans-serif;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.55);
	border: 1px solid rgba(255,255,255,0.18);
	padding: 0;
	line-height: 1;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sv-scale-section .page-dot.active {
	background: #7EDB7F;
	color: #0a2e10;
	border-color: #7EDB7F;
}
.sv-scale-section .cta-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 52px 0 60px;
}
.sv-scale-section .cta-buttons { display: flex; gap: 14px; }
.sv-scale-section .cta-note {
	font-family: 'Manrope', sans-serif;
	font-size: 12px;
	color: #7EDB7F;
	font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════
   SECTION 6 — PLATFORM UPDATES
   ════════════════════════════════════════════════════════════════ */
.platform-section {
	background: #ffffff;
	padding: 100px 0;
}
.platform-section .intro {
	text-align: center;
	margin-bottom: 56px;
}
.platform-eyebrow {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #46A147;
	display: block;
	margin-bottom: 16px;
}
.platform-headline {
	font-family: 'Anton', sans-serif;
	font-size: clamp(40px, 5.5vw, 64px);
	font-weight: 400;
	line-height: 1.08;
	color: #111827;
	margin-bottom: 20px;
}
.platform-headline .hl {
	color: #46A147;
}
.platform-subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.7;
	max-width: 680px;
	margin: 0 auto;
}
.platform-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.platform-card {
	background: #eef5ee;
	border-radius: 16px;
	padding: 36px 28px 40px;
}
.platform-card-title {
	font-family: 'Anton', sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: #46A147;
	margin-bottom: 14px;
	line-height: 1.3;
}
.platform-card-body {
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #374151;
	line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   SECTION 8 — VIDEO
   ════════════════════════════════════════════════════════════════ */
.video-section {
	background: #F2F8F2;
	padding: 80px 0;
}
.video-section-title {
	font-family: 'Anton', sans-serif;
	font-size: 40px;
	font-weight: 400;
	color: #111827;
	text-align: center;
	line-height: 1.3;
}
.video-section-title .hl { color: #46A147; }
.video-wrapper {
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(103, 189, 20, 0.15);
	background: #F2F8F2;
}
.video-embed--placeholder {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #c8d8ca;
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-placeholder-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: brightness(0.55) saturate(0.6);
}
.video-play-btn {
	position: relative;
	z-index: 2;
}
.video-play-btn circle { fill: rgba(255,255,255,0.30); }
.video-play-btn path  { fill: #ffffff; }

/* ════════════════════════════════════════════════════════════════
   SECTION 9 — PINPOINT (new 2-column layout)
   ════════════════════════════════════════════════════════════════ */
.pinpoint-section {
	background: #ffffff var(--pinpoint-bg, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0;
}
.pinpoint-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.pinpoint-img-placeholder {
	background: #1a5c2a;
	border-radius: 16px;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.3);
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
}
.pinpoint-img-col { display: flex; align-items: stretch; }
.pinpoint-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.pinpoint-eyebrow {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #46A147;
}
.pinpoint-title {
	font-family: 'Anton', sans-serif;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 400;
	color: #111827;
	line-height: 1.1;
	margin: 0;
}
.pinpoint-body {
	font-family: 'Manrope', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #374151;
	line-height: 1.75;
	margin: 0;
}
.pinpoint-ctas {
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 4px;
}
.pinpoint-ctas .btn-outline-dark {
	color: #121212;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	width: 230px;
	height: 64px;
	padding: 10px 14px;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	border: 1px solid #46A147;
	background: rgba(70, 161, 71, 0.16);
}
.pinpoint-ctas .btn-primary {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	width: 300px;
	height: 64px;
	padding: 10px 14px;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	background: #46A147;
}
.pinpoint-note {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #7EDB7F;
}

/* ════════════════════════════════════════════════════════════════
   SECTION 10 — BLOG / RESOURCES (new card design)
   ════════════════════════════════════════════════════════════════ */
.blog-section {
	background: #F2F8F2;
	padding: 64px 0;
}
.blog-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}
.blog-intro {
	text-align: center;
	margin-bottom: 56px;
}
.blog-section .section-headline--dark {
	font-family: 'Anton', sans-serif;
	font-size: clamp(40px, 5vw, 60px);
	font-weight: 400;
	color: #111827;
	line-height: 1.08;
	margin-bottom: 16px;
}
.blog-section .text-highlight {
	color: #46A147;
}
.blog-section .section-subtitle--dark {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	color: #6b7280;
	line-height: 1.7;
	max-width: 520px;
	margin: 0 auto;
}
.blog-grid--3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.blog-card {
	border-radius: 16px !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	background: #8a9e8a !important;
	height: 507px !important;
	position: relative !important;
	box-shadow: none !important;
	border: none !important;
	transform: none !important;
	padding: 24px !important;
	box-sizing: border-box !important;
}
.blog-card:hover {
	transform: none !important;
	box-shadow: none !important;
}
.blog-card-img-placeholder {
	position: absolute;
	inset: 0;
	background: #8a9e8a;
	filter: grayscale(1) brightness(0.75);
}
.blog-card-body {
	position: relative !important;
	z-index: 1 !important;
	background: linear-gradient(112deg, #0A4E0B -21.72%, #278C28 81.45%) !important;
	backdrop-filter: blur(2px) !important;
	-webkit-backdrop-filter: blur(2px) !important;
	border-radius: 14px !important;
	margin: auto 0 0 !important;
	height: 204px !important;
	padding: 24px 24px 28px !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	box-sizing: border-box !important;
	flex: none !important;
}
.blog-meta { display: none; }
.blog-card-title {
	font-family: 'Anton', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.35;
	margin: 0 0 8px;
	flex: none;
}
.blog-card-title a {
	color: inherit;
	text-decoration: none;
}
.blog-card-excerpt {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255,255,255,0.92);
	line-height: 1.6;
	margin: 0;
}
.blog-card-actions {
	display: flex;
	gap: 10px;
	margin-top: auto;
}
.btn-card {
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 4px;
	cursor: pointer;
	border: 1.5px solid #ffffff;
	background: #ffffff;
	color: #46A147;
	text-decoration: none;
	transition: background 0.2s;
	white-space: nowrap;
	display: inline-flex;
}
.btn-card:hover { background: rgba(255,255,255,0.85); }
.blog-card-actions a:last-child { background: transparent; color: #fff; }
.blog-read-more { display: none; }
.blog-view-all  { display: none; }

/* ════════════════════════════════════════════════════════════════
   CTA BOTTOM SECTION — left-aligned layout, Anton/Manrope fonts
   ════════════════════════════════════════════════════════════════ */
.cta-bottom-section {
	position: relative !important;
	background: #08140a !important;
	background-image: var(--cta-bg, none) !important;
	background-size: 100% 100% !important;
	background-position: center right !important;
	background-repeat: no-repeat !important;
	padding: 100px 0 !important;
	overflow: hidden !important;
	height: 706px;
}
.cta-bottom-container {
	position: relative !important;
	z-index: 2 !important;
	max-width: 1280px !important;
	margin: 0 auto !important;
	padding: 0 40px !important;
	text-align: left !important;
}
.cta-bottom-headline {
	font-family: 'Anton', sans-serif !important;
	font-size: clamp(2.8rem, 5.5vw, 4.5rem) !important;
	font-weight: 400 !important;
	line-height: 1.05 !important;
	letter-spacing: 0 !important;
	color: #ffffff !important;
	margin-bottom: 20px !important;
	max-width: 560px !important;
}
.cta-bottom-headline .text-highlight {
	color: #7EDB7F !important;
	font-style: normal !important;
}
.cta-bottom-subtitle {
	font-family: 'Manrope', sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1.7 !important;
	color: rgba(255,255,255,0.75) !important;
	margin-bottom: 14px !important;
	max-width: 480px !important;
}
.cta-bottom-supports {
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #7EDB7F;
	margin-bottom: 36px;
	max-width: 100%;
}
.cta-bottom-btns {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 14px !important;
	justify-content: flex-start !important;
	margin-bottom: 24px !important;
}
.cta-bottom-note {
	font-family: 'Manrope', sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: #7EDB7F;
	margin-top: 0;
}
@media (max-width: 640px) {
	.cta-bottom-btns {
		flex-direction: column !important;
		align-items: flex-start !important;
	}
	.cta-bottom-btns .btn-lg {
		width: 100% !important;
		justify-content: center !important;
	}
}

/* ════════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE — ALL NEW SECTIONS
   ════════════════════════════════════════════════════════════════ */

/* ── 1100px: tablet landscape ─────────────────────────────────── */
@media (max-width: 1100px) {
	/* Capabilities */
	.validation-text { flex: 0 0 340px; padding: 0 36px; }
	.validation-band { height: auto; min-height: 400px; }

	/* Steps: 3 → 2 columns */
	.steps-grid { grid-template-columns: repeat(2, 1fr); }
	.step-card { min-height: 420px !important; }

	/* Platform: 4 → 2 columns */
	.platform-cards { grid-template-columns: repeat(2, 1fr); }

	/* Scale stats: 3 → 2 columns */
	.sv-scale-section .stats-row { grid-template-columns: repeat(2, 1fr); }

	/* Pinpoint: reduce gap */
	.pinpoint-inner { gap: 48px; }
}

/* ── 900px: tablet portrait ───────────────────────────────────── */
@media (max-width: 900px) {
	/* Shared container padding */
	.cap-container { padding: 0 28px; }
	.blog-container { padding: 0 28px; }

	/* Capabilities section */
	.section-wrap { padding-top: 120px; padding-bottom: 60px; }
	.floating-card-outer { margin-top: -140px; }
	.floating-card { max-width: 680px; }
	.validation-band {
		flex-direction: column;
		height: auto;
		border-radius: 14px;
		overflow: hidden;
	}
	.validation-text {
		flex: none;
		padding: 40px 32px 28px;
	}
	.validation-text h2 { font-size: 36px; }
	.validation-img {
		justify-content: center;
		padding: 0 24px 28px;
	}
	.validation-img img { max-width: 100%; }
	.features-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 40px 0 0; }

	/* Stats band */
	.stats-band-section .stats-counter-bar { flex-wrap: wrap; padding: 32px 24px; gap: 0; }
	.stats-band-section .stat-item { flex: 0 0 50%; padding: 16px 0; }
	.stats-band-section .stat-divider { display: none; }

	/* Step cards: keep 2-col, reduce height */
	.step-card { min-height: 360px !important; }

	/* Scale section */
	.sv-scale-section .stats-row { grid-template-columns: 1fr; gap: 12px; }
	.sv-scale-section .testimonials { padding: 44px 24px 28px; }
	.sv-scale-section .t-card-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
	.sv-scale-section .t-actions { flex-wrap: wrap; }
	.sv-scale-section .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
	.sv-scale-section .cta-buttons .btn-lg { width: 100%; max-width: 360px; justify-content: center; }

	/* Platform: keep 2 columns at 900px */
	.platform-section { padding: 72px 0; }
	.platform-cards { grid-template-columns: repeat(2, 1fr); }

	/* Video */
	.video-section { padding: 60px 0; }
	.video-section-title { font-size: 32px; }

	/* Pinpoint */
	.pinpoint-section { padding: 72px 0; }
	.pinpoint-inner { grid-template-columns: 1fr; gap: 40px; }
	.pinpoint-img-col { order: -1; }
	.pinpoint-img-placeholder { min-height: 300px; }

	/* Blog */
	.blog-section { padding: 72px 0; }
	.blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.blog-card { height: 440px !important; }

	/* CTA Bottom */
	.cta-bottom-section { padding: 72px 0 !important; height: 400px !important; }
	.cta-bottom-headline { max-width: 100% !important; }
}

/* ── 640px: mobile ────────────────────────────────────────────── */
@media (max-width: 640px) {
	/* Shared container */
	.cap-container { padding: 0 20px; }
	.blog-container { padding: 0 20px; }

	/* Capabilities */
	.section-wrap { padding-top: 80px; padding-bottom: 40px; }
	.floating-card-outer { margin-top: -60px; }
	.floating-card { max-width: 100%; border-radius: 12px; }
	.intro-block { padding: 48px 16px 36px; }
	.validation-band { margin: 40px 0 0; border-radius: 12px; }
	.validation-text { padding: 32px 20px 20px; }
	.validation-text h2 { font-size: 28px; }
	.validation-text p { font-size: 13px; }
	.features-grid { grid-template-columns: 1fr; gap: 12px; padding: 32px 0 0; }
	.feature-col { padding: 28px 24px 32px; }

	/* Stats band */
	.stats-band-section .stat-value { font-size: 36px; }
	.stats-band-section .stat-item { flex: 0 0 100%; padding: 12px 0; }

	/* Step cards: 2 → 1 column */
	.steps-grid { grid-template-columns: 1fr !important; max-width: 480px; margin-inline: auto; }
	.step-card {
		min-height: 280px !important;
		padding: 36px 24px !important;
		border-radius: 16px !important;
	}
	.step-number { font-size: 60px !important; }

	/* Scale section */
	.sv-scale-section .cap-container { padding-top: 56px; }
	.sv-hero-content { padding: 32px 0 24px; }
	.sv-scale-section .testimonials { padding: 40px 16px 24px; border-radius: 12px; }
	.sv-scale-section .quote-bubble { top: -20px; left: -12px; width: 44px; height: 44px; }
	.sv-scale-section .testimonial-card { padding: 20px 16px; border-radius: 16px; }
	.sv-scale-section .t-card-header { flex-direction: column; align-items: flex-start; gap: 10px; }
	.sv-scale-section .btn-ghost { font-size: 11px; padding: 8px 16px; }
	.sv-scale-section .page-dot { width: 28px; height: 28px; font-size: 11px; }
	.sv-scale-section .cta-row { padding: 36px 0 48px; }

	/* Platform */
	.platform-section { padding: 56px 0; }
	.platform-cards { grid-template-columns: 1fr; gap: 14px; }
	.platform-card { padding: 28px 20px 32px; }

	/* Video */
	.video-section { padding: 48px 0; }
	.video-section-title { font-size: clamp(24px, 7vw, 36px); }

	/* Pinpoint */
	.pinpoint-section { padding: 56px 0; }
	.pinpoint-inner { gap: 32px; }
	.pinpoint-img-placeholder { min-height: 240px; }
	.pinpoint-ctas { flex-direction: column; align-items: flex-start; }
	.pinpoint-ctas .btn-lg { width: 100%; justify-content: center; }

	/* Blog */
	.blog-section { padding: 56px 0; }
	.blog-grid--3 { grid-template-columns: 1fr; }
	.blog-card { height: 400px !important; }
	.blog-card-body { height: 180px !important; }

	/* Views section */
	.views-container { padding: 0 20px; }
	.views-intro { margin-bottom: 48px; }

	/* CTA bottom */
	.cta-bottom-container { padding: 0 20px !important; }
	.cta-bottom-headline { font-size: clamp(2rem, 9vw, 3rem) !important; }
	.cta-bottom-subtitle { font-size: 14px !important; }
}

/* ── 480px: small phones ──────────────────────────────────────── */
@media (max-width: 480px) {
	/* Hero */
	.hero-ctas .btn-lg { max-width: 100%; }

	/* Steps */
	.steps-grid { padding: 0 16px; max-width: 100% !important; }
	.step-card { min-height: 260px !important; }

	/* Scale */
	.sv-scale-section .t-quote { font-size: 12px; }
	.sv-scale-section .t-actions { flex-direction: column; }
	.sv-scale-section .btn-ghost { width: 100%; justify-content: center; text-align: center; }

	/* Pinpoint */
	.pinpoint-title { font-size: clamp(28px, 8vw, 38px); }

	/* Blog */
	.blog-card-title { font-size: 14px; }

	/* Footer */
	.footer-legal { flex-direction: column; gap: 4px; }
}


/* ── Footer CTA Button (matches Figma: #46A147 bg, white text, 64px height) ── */
.footer-brand .btn.btn-primary {
	background: #46A147;
	color: #ffffff;
	border-color: transparent;
	height: 64px;
	width: 100%;
	font-size: 15px;
	font-weight: 700;
	border-radius: 10px;
	padding: 10px 14px;
	gap: 4px;
	justify-content: center;
}
.footer-brand .btn.btn-primary:hover {
	background: #3a8e3b;
	color: #ffffff;
}

/* ════════════════════════════════════════════════════════════════
   VIDEO LIGHTBOX
   ════════════════════════════════════════════════════════════════ */
.sv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv-lightbox[hidden] { display: none; }
.sv-lightbox-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	cursor: pointer;
}
.sv-lightbox-inner {
	position: relative;
	z-index: 1;
	width: 90vw;
	max-width: 960px;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.sv-lightbox-media {
	width: 100%;
	height: 100%;
}
.sv-lightbox-media iframe,
.sv-lightbox-media video {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}
.sv-lightbox-close {
	position: absolute;
	top: -48px;
	right: 0;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	line-height: 1;
	z-index: 2;
	opacity: 0.85;
	transition: opacity 0.2s;
}
.sv-lightbox-close:hover { opacity: 1; }

/* Play trigger shared style */
.sv-play-trigger {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 100%;
	height: 100%;
}

