/* ==========================================================================
   Simple 1300 Numbers — bespoke design system ("clean.css")
   Identity: "The Signal"
   A refined, editorial telecom look. Deep Canadian-navy field with a layered
   signal-grid + radial pulse, a CSS-only waveform divider, an oversized
   dial-card (the brand's own number as the hero focal), and richer
   product / step / feature components.

   Brand constraints (owner-approved 2026-08-05):
     · single typeface = Open Sans (self-hosted variable woff2)
     · navy #023D5F anchors the brand; red #E10E0E used sparingly for action
   No inline <svg> anywhere in markup (QA cruft rule) — all motifs are CSS.
   ========================================================================== */

/* ─────────────────────────────── Fonts ─────────────────────────────── */
@font-face {
	font-family: 'Open Sans';
	src: url('/assets/fonts/open-sans-var.woff2') format('woff2');
	font-weight: 300 800;
	font-stretch: 75% 100%;
	font-style: normal;
	font-display: swap;
}

/* ─────────────────────────── Design tokens ─────────────────────────── */
:root {
	/* Colour */
	--ink:        #023D5F;   /* primary navy — fields, headings on dark */
	--ink-deep:   #012A44;   /* deeper navy for gradients / footer base */
	--ink-2:      #3B6983;   /* steel blue accents */
	--slate:      #3D4E53;   /* body text */
	--steel:      #809DAE;   /* muted steel */
	--grey:       #869094;   /* borders / muted */
	--bg:         #EFF3F5;   /* alt section background */
	--bg-2:       #E6ECF0;   /* card background / borders */
	--cta:        #E10E0E;   /* action red — buttons / highlights */
	--white:      #FFFFFF;
	--black:      #000000;

	/* Type scale */
	--font-body:  'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--fs-xs:  .8125rem;
	--fs-sm:  .9375rem;
	--fs-base: 1rem;
	--fs-md:  1.125rem;
	--fs-lg:  1.375rem;
	--fs-xl:  1.75rem;
	--fs-2xl: 2.25rem;
	--fs-3xl: clamp(2.1rem, 4.6vw, 3.4rem);
	--fs-dial: clamp(2.2rem, 5vw, 3.2rem);
	--fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;

	/* Spacing (4pt modal) */
	--sp-1: .25rem;
	--sp-2: .5rem;
	--sp-3: .75rem;
	--sp-4: 1rem;
	--sp-5: 1.5rem;
	--sp-6: 2rem;
	--sp-7: 3rem;
	--sp-8: 4rem;
	--sp-9: 6rem;

	/* Layout */
	--container: 1140px;
	--gutter: clamp(1.25rem, 4vw, 2rem);
	--radius: .75rem;
	--radius-sm: .5rem;
	--radius-pill: 999px;
	--shadow-card: 0 1px 2px rgba(2, 61, 95, .06), 0 10px 28px rgba(2, 61, 95, .10);
	--shadow-hero: 0 2px 10px rgba(1, 42, 68, .28);
	--header-h: 74px;
}

/* ─────────────────────────────── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
	font-family: var(--font-body);
	font-size: var(--fs-base);
	line-height: 1.6;
	font-weight: var(--fw-regular);
	color: var(--slate);
	background: var(--white);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--cta); }

h1, h2, h3, h4, h5, h6 {
	font-weight: var(--fw-semibold);
	color: var(--ink);
	line-height: 1.16;
	text-wrap: balance;
	letter-spacing: -0.01em;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; }
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.25em; margin: 0 0 1.1em; }
li { margin-bottom: .35em; }
hr { border: 0; border-top: 1px solid var(--bg-2); margin: var(--sp-7) 0; }

strong, b { font-weight: var(--fw-semibold); color: var(--ink); }

/* ─────────────────────────────── Layout ────────────────────────────── */
.main { flex: 1 0 auto; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: 760px; }
.container--wide { max-width: 1340px; }

.section { padding-block: var(--sp-9); }
.section--alt { background: var(--bg); }
.section--card { background: var(--bg-2); }
.section--ink { background: var(--ink); color: var(--white); }

