/* =========================================================
   iAccess — home page styles
   Hero, stats, sections, problem, steps, pricing, testimonials,
   FAQ, CTA, modal (aanvraag + legal), sticky CTA, animaties.
   ========================================================= */

/* ==================== HERO ==================== */
.hero {
	min-height: 100vh;
	display: flex; align-items: center;
	padding: 120px 24px 100px;
	position: relative; overflow: hidden;
	text-align: center;
	background: var(--ink);
}
.hero::before {
	content: ''; position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,0.18) 0%, transparent 60%),
		radial-gradient(ellipse 40% 40% at 80% 80%, rgba(37,99,235,0.06) 0%, transparent 50%);
	pointer-events: none;
}
.hero::after {
	content: ''; position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 70%);
	pointer-events: none;
}
.hero-inner {
	max-width: var(--max-w); margin: 0 auto; width: 100%;
	display: flex; flex-direction: column; align-items: center;
	position: relative; z-index: 1;
}
.hero-content {
	max-width: 780px;
	display: flex; flex-direction: column; align-items: center;
}

.hero-badge {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(37,99,235,0.12);
	border: 1px solid rgba(37,99,235,0.25);
	border-radius: 980px;
	padding: 5px 14px; font-size: 12px;
	font-weight: 600; color: var(--blue-light);
	margin-bottom: 28px; letter-spacing: 0.2px;
}
.hero-title {
	font-family: var(--font-display);
	font-size: clamp(44px, 6.5vw, 80px);
	line-height: 1.06; letter-spacing: -2.5px;
	color: #fff; margin-bottom: 22px; font-weight: 400;
}
.hero-title em { font-style: italic; color: var(--blue-light); }
.hero-sub {
	font-size: 18px; color: rgba(255,255,255,0.48);
	line-height: 1.72; margin-bottom: 36px;
	max-width: 520px; font-weight: 350;
}
.hero-btns {
	display: flex; gap: 12px; flex-wrap: wrap;
	margin-bottom: 44px; justify-content: center;
}
.hero-pills {
	display: flex; gap: 10px; flex-wrap: wrap;
	justify-content: center; margin-bottom: 48px;
}
.hero-pill {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 980px; padding: 7px 16px;
	font-size: 12px; font-weight: 500;
	color: rgba(255,255,255,0.48);
}
.hero-pill svg { color: var(--green); flex-shrink: 0; }

.hero-social-proof {
	display: flex; align-items: center; gap: 14px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px; padding: 14px 20px;
}
.hsp-avatars { display: flex; }
.hsp-avatar {
	width: 32px; height: 32px; border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.1);
	background: rgba(37,99,235,0.2);
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 700; color: var(--blue-light);
	margin-left: -8px;
}
.hsp-avatar:first-child { margin-left: 0; }
.hsp-avatar:nth-child(2) { background: rgba(5,150,105,0.2); color: var(--green); }
.hsp-avatar:nth-child(3) { background: rgba(217,119,6,0.2); color: var(--amber); }
.hsp-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 13px; letter-spacing: 0.5px; }
.hsp-text { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.hsp-text strong { color: rgba(255,255,255,0.8); font-weight: 600; display: block; }

.icon-sm { width: 16px; height: 16px; flex-shrink: 0; }

/* Hero orbs */
.orb {
	position: absolute; border-radius: 50%;
	pointer-events: none; filter: blur(80px);
	opacity: 0.5; transition: transform 0.12s ease-out;
}
.hero .orb-1 {
	width: 700px; height: 700px;
	background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
	top: -200px; right: -200px;
}
.hero .orb-2 {
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(217,119,6,0.06) 0%, transparent 70%);
	bottom: -100px; left: -150px;
}