.section__title { font-size: var(--fs-2xl); margin-bottom: var(--sp-3); }
.section__intro { max-width: 640px; color: var(--grey); margin-bottom: var(--sp-7); font-size: var(--fs-md); }
.section--ink .section__title, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink .section__intro { color: rgba(255,255,255,.82); }

/* Kicker — small red uppercase label above headings (editorial accent) */
.kicker {
	display: inline-flex; align-items: center; gap: .5rem;
	font-size: var(--fs-xs); font-weight: var(--fw-bold);
	letter-spacing: .14em; text-transform: uppercase; color: var(--cta);
	margin-bottom: var(--sp-3);
}
.kicker::before {
	content: ""; width: 1.6rem; height: 2px; background: var(--cta); border-radius: 2px;
}
.kicker--light { color: #ff6b6b; }
.kicker--light::before { background: #ff6b6b; }

/* Page header for default/legal/contact pages */
.page-header {
	position: relative; overflow: hidden;
	background:
		radial-gradient(1200px 520px at 82% -20%, rgba(255,255,255,.10), transparent 60%),
		var(--ink);
	color: var(--white);
	padding: var(--sp-8) 0 var(--sp-8);
	box-shadow: var(--shadow-hero);
}
.page-header::after {
	content: ""; position: absolute; inset: 0;
	background-image:
		radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: linear-gradient(180deg, transparent, #000 30%, #000 82%, transparent);
	pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: .3em; max-width: 20em; }
.page-header p { color: rgba(255,255,255,.85); max-width: 640px; font-size: var(--fs-md); }

/* ─────────────────────────────── Prose ─────────────────────────────── */
.prose { font-size: var(--fs-base); }
.prose h2 { margin-top: 2.5em; }
.prose h3 { margin-top: 1.75em; }
.prose a:not(.btn) { text-decoration: underline; text-underline-offset: 3px; }
.prose table { border-collapse: collapse; width: 100%; margin: 0 0 1.5em; }
.prose th, .prose td { border: 1px solid var(--bg-2); padding: .6em .8em; text-align: left; }
.prose th { background: var(--bg); color: var(--ink); font-weight: var(--fw-semibold); }
.prose img { border-radius: var(--radius); margin: 1.25em 0; }
.prose blockquote { border-left: 4px solid var(--cta); padding: .5em 1em; background: var(--bg); margin: 1.25em 0; }
.prose code { background: var(--bg); border: 1px solid var(--bg-2); border-radius: var(--radius-sm); padding: .1em .35em; font-size: .9em; }

/* Editorial split prose — full-width container, readable centred measure,
   with full-width inline images and a mid-page CTA banner breaking the text. */
.prose--split > *:not(.inline-media):not(.cta-inline),
.prose--split p, .prose--split li, .prose--split ul, .prose--split ol,
.prose--split h2, .prose--split h3, .prose--split blockquote, .prose--split table {
	max-width: 46rem;
	margin-left: auto;
	margin-right: auto;
}
.prose--split .inline-media {
	display: block;
	width: min(88%, 620px);
	max-width: 100%;
	height: auto;
	margin: 2.5rem auto;
	margin-left: auto;
	margin-right: auto;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}
.prose--split .cta-inline {
	max-width: none;
	margin-inline: 0;
	margin-block: 3.5rem;
	border-radius: var(--radius);
}
.faq details {
	max-width: 58rem;
	margin-inline: auto;
}


/* ─────────────────────────────── Buttons ───────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	padding: .8rem 1.7rem;
	border-radius: var(--radius-pill);
	font-weight: var(--fw-semibold);
	font-size: var(--fs-sm);
	line-height: 1.2;
	text-align: center;
	border: 1.5px solid transparent;
	transition: background-color .16s ease, transform .1s ease, box-shadow .16s ease, color .16s ease;
	text-decoration: none;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--cta); color: var(--white); }
.btn--primary:hover { background: #c40c0c; color: var(--white); box-shadow: 0 8px 20px rgba(225,14,14,.34); }

.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: #eef3f6; color: var(--ink); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.08); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--steel); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ─────────────────────────────── Header / Nav ─────────────────────────
   Light/white header: logo on white at left, Products dropdown + main links,
   then Login + Sign Up pinned to the far right. Inherited by every page.     */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--white);
	backdrop-filter: saturate(140%) blur(8px);
	-webkit-backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--bg-2);
	box-shadow: 0 1px 0 rgba(2,61,95,.04), 0 8px 24px rgba(2,61,95,.06);
}
.site-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	min-height: var(--header-h);
}
.site-brand {
	display: inline-flex; align-items: center; gap: .65rem;
	color: var(--ink); font-weight: var(--fw-semibold); font-size: var(--fs-lg);
	line-height: 1.1; position: relative;
}
.site-brand:hover { color: var(--cta); }
.site-brand__logo { height: 40px; width: auto; }