/* ==================== STATS ==================== */
.stats {
	background: var(--surface);
	border-top: 1px solid var(--edge);
	border-bottom: 1px solid var(--edge);
	padding: 40px 24px;
	opacity: 0; transform: translateY(16px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.stats.stats-visible { opacity: 1; transform: translateY(0); }
.stats-inner {
	max-width: var(--max-w); margin: 0 auto;
	display: grid; grid-template-columns: repeat(4, 1fr);
	gap: 0; text-align: center;
}
.stat {
	padding: 8px 24px;
	border-right: 1px solid var(--edge);
}
.stat:last-child { border-right: none; }
.stat h3 {
	font-family: var(--font-display);
	font-size: 36px; color: #fff;
	margin-bottom: 4px; letter-spacing: -1px; font-weight: 400;
	transition: color 0.4s;
}
.stat p {
	font-size: 13px; color: rgba(255,255,255,0.35);
	font-weight: 400; line-height: 1.4;
}

/* ==================== SECTIONS ==================== */
.section { padding: 96px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-white { background: var(--surface); }
.section-sky { background: var(--ink); }
.section-dark {
	background: var(--surface);
	color: #fff; text-align: center;
	position: relative; overflow: hidden;
	border-top: 1px solid var(--edge);
	border-bottom: 1px solid var(--edge);
}
.section-dark::before {
	content: ''; position: absolute;
	top: -50%; left: -50%; width: 200%; height: 200%;
	background: radial-gradient(circle at 30% 50%, rgba(37,99,235,0.08) 0%, transparent 50%);
	pointer-events: none;
}

.label {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 11px; font-weight: 700; letter-spacing: 2px;
	text-transform: uppercase; color: var(--blue-light);
	margin-bottom: 14px;
}
.label::before {
	content: ''; width: 20px; height: 1px;
	background: var(--blue-light); border-radius: 1px; opacity: 0.6;
}
.section-dark .label { color: rgba(255,255,255,0.4); }
.section-dark .label::before { background: rgba(255,255,255,0.3); }

.stitle {
	font-family: var(--font-display);
	font-size: clamp(28px, 4vw, 46px);
	line-height: 1.12; letter-spacing: -0.8px;
	color: #fff; margin-bottom: 14px; font-weight: 400;
}
.ssub {
	font-size: 16px; color: rgba(255,255,255,0.42);
	line-height: 1.7; max-width: 540px; font-weight: 350;
}
.section-dark .ssub { color: rgba(255,255,255,0.45); }
.centered { text-align: center; }
.centered .ssub { margin: 0 auto; }
.centered .label { justify-content: center; }

/* ==================== PROBLEM ==================== */
.problem-grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 64px; align-items: start; margin-top: 48px;
}
.callout-warmth {
	margin-top: 24px;
	background: rgba(217,119,6,0.07);
	border-left: 2px solid rgba(217,119,6,0.4);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	padding: 16px 20px;
	font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65;
}
.callout-warmth strong { color: rgba(255,255,255,0.72); }
.pcards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pcard {
	background: var(--surface-3);
	border: 1px solid var(--edge);
	border-radius: var(--radius); padding: 22px 18px;
	transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
		transform 0.6s cubic-bezier(0.22,1,0.36,1),
		border-color 0.25s;
	opacity: 0; transform: translateY(20px);
}
.pcard.pcard-visible { opacity: 1; transform: translateY(0); }
.pcard:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-2px); }
.pcards .pcard:nth-child(1) { transition-delay: 0.00s; }
.pcards .pcard:nth-child(2) { transition-delay: 0.10s; }
.pcards .pcard:nth-child(3) { transition-delay: 0.20s; }
.pcards .pcard:nth-child(4) { transition-delay: 0.30s; }
.pcard-icon {
	width: 38px; height: 38px; border-radius: 9px;
	background: rgba(255,255,255,0.05);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 12px; font-size: 18px;
}
.pcard h3 {
	font-size: 14px; font-weight: 600;
	margin-bottom: 5px; color: rgba(255,255,255,0.8); line-height: 1.3;
}
.pcard p {
	font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.55;
}