@keyframes signal-ping {
	0% { box-shadow: 0 0 0 0 rgba(225,14,14,.45); }
	70% { box-shadow: 0 0 0 7px rgba(225,14,14,0); }
	100% { box-shadow: 0 0 0 0 rgba(225,14,14,0); }
}

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: var(--sp-1); list-style: none; padding: 0; margin: 0; }
.nav__item { position: relative; }
.nav__link {
	display: inline-block; padding: .55rem .95rem;
	color: var(--ink); font-weight: var(--fw-medium); font-size: var(--fs-sm);
	border-radius: var(--radius-pill);
	position: relative; background: none; border: 0; cursor: pointer;
}
.nav__link:hover { color: var(--cta); background: var(--bg); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after {
	content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .28rem;
	height: 2px; border-radius: 2px; background: var(--cta);
}
.nav__caret {
	display: inline-block; width: 0; height: 0; margin-left: .4rem;
	border-left: 5px solid transparent; border-right: 5px solid transparent;
	border-top: 5px solid currentColor; vertical-align: 1px;
}

/* Products dropdown panel */
.nav__subnav {
	position: absolute; top: 100%; left: 0; z-index: 60;
	min-width: 230px; margin-top: .5rem; padding: .5rem;
	list-style: none; background: var(--white);
	border: 1px solid var(--bg-2); border-radius: var(--radius);
	box-shadow: 0 18px 40px rgba(2,61,95,.16);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item--products.is-open .nav__subnav,
.nav__item--products:hover .nav__subnav { opacity: 1; visibility: visible; transform: none; }
.nav__item--products.is-parent-active > .nav__link { color: var(--ink); }
.nav__item--products.is-parent-active > .nav__link::after {
	content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .28rem;
	height: 2px; border-radius: 2px; background: var(--cta);
}
.nav__sub {
	display: block; padding: .55rem .8rem; border-radius: var(--radius-sm);
	color: var(--ink); font-weight: var(--fw-medium); font-size: var(--fs-sm);
}
.nav__sub:hover { background: var(--bg); color: var(--cta); }
.nav__sub.is-active { color: var(--cta); font-weight: var(--fw-semibold); }

/* Far-right actions: Login + Sign Up */
.nav__actions { display: inline-flex; align-items: center; gap: var(--sp-2); margin-left: var(--sp-2); }
.nav__login { padding: .5rem .75rem; font-weight: var(--fw-medium); font-size: var(--fs-sm); color: var(--ink); }
.nav__login:hover { color: var(--cta); }
.nav__btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: .6rem 1.3rem; border-radius: var(--radius-pill);
	font-weight: var(--fw-semibold); font-size: var(--fs-sm); line-height: 1.2;
	transition: background-color .16s ease, transform .1s ease, box-shadow .16s ease;
}
.nav__btn--signup { background: var(--cta); color: var(--white); }
.nav__btn--signup:hover { background: #c40c0c; color: var(--white); box-shadow: 0 8px 20px rgba(225,14,14,.3); }

/* Mobile nav toggle + drawer */
.nav__toggle {
	display: none;
	background: none; border: 0; color: var(--ink);
	width: 44px; height: 44px; font-size: 1.4rem; line-height: 1;
}
@media (max-width: 900px) {
	.nav { margin-left: 0; }
	.nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
	.nav {
		position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
		background: var(--white); padding: var(--sp-4) var(--gutter) var(--sp-6);
		box-shadow: var(--shadow-hero);
		transform: translateY(-8px); opacity: 0; visibility: hidden;
		transition: opacity .18s ease, transform .18s ease, visibility .18s;
	}
	.nav.is-open { transform: none; opacity: 1; visibility: visible; }
	.nav__list { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
	.nav__link { padding: .8rem .75rem; font-size: var(--fs-base); }
	.nav__link.is-active::after { display: none; }
	.nav__item--products.is-parent-active > .nav__link::after { display: none; }
	.nav__subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 .25rem 1rem; margin: 0; }
	.nav__actions { margin: var(--sp-2) 0 0; gap: var(--sp-3); }
}

/* ─────────────────────────────── Hero ──────────────────────────────── */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(1100px 600px at 78% -10%, rgba(59,105,131,.45), transparent 62%),
		radial-gradient(900px 500px at 8% 120%, rgba(225,14,14,.14), transparent 55%),
		var(--ink);
	color: var(--white);
	padding: clamp(3.5rem, 8vw, 6rem) 0;
	box-shadow: var(--shadow-hero);
}
/* layered signal grid */
.hero::before {
	content: ""; position: absolute; inset: 0;
	background-image:
		radial-gradient(rgba(255,255,255,.14) 1.2px, transparent 1.4px);
	background-size: 26px 26px;
	mask-image: radial-gradient(800px 500px at 78% 20%, #000 20%, transparent 72%);
	-webkit-mask-image: radial-gradient(800px 500px at 78% 20%, #000 20%, transparent 72%);
	pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid {
	display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}
.hero__grid--solo { grid-template-columns: 1fr; }
.hero__grid--solo .hero__content { max-width: 800px; }
.hero h1 { color: var(--white); font-size: var(--fs-3xl); margin-bottom: .35em; max-width: 17em; }
.hero-subtitle {
	color: rgba(255,255,255,.86); font-size: var(--fs-lg); font-weight: var(--fw-light);
	max-width: 34em; margin-bottom: var(--sp-6); line-height: 1.5;
}
.hero__actions { margin-top: var(--sp-4); display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* imagery panel + call chip */
.hero__visual { display: flex; justify-content: flex-end; }
.hero-visual {
	position: relative; width: 100%; max-width: 440px;
	background: linear-gradient(165deg, #ffffff, #eef3f6);
	border-radius: 26px;
	padding: clamp(1rem, 2.5vw, 1.6rem);
	box-shadow: 0 32px 64px rgba(1, 30, 48, .34), inset 0 0 0 1px rgba(255,255,255,.25);
	overflow: hidden;
}
.hero-visual::before {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(2,61,95,.08) 1px, transparent 1px);
	background-size: 18px 18px;
	mask-image: linear-gradient(200deg, #000, transparent 75%);
	pointer-events: none;
}
.hero-visual img { position: relative; width: 100%; height: auto; border-radius: 16px; }
.hero-visual--tag {
	display: inline-flex; align-items: center; gap: .5rem;
	position: absolute; z-index: 2; left: clamp(1rem, 2.5vw, 1.7rem); bottom: clamp(1rem, 2.5vw, 1.7rem);
	background: var(--ink); color: var(--white);
	font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: .02em;
	padding: .5rem 1rem; border-radius: var(--radius-pill);
	box-shadow: var(--shadow-card);
}
.hero-visual--tag::before {
	content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cta);
	box-shadow: 0 0 0 0 rgba(225,14,14,.5); animation: signal-ping 2.4s ease-out infinite;
}

.hero__call {
	display: flex; align-items: center; flex-wrap: wrap; gap: .35rem;
	margin-top: var(--sp-5); color: rgba(255,255,255,.78); font-size: var(--fs-sm);
}
.hero__call a { color: var(--white); font-weight: var(--fw-semibold); text-decoration: underline; text-underline-offset: 3px; }
.hero__call a:hover { color: #ff7d7d; }

.hero__proof {
	list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-6);
	padding: 0; margin: var(--sp-7) 0 0; color: rgba(255,255,255,.82); font-size: var(--fs-sm);
}
.hero__proof li { position: relative; margin: 0; padding-left: 1.4em; }
.hero__proof li::before {
	content: "✓"; position: absolute; left: 0; color: #ff7d7d; font-weight: var(--fw-bold);
}

/* Dial card — the hero focal: the brand's own number as a display */
.hero__dial { display: flex; justify-content: flex-end; }
.dial-card {
	position: relative; width: 100%; max-width: 360px;
	background: linear-gradient(160deg, #063a5b, #023048);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 22px;
	padding: clamp(1.4rem, 3vw, 2rem);
	box-shadow: 0 30px 60px rgba(1,30,48,.5), inset 0 1px 0 rgba(255,255,255,.12);
	overflow: hidden;
}
.dial-card::before {
	content: ""; position: absolute; inset: 0;
	background-image:
		radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
	background-size: 18px 18px;
	mask-image: linear-gradient(200deg, #000, transparent 70%);
	pointer-events: none;
}
.dial-card__label {
	display: block; font-size: var(--fs-xs); font-weight: var(--fw-bold);
	letter-spacing: .16em; text-transform: uppercase; color: #ff7d7d; margin-bottom: .7rem;
}
.dial-card__num {
	display: block; font-size: var(--fs-dial); font-weight: var(--fw-bold);
	color: var(--white); letter-spacing: .02em; line-height: 1.02; margin-bottom: .7rem;
	font-variant-numeric: tabular-nums;
}
.dial-card__num:hover { color: var(--white); }
.dial-card__sub { display: block; color: rgba(255,255,255,.72); font-size: var(--fs-sm); margin-bottom: 1.2rem; }
.dial-card__keys {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem;
	font-size: var(--fs-sm); color: rgba(255,255,255,.86); text-align: center;
}
.dial-card__keys span {
	border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: .55rem 0;
	font-variant-numeric: tabular-nums; background: rgba(255,255,255,.04);
}

/* ─────────────────────────────── Signal divider ─────────────────────── */
.signal-divider {
	height: 2px; width: 100%;
	background: repeating-linear-gradient(90deg,
		#d9e2e8 0 8px, transparent 8px 20px,
		#e10e0e 20px 22px, transparent 22px 34px);
	opacity: .6;
}
.signal-divider--light { filter: invert(1) brightness(1.25); }

/* ─────────────────────────────── Product / pillar cards ─────────────── */
.product-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--sp-5); align-items: stretch;
}
.product-card {
	position: relative; overflow: hidden;
	background: var(--white); border: 1px solid var(--bg-2); border-radius: var(--radius);
	padding: var(--sp-6);
	box-shadow: var(--shadow-card);
	display: flex; flex-direction: column; gap: .6rem;
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.product-card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--ink), var(--ink-2));
	transition: background .16s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(2,61,95,.16); border-color: var(--ink-2); }
.product-card:hover::before { background: linear-gradient(90deg, var(--cta), var(--ink)); }
.product-card__num {
	font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: var(--fw-bold); color: var(--ink);
	line-height: 1; letter-spacing: -.015em; font-variant-numeric: tabular-nums;
	white-space: nowrap; max-width: 100%;
}
/* Phoneword-style lockups (e.g. 1300PHONEWORD) are long — shrink to fit one line. */
.product-card__num--wide { font-size: clamp(1.05rem, 1.9vw, 1.3rem); letter-spacing: -.01em; }
.product-card__num span { color: var(--cta); }
.product-card h3 { font-size: var(--fs-lg); margin: 0; }
.product-card p { color: var(--slate); margin: 0; flex: 1; font-size: var(--fs-sm); }
.product-card__link {
	margin-top: var(--sp-2); font-weight: var(--fw-semibold); font-size: var(--fs-sm);
	color: var(--ink); display: inline-flex; align-items: center; gap: .4rem;
}
.product-card__link::after { content: "→"; transition: transform .15s ease; }
.product-card__link:hover { color: var(--cta); }
.product-card__link:hover::after { transform: translateX(3px); }

/* ─────────────────────────────── Steps ─────────────────────────────── */
.steps { counter-reset: step; }
.steps-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: var(--sp-5);
}
.step {
	position: relative; background: var(--bg); border: 1px solid var(--bg-2);
	border-radius: var(--radius); padding: var(--sp-6) var(--sp-6) var(--sp-6) 4.6rem;
}
.step::before {
	counter-increment: step; content: "0" counter(step);
	position: absolute; left: 1.4rem; top: 1.5rem;
	font-size: 2rem; font-weight: var(--fw-bold); color: var(--cta);
	font-variant-numeric: tabular-nums;
}
.step h3 { color: var(--ink); margin-bottom: .4em; font-size: var(--fs-md); }
.step p { color: var(--slate); margin: 0; font-size: var(--fs-sm); }

/* ─────────────────────────────── Features ───────────────────────────── */
.features-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--sp-5);
}
.feature-card {
	background: var(--bg); border: 1px solid var(--bg-2);
	border-radius: var(--radius); padding: var(--sp-6);
	transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.feature-card__icon {
	width: 46px; height: 46px; border-radius: 14px; margin-bottom: var(--sp-4);
	background: linear-gradient(160deg, var(--ink), var(--ink-2));
	color: var(--white); display: inline-flex; align-items: center; justify-content: center;
	font-weight: var(--fw-bold); font-size: 1.3rem;
}
.feature-card h3 { color: var(--ink-2); margin-bottom: .5em; font-size: var(--fs-md); }
.feature-card p { color: var(--slate); margin: 0; font-size: var(--fs-sm); }

/* ─────────────────────────────── Stats band ─────────────────────────── */
.stats {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--sp-5); text-align: center;
}
.stat__num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: var(--fw-bold); color: var(--white); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { color: rgba(255,255,255,.74); font-size: var(--fs-sm); margin-top: .5rem; }

/* ─────────────────────────────── Pricing ────────────────────────────── */
.pricing-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--sp-5); align-items: stretch;
}
.pricing-card {
	background: var(--white); border: 1px solid var(--bg-2);
	border-radius: var(--radius); padding: var(--sp-6);
	box-shadow: var(--shadow-card);
	display: flex; flex-direction: column; position: relative;
	transition: transform .16s ease, box-shadow .16s ease;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(2,61,95,.14); }
.pricing-card--featured { border: 2px solid var(--cta); }
.pricing-card--featured .pricing-card__flag {
	position: absolute; top: -1px; left: 1.4rem; transform: translateY(-50%);
	background: var(--cta); color: var(--white); font-size: var(--fs-xs);
	font-weight: var(--fw-bold); letter-spacing: .1em; text-transform: uppercase;
	padding: .3rem .8rem; border-radius: var(--radius-pill);
}
.pricing-card h3 { color: var(--ink); font-size: var(--fs-lg); }
.price { font-size: var(--fs-2xl); font-weight: var(--fw-bold); color: var(--ink); margin: .2em 0; font-variant-numeric: tabular-nums; }
.price small { font-size: var(--fs-sm); font-weight: var(--fw-regular); color: var(--grey); }
.pricing-card ul { list-style: none; padding: 0; margin: var(--sp-3) 0 var(--sp-5); flex: 1; }
.pricing-card li { padding: .42em 0 .42em 1.5em; position: relative; color: var(--slate); font-size: var(--fs-sm); }
.pricing-card li::before {
	content: "✓"; position: absolute; left: 0; color: var(--cta); font-weight: var(--fw-bold);
}
.pricing-card__foot { margin-top: var(--sp-2); }

/* ─────────────────────────────── Testimonials ───────────────────────── */
.testimonials-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-5);
}
.testimonial {
	background: var(--white); border: 1px solid var(--bg-2); border-radius: var(--radius);
	padding: var(--sp-6); box-shadow: var(--shadow-card); position: relative;
}
.testimonial::before {
	content: "“"; position: absolute; top: .6rem; left: 1.2rem;
	font-size: 3.4rem; line-height: 1; color: var(--steel); font-weight: var(--fw-bold); opacity: .4;
}
.testimonial blockquote { margin: var(--sp-2) 0 0; padding: 0; font-size: var(--fs-md); font-weight: var(--fw-light); color: var(--slate); }
.testimonial cite { display: block; margin-top: var(--sp-4); font-style: normal; font-weight: var(--fw-semibold); color: var(--ink); font-size: var(--fs-sm); }