/* ==================== STEPS ==================== */
.steps-grid {
	margin-top: 48px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
	position: relative;
}
.scard {
	background: var(--surface-3);
	border: 1px solid var(--edge);
	border-radius: var(--radius);
	padding: 26px 20px; text-align: center;
	position: relative;
	opacity: 0; transform: translateY(24px) scale(0.97);
	transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
		transform 0.6s cubic-bezier(0.22,1,0.36,1),
		border-color 0.25s, box-shadow 0.2s;
}
.scard.step-visible { opacity: 1; transform: translateY(0) scale(1); }
.scard:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-3px); }
.steps-grid .scard:nth-child(1) { transition-delay: 0.00s; }
.steps-grid .scard:nth-child(2) { transition-delay: 0.13s; }
.steps-grid .scard:nth-child(3) { transition-delay: 0.26s; }
.steps-grid .scard:nth-child(4) { transition-delay: 0.39s; }
.scard-num {
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--blue); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 17px; font-weight: 700; margin: 0 auto 16px;
	font-family: var(--font-display);
	box-shadow: 0 0 0 6px rgba(37,99,235,0.12);
}
.scard:last-child .scard-num {
	background: var(--green);
	box-shadow: 0 0 0 6px rgba(5,150,105,0.12);
}
.scard h3 {
	font-size: 15px; font-weight: 600;
	margin-bottom: 7px; color: rgba(255,255,255,0.82);
}
.scard p {
	font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.55;
}
.scard .time {
	margin-top: 14px; font-size: 11px; font-weight: 700;
	color: var(--blue-light); letter-spacing: 1px;
	text-transform: uppercase;
}

/* ==================== PRICING ==================== */
.price-grid {
	margin-top: 48px;
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 40px; align-items: start;
}
.price-card {
	background: var(--surface-2);
	border: 1px solid rgba(37,99,235,0.25);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	position: relative; overflow: hidden;
	box-shadow: 0 0 60px rgba(37,99,235,0.06) inset;
	opacity: 0; transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
		transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.price-card.price-visible { opacity: 1; transform: translateY(0); }
.price-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(37,99,235,0.6), transparent);
}
.price-tag {
	display: inline-block;
	background: rgba(37,99,235,0.12);
	color: var(--blue-light);
	font-size: 11px; font-weight: 700;
	letter-spacing: 1.5px; text-transform: uppercase;
	padding: 4px 12px; border-radius: 980px; margin-bottom: 20px;
	border: 1px solid rgba(37,99,235,0.2);
}
.price-amount {
	font-family: var(--font-display);
	font-size: 64px; color: #fff;
	line-height: 1; margin-bottom: 6px;
	letter-spacing: -2px; font-weight: 400;
}
.price-amount sup {
	font-size: 28px; vertical-align: top;
	margin-top: 10px; display: inline-block;
}
.price-desc {
	font-size: 14px; color: rgba(255,255,255,0.35);
	margin-bottom: 28px;
}
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li {
	display: flex; align-items: flex-start; gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--edge);
	font-size: 14px; color: rgba(255,255,255,0.72);
	line-height: 1.5;
}
.price-list li:last-child { border-bottom: none; }
.check-icon {
	color: var(--green); flex-shrink: 0;
	width: 18px; height: 18px; margin-top: 2px;
}
.price-btn {
	display: block; width: 100%; text-align: center;
	background: var(--blue); color: #fff;
	padding: 15px; border-radius: 10px;
	font-size: 16px; font-weight: 600;
	text-decoration: none; transition: all 0.2s;
	border: none; cursor: pointer;
	box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}
.price-btn:hover {
	background: var(--blue-light);
	box-shadow: 0 12px 32px rgba(37,99,235,0.4);
	transform: translateY(-1px);
}

.compare-title {
	font-family: var(--font-display);
	font-size: 22px; margin-bottom: 8px;
	color: #fff; font-weight: 400;
}
.compare-sub {
	font-size: 14px; color: rgba(255,255,255,0.35);
	margin-bottom: 20px; line-height: 1.6;
}
.compare-item {
	background: var(--surface-3);
	border: 1px solid var(--edge);
	border-radius: var(--radius);
	padding: 16px 20px; margin-bottom: 8px;
	opacity: 0; transform: translateX(-16px);
	transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.2s;
}
.compare-item.cmp-visible { opacity: 1; transform: translateX(0); }
.compare-item.hl {
	border-color: rgba(37,99,235,0.35);
	background: rgba(37,99,235,0.07);
}
.compare-item:nth-child(1) { transition-delay: 0.05s; }
.compare-item:nth-child(2) { transition-delay: 0.15s; }
.compare-item:nth-child(3) { transition-delay: 0.25s; }
.compare-item:nth-child(4) { transition-delay: 0.35s; }
.ci-top {
	display: flex; justify-content: space-between;
	align-items: center; margin-bottom: 4px;
}
.ci-top h4 {
	font-size: 14px; font-weight: 600;
	color: rgba(255,255,255,0.8);
}
.ci-top .ci-price {
	font-size: 14px; font-weight: 700; color: #fff;
}
.compare-item p {
	font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.5;
}