/* ─────────────────────────────── FAQ ───────────────────────────────── */
.faq details {
	background: var(--white); border: 1px solid var(--bg-2);
	border-radius: var(--radius); margin-bottom: var(--sp-3);
	overflow: hidden; box-shadow: var(--shadow-card);
}
.faq summary {
	cursor: pointer; padding: 1.1rem 3rem 1.1rem 1.35rem; font-weight: var(--fw-semibold);
	color: var(--ink); list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
	font-size: 1.5rem; color: var(--cta); transition: transform .18s ease;
}
.faq details[open] summary { border-bottom: 1px solid var(--bg-2); }
.faq details[open] summary::after { content: "–"; }
.faq details > p { padding: 1.05rem 1.35rem 1.25rem; color: var(--slate); }

/* ─────────────────────────────── CTA band ───────────────────────────── */
.cta {
	position: relative; overflow: hidden;
	background:
		radial-gradient(700px 420px at 50% -40%, rgba(255,255,255,.14), transparent 60%),
		var(--cta);
	color: var(--white); text-align: center;
	padding: var(--sp-9) var(--gutter);
	border-radius: var(--radius);
}
.cta::before {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: linear-gradient(180deg, transparent, #000 52%, transparent);
	pointer-events: none;
}
.cta .kicker { justify-content: center; color: rgba(255,255,255,.9); }
.cta .kicker::before { background: rgba(255,255,255,.9); }
.cta h2 { color: var(--white); margin-bottom: .35em; }
.cta p { color: rgba(255,255,255,.92); max-width: 34em; margin: 0 auto var(--sp-6); font-size: var(--fs-md); }
.cta__actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────── Contact ────────────────────────────── */
.contact-layout {
	display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.contact-layout__info h2 { color: var(--ink); }
.contact-layout__info ul { list-style: none; padding: 0; margin: var(--sp-5) 0 0; }
.contact-layout__info li { padding: .6rem 0; border-bottom: 1px solid var(--bg-2); font-size: var(--fs-md); }
.contact-layout__info li strong { color: var(--ink-2); }
.contact-layout__info a { font-weight: var(--fw-semibold); }

.contact-form {
	background: var(--white); border: 1px solid var(--bg-2);
	border-radius: var(--radius); padding: var(--sp-7);
	box-shadow: var(--shadow-card);
}
.contact-form h2 { color: var(--ink); }
.form-group { margin-bottom: var(--sp-4); }
.form-group label { display: block; font-weight: var(--fw-semibold); color: var(--ink); margin-bottom: .35em; font-size: var(--fs-sm); }
.form-group input, .form-group textarea, .form-group select {
	width: 100%; padding: .75em .95em; border: 1px solid var(--bg-2);
	border-radius: var(--radius-sm); background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
	outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(2,61,95,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-form .success { color: #1a7f37; background: #e7f6ec; border-radius: var(--radius-sm); padding: .75em 1em; margin-bottom: var(--sp-4); }
.contact-form .errors { list-style: none; padding: 0; color: #b3261e; background: #fdecea; border-radius: var(--radius-sm); padding: .75em 1em; margin-bottom: var(--sp-4); }
.form-note { font-size: var(--fs-xs); color: var(--grey); margin-top: var(--sp-3); }

/* ─────────────────────────────── Footer ─────────────────────────────── */
.site-footer {
	position: relative;
	background: linear-gradient(180deg, var(--ink), var(--ink-deep));
	color: rgba(255,255,255,.8); padding: var(--sp-9) 0 var(--sp-6); margin-top: var(--sp-8);
}
.site-footer::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
	background: repeating-linear-gradient(90deg,
		rgba(255,255,255,.4) 0 3px, transparent 3px 16px);
	opacity: .5;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--white); }
.footer__grid {
	display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--sp-6);
	margin-bottom: var(--sp-7);
}
.footer__brand { font-size: var(--fs-lg); font-weight: var(--fw-semibold); color: var(--white); margin-bottom: .5em; display: inline-block; }
.footer__about { font-size: var(--fs-sm); max-width: 30em; }
.footer__col h4 {
	color: var(--white); font-size: var(--fs-xs); margin-bottom: var(--sp-4);
	text-transform: uppercase; letter-spacing: .12em;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: .6em; font-size: var(--fs-sm); }
.footer__bottom {
	border-top: 1px solid rgba(255,255,255,.14); padding-top: var(--sp-5);
	display: flex; flex-wrap: wrap; gap: var(--sp-3);
	justify-content: space-between; font-size: var(--fs-xs); color: rgba(255,255,255,.6);
}
.footer__contact { margin-top: var(--sp-4); font-size: var(--fs-sm); display: grid; gap: .3rem; }
.footer__contact a { color: rgba(255,255,255,.85); }

/* ───────────────────────────── Breadcrumbs ─────────────────────────── */
.breadcrumbs__wrap {
	background: var(--bg);
	border-bottom: 1px solid var(--bg-2);
	padding: var(--sp-3) 0;
}
.breadcrumbs { font-size: var(--fs-sm); color: var(--grey); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35em; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "›"; margin-inline: .4em; color: var(--steel); }
.breadcrumbs a { color: var(--steel); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs [aria-current="page"] { color: var(--grey); }

/* ───────────────────────────── Utilities ─────────────────────────── */
.visually-hidden {
	position: absolute !important; width: 1px; height: 1px;
	margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ───────────────────────── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
	.hero__dial { justify-content: center; }
	.dial-card { max-width: 100%; }
	.contact-layout { grid-template-columns: 1fr; }
	.footer__grid { grid-template-columns: 1fr 1fr; }
	.section { padding-block: var(--sp-8); }
}
@media (max-width: 560px) {
	.footer__grid { grid-template-columns: 1fr; }
	.hero__proof { flex-direction: column; gap: var(--sp-2); }
}

/* ─────────────────────────── Reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ───────────────────── Testimonials meta (logos / links) ─────────────── */
.testimonial__meta { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-top: var(--sp-4); }
.testimonial__logo { max-height: 44px; width: auto; height: auto; border-radius: 6px; }
.testimonial__meta cite { margin: 0; }
.testimonial__link { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--cta); margin-left: auto; }
.testimonial__link:hover { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }
.testimonial figure { margin: 0; display: flex; flex-direction: column; }

/* ────────────────────────── Available numbers ───────────────────────── */
.section--card.available-numbers { background: var(--bg); }
.available-grid {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
	margin-top: var(--sp-5);
}
.available-cats { list-style: none; padding: 0; margin: var(--sp-3) 0 var(--sp-5); }
.available-cats li { position: relative; padding: .45em 0 .45em 1.5em; color: var(--slate); font-size: var(--fs-sm); }
.available-cats li::before { content: "→"; position: absolute; left: 0; color: var(--cta); font-weight: var(--fw-bold); }
.available-cats strong { color: var(--ink); }
.available-note { margin-top: var(--sp-3); color: var(--grey); font-size: var(--fs-xs); }
.available-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--bg-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.available-table th, .available-table td { text-align: left; padding: .7em .9em; border-bottom: 1px solid var(--bg-2); font-size: var(--fs-sm); }
.available-table th { background: var(--ink); color: var(--white); font-weight: var(--fw-semibold); letter-spacing: .04em; }
.available-table td a { font-weight: var(--fw-semibold); color: var(--ink); }
.available-table td a:hover { color: var(--cta); }
.available-table td:last-child { text-align: right; color: var(--slate); font-variant-numeric: tabular-nums; }
.available-more { margin-top: var(--sp-5); font-weight: var(--fw-semibold); }
.available-more a { color: var(--ink); }
.available-more a:hover { color: var(--cta); }

/* ─────────────────────────── CTA with imagery ───────────────────────── */
.cta--with-img {
	display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr);
	gap: clamp(1.5rem, 4vw, 3rem); align-items: center; text-align: left;
}
.cta--with-img .kicker { justify-content: flex-start; }
.cta--with-img .cta p { margin-inline: 0; }
.cta--with-img .cta__actions { justify-content: flex-start; }
.cta__media img { width: 100%; max-width: 320px; margin-inline: auto; border-radius: var(--radius); }

@media (max-width: 860px) {
	.available-grid { grid-template-columns: 1fr; }
	.cta--with-img { grid-template-columns: 1fr; text-align: center; }
	.cta--with-img .kicker, .cta--with-img .cta__actions { justify-content: center; }
	.cta--with-img .cta p { margin-inline: auto; }
}