/* ==================== TESTIMONIALS ==================== */
.test-grid {
	margin-top: 48px;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.tcard {
	background: var(--surface-3);
	border: 1px solid var(--edge);
	border-radius: var(--radius);
	padding: 24px 22px; position: relative;
	opacity: 0; transform: translateY(24px);
	transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
		transform 0.65s cubic-bezier(0.22,1,0.36,1),
		border-color 0.25s;
}
.tcard.tcard-visible { opacity: 1; transform: translateY(0); }
.tcard:hover { border-color: rgba(255,255,255,0.12); }
.test-grid .tcard:nth-child(1) { transition-delay: 0.00s; }
.test-grid .tcard:nth-child(2) { transition-delay: 0.14s; }
.test-grid .tcard:nth-child(3) { transition-delay: 0.28s; }
.tcard-stars {
	display: flex; gap: 2px; margin-bottom: 12px;
	color: #f59e0b; letter-spacing: 0.5px;
}
.tcard-text {
	font-size: 14px; color: rgba(255,255,255,0.5);
	line-height: 1.7; margin-bottom: 16px; font-style: italic;
}
.tcard-author {
	display: flex; align-items: center; gap: 10px;
}
.tcard-avatar {
	width: 34px; height: 34px; border-radius: 50%;
	background: rgba(37,99,235,0.15);
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 700; color: var(--blue-light);
}
.tcard-author strong {
	font-size: 13px; font-weight: 600;
	color: rgba(255,255,255,0.7); display: block;
}
.tcard-author span {
	font-size: 12px; color: rgba(255,255,255,0.3);
}

/* ==================== FAQ ==================== */
.faq-list {
	max-width: 680px; margin: 36px auto 0;
	text-align: left;
}
.faq-item {
	border-bottom: 1px solid var(--edge);
	opacity: 0; transform: translateY(12px);
	transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}
.faq-item.faq-visible { opacity: 1; transform: translateY(0); }
.faq-q {
	width: 100%; background: none; border: none;
	color: rgba(255,255,255,0.72);
	font-size: 15px; font-weight: 500; text-align: left;
	padding: 20px 0; cursor: pointer;
	display: flex; justify-content: space-between;
	align-items: center; gap: 16px;
	font-family: var(--font-body); transition: color 0.2s; line-height: 1.4;
}
.faq-q:hover { color: #fff; }
.faq-icon {
	flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
	background: var(--surface-3);
	border: 1px solid var(--edge);
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.3s, background 0.2s, border-color 0.2s;
	font-size: 16px; color: rgba(255,255,255,0.35);
	font-family: var(--font-body);
}
.faq-item.open .faq-icon {
	transform: rotate(45deg);
	background: rgba(37,99,235,0.15);
	border-color: rgba(37,99,235,0.3);
	color: var(--blue-light);
}
.faq-a {
	max-height: 0; overflow: hidden;
	transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
	font-size: 14px; color: rgba(255,255,255,0.38);
	line-height: 1.75; padding-bottom: 20px;
}

/* ==================== CTA (dark) ==================== */
.cta-btns {
	display: flex; gap: 12px; justify-content: center;
	flex-wrap: wrap; margin-bottom: 40px;
	position: relative; z-index: 1;
}
.cta-trust {
	display: flex; gap: 28px; justify-content: center;
	flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-trust-item {
	display: flex; align-items: center; gap: 6px;
	font-size: 13px; color: rgba(255,255,255,0.3);
}

/* CTA orbs */
.section-dark .cta-orb {
	position: absolute; border-radius: 50%;
	pointer-events: none; filter: blur(80px);
	opacity: 0.25; animation: iaccessCtaOrb 10s ease-in-out infinite;
}
.section-dark .cta-orb-1 {
	width: 500px; height: 500px;
	background: var(--blue);
	top: -200px; left: -100px;
}
.section-dark .cta-orb-2 {
	width: 400px; height: 400px;
	background: var(--amber);
	bottom: -150px; right: -50px;
	animation-delay: -5s;
}
@keyframes iaccessCtaOrb {
	0%, 100% { transform: scale(1) translate(0, 0); }
	33%      { transform: scale(1.1) translate(30px, -20px); }
	66%      { transform: scale(0.95) translate(-20px, 30px); }
}

/* ==================== MODAL (aanvraag + legal) ==================== */
.modal-overlay {
	position: fixed; inset: 0; z-index: 2000;
	background: rgba(0,0,0,0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
	opacity: 0; pointer-events: none;
	transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
	background: var(--surface-2);
	border-radius: 20px;
	width: 100%; max-width: 560px;
	max-height: 90vh; overflow-y: auto;
	box-shadow: 0 0 0 1px var(--edge), 0 32px 80px rgba(0,0,0,0.6);
	transform: translateY(24px) scale(0.97);
	transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
	-webkit-overflow-scrolling: touch;
}
.modal-overlay.open .modal-box {
	transform: translateY(0) scale(1);
}
.modal-top-bar {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(37,99,235,0.6), transparent);
	border-radius: 20px 20px 0 0;
}
.modal-header {
	padding: 26px 28px 0;
	display: flex; justify-content: space-between;
	align-items: flex-start;
}
.modal-label {
	font-size: 10px; font-weight: 700;
	letter-spacing: 2px; text-transform: uppercase;
	color: var(--blue-light); margin-bottom: 6px;
	display: flex; align-items: center; gap: 8px;
}
.modal-label::before {
	content: ''; width: 16px; height: 1px;
	background: var(--blue-light);
	border-radius: 1px; opacity: 0.6;
}
.modal-title {
	font-family: var(--font-display);
	font-size: 24px; color: #fff;
	line-height: 1.2; letter-spacing: -0.5px; font-weight: 400;
}
.modal-close {
	width: 32px; height: 32px; border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid var(--edge); cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,0.4); flex-shrink: 0; margin-top: 2px;
	transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
	background: rgba(255,255,255,0.1); color: #fff;
}
.modal-body { padding: 22px 28px 28px; }

.aanvraag-info {
	background: rgba(37,99,235,0.08);
	border: 1px solid rgba(37,99,235,0.18);
	border-radius: 10px; padding: 12px 14px;
	margin-bottom: 20px;
	display: flex; gap: 10px; align-items: flex-start;
}
.aanvraag-info svg { color: var(--blue-light); flex-shrink: 0; margin-top: 1px; }
.aanvraag-info p {
	font-size: 13px; color: rgba(255,255,255,0.45);
	line-height: 1.5;
}
.aanvraag-info strong { color: rgba(255,255,255,0.7); }

.form-section-title {
	font-size: 11px; font-weight: 700;
	color: rgba(255,255,255,0.25);
	text-transform: uppercase; letter-spacing: 1px;
	margin: 20px 0 12px; padding-bottom: 10px;
	border-bottom: 1px solid var(--edge);
}
.form-group { margin-bottom: 14px; }
.form-label {
	display: block; font-size: 13px;
	font-weight: 600; color: rgba(255,255,255,0.6);
	margin-bottom: 6px;
}
.form-label span { color: #f87171; margin-left: 2px; }
.form-hint {
	font-size: 12px; color: rgba(255,255,255,0.28);
	margin-top: 5px;
}
.form-input {
	width: 100%; padding: 12px 14px;
	border: 1px solid var(--edge); border-radius: 9px;
	font-size: 14px; font-family: var(--font-body);
	color: rgba(255,255,255,0.82); background: var(--surface-3);
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none; -webkit-appearance: none; appearance: none;
}
.form-input:focus {
	border-color: rgba(37,99,235,0.5);
	box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-input.error { border-color: rgba(248,113,113,0.5); }
.form-input::placeholder { color: rgba(255,255,255,0.2); opacity: 1; }
.form-error {
	font-size: 12px; color: #f87171;
	margin-top: 5px; display: none;
}
.form-error.show { display: block; }
.form-row {
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.modal-submit {
	width: 100%; padding: 14px;
	background: var(--blue); color: #fff;
	border: none; border-radius: 10px;
	font-size: 15px; font-weight: 600;
	font-family: var(--font-body); cursor: pointer;
	transition: all 0.2s;
	display: flex; align-items: center; justify-content: center; gap: 8px;
	margin-top: 8px;
	box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}
.modal-submit:hover {
	background: var(--blue-light);
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(37,99,235,0.4);
}
.modal-submit:disabled { opacity: 0.7; cursor: wait; }
.modal-footer-note {
	text-align: center; font-size: 12px;
	color: rgba(255,255,255,0.25);
	margin-top: 14px; line-height: 1.5;
}

.upload-zone {
	border: 1px dashed rgba(255,255,255,0.12);
	border-radius: 9px; padding: 16px 14px;
	cursor: pointer;
	display: flex; align-items: center; gap: 12px;
	background: var(--surface-3);
	transition: border-color 0.2s, background 0.2s;
	-webkit-user-select: none; user-select: none;
}
.upload-zone:hover {
	border-color: rgba(37,99,235,0.4);
	background: rgba(37,99,235,0.05);
}
.upload-zone.has-file {
	border-color: rgba(5,150,105,0.4);
	background: rgba(5,150,105,0.05);
	border-style: solid;
}
.upload-zone.error-zone { border-color: rgba(248,113,113,0.4); }
.upload-icon {
	color: rgba(255,255,255,0.25); flex-shrink: 0;
	transition: color 0.2s;
}
.upload-zone:hover .upload-icon { color: var(--blue-light); }
.upload-zone.has-file .upload-icon { color: var(--green); }
.upload-text { flex: 1; }
.upload-main {
	display: block; font-size: 14px;
	font-weight: 600; color: rgba(255,255,255,0.7);
}
.upload-sub {
	display: block; font-size: 12px;
	color: rgba(255,255,255,0.28); margin-top: 2px;
}
.upload-filename {
	font-size: 12px; color: var(--green);
	font-weight: 600; display: none;
}
.upload-zone.has-file .upload-filename { display: block; }
.upload-zone.has-file .upload-sub { display: none; }

.modal-success {
	padding: 44px 28px; text-align: center; display: none;
}
.modal-success.show { display: block; }
.modal-form-wrap.hide { display: none; }
.success-icon {
	width: 64px; height: 64px; border-radius: 50%;
	background: rgba(5,150,105,0.12);
	border: 1px solid rgba(5,150,105,0.25);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 18px; color: var(--green);
}
.modal-success h3 {
	font-family: var(--font-display);
	font-size: 24px; color: #fff;
	margin-bottom: 10px; font-weight: 400;
}
.modal-success p {
	font-size: 14px; color: rgba(255,255,255,0.42);
	line-height: 1.65; max-width: 360px;
	margin: 0 auto 22px;
}
.modal-success .success-detail {
	background: var(--surface-3);
	border: 1px solid var(--edge);
	border-radius: 10px; padding: 14px 18px;
	font-size: 13px; color: rgba(255,255,255,0.32);
	line-height: 1.6; margin-bottom: 18px; text-align: left;
}
.modal-success .success-detail strong {
	color: rgba(255,255,255,0.65);
	display: block; margin-bottom: 4px;
}

/* Legal modal variant */
.legal-body h3 {
	font-family: var(--font-display);
	font-size: 16px; color: #fff;
	margin: 22px 0 8px; font-weight: 400;
}
.legal-body h3:first-of-type { margin-top: 4px; }
.legal-body p {
	font-size: 14px; color: rgba(255,255,255,0.38);
	line-height: 1.75; margin-bottom: 10px;
}
.legal-body ul {
	margin: 0 0 12px 20px;
	font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.75;
}
.legal-body a {
	color: var(--blue-light); text-decoration: underline;
}
.legal-date {
	font-size: 12px; color: rgba(255,255,255,0.22);
	margin-bottom: 20px !important;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--edge);
}
.legal-note {
	display: flex; align-items: flex-start; gap: 10px;
	background: rgba(37,99,235,0.07);
	border: 1px solid rgba(37,99,235,0.18);
	border-radius: 10px; padding: 12px 14px; margin-top: 22px;
	font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.5;
}
.legal-note svg { color: var(--blue-light); flex-shrink: 0; margin-top: 1px; }

select.form-input {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px; cursor: pointer;
}

/* ==================== STICKY MOBILE CTA ==================== */
.sticky-mobile-cta {
	position: fixed; bottom: 16px; left: 16px; right: 16px;
	z-index: 900;
	background: rgba(13,15,20,0.95);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border: 1px solid var(--edge);
	border-radius: 14px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.5);
	display: none;
}
.sticky-inner {
	display: flex; align-items: center;
	gap: 12px; padding: 10px 14px;
}
.sticky-label { flex: 1; line-height: 1.3; }
.sticky-label strong {
	display: block; font-size: 13px;
	color: #fff; font-weight: 700;
}
.sticky-label span,
.sticky-label { font-size: 11px; color: rgba(255,255,255,0.5); }
.sticky-btn {
	background: var(--blue); color: #fff;
	padding: 10px 16px; border-radius: 8px;
	font-size: 13px; font-weight: 600;
	text-decoration: none; white-space: nowrap;
	transition: background 0.2s;
}
.sticky-btn:hover { background: var(--blue-light); }

@media (max-width: 768px) {
	.sticky-mobile-cta { display: block; }
}

/* ==================== Hero entrance animations ==================== */
@keyframes iaccessHeroFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}
.hero-badge        { opacity: 0; animation: iaccessHeroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.10s forwards; }
.hero-title        { opacity: 0; animation: iaccessHeroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s forwards; }
.hero-sub          { opacity: 0; animation: iaccessHeroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.42s forwards; }
.hero-btns         { opacity: 0; animation: iaccessHeroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.56s forwards; }
.hero-pills        { opacity: 0; animation: iaccessHeroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.70s forwards; }
.hero-social-proof { opacity: 0; animation: iaccessHeroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.84s forwards; }

/* Pulse (used by legacy badges) */
@keyframes iaccessPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: 0.4; transform: scale(0.85); }
}

/* ==================== Responsive (home) ==================== */
@media (max-width: 1024px) {
	.problem-grid { grid-template-columns: 1fr; gap: 36px; }
	.price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.hero { padding: 88px 20px 60px; min-height: auto; }
	.hero-title { font-size: clamp(34px, 8vw, 48px); letter-spacing: -1.5px; }
	.hero-sub { font-size: 16px; }
	.hero-pills { gap: 8px; }
	.hero-pill { font-size: 11px; padding: 6px 12px; }
	.hero-btns { gap: 10px; }
	.stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
	.stat { border-bottom: 1px solid var(--edge); }
	.stat:nth-child(2n) { border-right: none; }
	.steps-grid { grid-template-columns: 1fr 1fr; }
	.pcards { grid-template-columns: 1fr; }
	.test-grid { grid-template-columns: 1fr; }
	.section { padding: 64px 20px; }
	.stitle { font-size: clamp(24px, 5vw, 36px); }
}
@media (max-width: 480px) {
	.modal-header { padding: 20px 18px 0; }
	.modal-body { padding: 18px 18px 24px; }
	.form-row { grid-template-columns: 1fr; }
	.modal-success { padding: 32px 18px; }
}

@media (prefers-reduced-motion: reduce) {
	.scard, .tcard, .pcard, .compare-item, .price-card, .faq-item, .stats {
		opacity: 1 !important; transform: none !important;
	}
	.hero-badge, .hero-title, .hero-sub, .hero-btns, .hero-pills, .hero-social-proof {
		opacity: 1 !important; animation: none !important;
	}
	.section-dark .cta-orb { animation: none !important; }
}
