/* =========================================================
   Tally ERP product page
   ---------------------------------------------------------
   Design language ported from the Skyrazone reference page
   (skyrazone.com/web-development-company-in-calicut/):
   navy #080A3C on white with a teal accent, Poppins headings,
   a 100px section rhythm, alternating media blocks, a live
   particle-network backdrop behind the whole page, and the
   scroll-scrub that widens each band 80% -> 100%.

   Everything here is scoped under .tally-page so the rest of
   the site keeps the teal design system untouched.
   ========================================================= */

.tally-page {
	--tally-navy: #080A3C;
	/* The reference page reads as navy on white. Its stylesheet defines an
	   orange, but only on selectors this layout never uses (banner/section
	   title <span>s), so no orange is actually visible there. The one live
	   accent is the teal on its scroll arcs — used the same way here. */
	--tally-accent: #5DD2BD;
	--tally-accent-deep: #2FA894;
	--tally-blue: #2C6BD4;
	/* Same accent as channels, expressed as bare rgb so translucent washes and
	   shadows can be built from it — and so a page-scoped override reaches
	   those too, not just the flat colours. */
	--tally-accent-rgb: 93, 210, 189;
	--tally-ink: #4A6F8A;
	--tally-body: #677294;
	--tally-tint: #F4F6FC;
	--tally-tint-soft: #F8FBFA;
	--tally-line: #E7EBF3;

	/* The reference runs a flat 100px top/bottom on every band and collapses
	   it to 60px under 768px, so express that once as a clamp. */
	--tally-band: clamp(60px, 8vw, 100px);
	--tally-radius: 20px;

	background: var(--color-white);
	overflow-x: clip;           /* decorative shapes must never widen the page */
}

/* ---------------------------------------------------------
   AMBER PRODUCTS: blue accent
   The Amber page runs on this stylesheet but its own product
   cards are already built on #0056FF, so the inherited teal
   read as a second, competing accent. Remapping the tokens
   here puts the whole page on one blue — eyebrows, button
   hovers, card icons, FAQ accents, scroll arcs and the washes
   derived from them — without touching the Tally page.
   Both classes sit on the same element, so this is qualified
   with .tally-page to outrank the block above regardless of
   source order.
   --------------------------------------------------------- */
.tally-page.amber-products-page {
	--tally-accent: #0056FF;
	--tally-accent-deep: #0056FF;
	--tally-blue: #0056FF;
	--tally-accent-rgb: 0, 86, 255;
}

/* =========================================================
   PAGE-WIDE PARTICLE NETWORK
   The reference carries its constellation mesh behind every
   section, not just one. Same approach the About template
   already uses: one fixed canvas driven by the theme's
   particle engine, with every band above it made translucent
   so the mesh reads through the whole scroll.
   ========================================================= */
/* Sections are stacked in normal flow above the page ground. */
.tally-page > * {
	position: relative;
	z-index: 1;
}

/* Solid section grounds. These were translucent while a page-wide particle
   canvas sat behind them; with that layer gone there is nothing to show
   through, so the tints are carried as opaque fills again. */
.tally-page .tally-secs,
.tally-page .tally-modules { background: var(--color-white); }
.tally-page .tally-cards { background: var(--tally-tint-soft); }
.tally-page .tally-sectors { background: var(--tally-tint); }
.tally-page .faq { background: var(--tally-tint-soft); }
/* Hero wash — back to full strength now that nothing needs to read through it. */
.tally-page .tally-hero {
	background:
		radial-gradient(ellipse 55% 60% at 12% 20%, rgba(var(--tally-accent-rgb), 0.06), transparent 62%),
		linear-gradient(168deg, #FFFFFF 0%, var(--tally-tint) 58%, #EEF2FA 100%);
}
/* The FAQ's own particle canvas is not rendered on these pages at all — see the
   templates. Nothing to hide here any more. */

/* --wide is usable on its own, so it carries its own centring rather than
   relying on .tally-shell also being present. */
.tally-page .tally-shell,
.tally-page .tally-shell--wide {
	width: min(1290px, 100% - 48px);
	margin-inline: auto;
}
.tally-page .tally-shell--wide { width: min(1520px, 100% - 48px); }

/* ---------- Typography scale ---------- */
.tally-page h1,
.tally-page h2,
.tally-page h3,
.tally-page h4 {
	font-family: var(--font-heading);
	color: #000000;
	letter-spacing: -0.01em;
}
.tally-page h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.18; }
.tally-page h2 {
	font-size: clamp(1.85rem, 3.2vw, 2.5rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #000000;
}
.tally-page h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.3; font-weight: 600; color: #000000; }
.tally-page p {
	color: #000000;
	font-size: 1rem;
	line-height: 1.85;
	margin: 0 0 1.1em;
}
.tally-page .tally-accent { color: var(--tally-accent-deep); }

/* Section eyebrow — the reference's .sub-title. Carries the teal accent: it is
   the one place a tint reads as deliberate rather than as a second brand. */
.tally-page .tally-eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tally-accent-deep);
	margin-bottom: 14px;
}

.tally-section-title {
	max-width: 700px;
	margin: 0 auto 55px;
	text-align: center;
}
.tally-section-title h2 { margin: 0 0 14px; }
.tally-section-title p { margin: 0; }

/* ---------- Buttons ---------- */
.tally-page .tally-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 32px;
	border-radius: 5px;
	border: 1px solid transparent;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.tally-page .tally-btn--primary {
	background: var(--tally-navy);
	color: #fff;
	box-shadow: 0 10px 24px rgba(8, 10, 60, 0.18);
}
.tally-page .tally-btn--primary:hover {
	background: var(--tally-accent-deep);
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(var(--tally-accent-rgb), 0.28);
}
.tally-page .tally-btn--ghost {
	background: transparent;
	border-color: rgba(8, 10, 60, 0.18);
	color: var(--tally-navy);
}
.tally-page .tally-btn--ghost:hover {
	background: var(--tally-navy);
	border-color: var(--tally-navy);
	color: #fff;
	transform: translateY(-2px);
}
.tally-page .tally-btn--light { background: #fff; color: var(--tally-navy); }
.tally-page .tally-btn--light:hover { background: var(--tally-accent-deep); color: #fff; transform: translateY(-2px); }
/* Secondary action on a navy ground — a navy button would disappear there. */
.tally-page .tally-btn--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.tally-page .tally-btn--outline-light:hover {
	background: var(--tally-accent-deep);
	border-color: var(--tally-accent-deep);
	color: #fff;
	transform: translateY(-2px);
}
.tally-page .tally-btn svg { flex: none; transition: transform 0.3s ease; }
.tally-page .tally-btn:hover svg { transform: translateX(4px); }

/* =========================================================
   HERO / MAIN BANNER (Skyrazone Reference Design)
   ========================================================= */
.main-banner {
	position: relative;
	overflow: hidden;
	background-color: #ffffff;
	z-index: 1;
	isolation: isolate;
}

.main-banner-one {
	padding: 0;
	min-height: clamp(540px, 68vh, 740px);
}

.tally-hero__container {
	width: 100%;
	padding: 0;
	margin: 0;
}

.tally-hero__row {
	display: grid;
	grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
	align-items: stretch;
	min-height: clamp(540px, 68vh, 740px);
}

.tally-hero__col-content {
	display: flex;
	align-items: center;
	padding-left: clamp(24px, calc((100vw - 1380px) / 2 + 24px), 140px);
	padding-right: clamp(20px, 3.5vw, 60px);
	padding-top: clamp(60px, 7vw, 100px);
	padding-bottom: clamp(60px, 7vw, 100px);
	position: relative;
	z-index: 3;
}

.banner-content .content {
	max-width: 780px;
	width: 100%;
}

.banner-content h1,
.tally-hero__heading {
	font-family: "Poppins", sans-serif;
	font-size: clamp(32px, 3.8vw, 52px);
	font-weight: 700;
	line-height: 1.22;
	color: #080a3c;
	margin: 0 0 26px;
	letter-spacing: -0.015em;
	max-width: 780px;
}

/* Premium list with circular checkmark bullets matching Skyrazone */
.premium-list {
	list-style: none;
	padding: 0;
	margin: 0 0 34px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.premium-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: "Poppins", sans-serif;
	font-size: clamp(15px, 1.1vw, 16.5px);
	font-weight: 500;
	color: #080a3c;
	line-height: 1.5;
}

.premium-list .premium-list__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #0056FF;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 86, 255, 0.32);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-list li:hover .premium-list__icon {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 86, 255, 0.45);
}

.premium-list .premium-list__icon svg {
	width: 13px;
	height: 13px;
}

.tally-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

/* Right Banner Image Column */
.tally-hero__col-image {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	height: 100%;
}

.banner-image.mbanner-bg-one {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 540px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-bottom-left-radius: clamp(100px, 14vw, 160px);
	overflow: hidden;
	box-shadow: -15px 20px 50px rgba(8, 10, 60, 0.10);
}

.banner-image.mbanner-bg-one .animate-banner-image {
	width: 100%;
	height: 100%;
	display: flex;
}

.banner-image.mbanner-bg-one img.mbanner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s ease;
}

.banner-image.mbanner-bg-one:hover img.mbanner-img {
	transform: scale(1.03);
}

/* Floating Shapes Matching Skyrazone Reference */
.shape20, .shape21, .shape19, .shape22, .shape23, .shape24, .shape26 {
	position: absolute;
	pointer-events: none;
	z-index: 2;
}

/* Shape 20: Purple ring outline */
.shape20 {
	top: 14%;
	left: 18%;
	animation: tally-float 6s ease-in-out infinite;
}
.shape20 img { width: 22px; height: auto; }

/* Shape 21: Coral ring outline */
.shape21 {
	top: 48%;
	left: 36%;
	animation: tally-float 8s ease-in-out infinite 1s;
}
.shape21 img { width: 18px; height: auto; }

/* Shape 19: 3D torus ring with floating spheres */
.shape19 {
	bottom: 6%;
	left: 32%;
	animation: tally-float 7s ease-in-out infinite 0.5s;
}
.shape19 img { width: clamp(100px, 11vw, 145px); height: auto; }

/* Shape 22: Green triangle */
.shape22 {
	bottom: 18%;
	left: 10%;
	animation: tally-spin 22s linear infinite;
}
.shape22 img { width: 18px; height: auto; }

/* Shape 23: Accent curve */
.shape23 {
	top: 20%;
	left: 54%;
	animation: tally-float 9s ease-in-out infinite 1.5s;
}
.shape23 img { width: 24px; height: auto; }

/* Shape 24: Dot grid matrix at bottom */
.shape24 {
	bottom: 4%;
	left: 54%;
	opacity: 0.75;
}
.shape24 img { width: clamp(55px, 6vw, 75px); height: auto; }

/* Shape 26: Large 3D Torus on left edge */
.shape26 {
	top: 40%;
	left: -35px;
	animation: tally-float 8.5s ease-in-out infinite 0.8s;
}
.shape26 img { width: clamp(70px, 8vw, 105px); height: auto; }

/* Keyframe animations */
@keyframes tally-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-16px); }
}

@keyframes tally-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* =========================================================
   FEATURE CARD ROW  (reference: .single-features-card, 4-up)
   ========================================================= */
.tally-cards {
	padding: var(--tally-band) 0;
	background: var(--tally-tint-soft);
}
.tally-cards__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}
.tally-card {
	background: #fff;
	border: 1px solid var(--tally-line);
	border-radius: 5px;
	padding: 35px 25px;
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tally-card:hover {
	transform: translateY(-8px);
	border-color: transparent;
	box-shadow: 0 20px 40px rgba(8, 10, 60, 0.10);
}
.tally-card__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: rgba(var(--tally-accent-rgb), 0.10);
	color: var(--tally-navy);
	transition: background-color 0.35s ease, color 0.35s ease;
}
.tally-card__icon svg { width: 28px; height: 28px; }
.tally-card:hover .tally-card__icon { background: var(--tally-accent-deep); color: #fff; }
.tally-card h3 { margin: 0 0 12px; font-size: 1.22rem; }
.tally-card p { margin: 0; font-size: 0.95rem; line-height: 1.75; }

/* The profile lists six areas of expertise, so a 3-up grid fills two clean
   rows where the reference's 4-up would leave a ragged one. */
.tally-cards__grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* =========================================================
   MOSAIC COMPANY SERVICES / MODULES SECTION
   Alexi-inspired 2-column asymmetric interlocked layout:
   Left: [Card 1] -> [Card 2] -> [Photo 1 + Dots]
   Right: [Photo 2 + Play Button + Dot Grid] -> [Card 3] -> [Card 4]
   Bottom: [Centered Lime Pill Button]
   ========================================================= */
.tally-mosaic-section {
	padding: clamp(60px, 7vw, 100px) 0;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}

.tally-mosaic-head {
	max-width: 800px;
	margin: 0 auto clamp(40px, 5vw, 60px);
	text-align: center;
}

.tally-mosaic-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-heading);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #0f172a;
	margin-bottom: 12px;
}

.tally-mosaic-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #0056ff;
	display: inline-block;
}

.tally-mosaic-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: #0f172a;
	text-transform: uppercase;
	margin: 0;
}

.tally-mosaic-highlight {
	position: relative;
	display: inline-block;
	color: #0f172a;
	z-index: 1;
}

.tally-mosaic-highlight::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 100%;
	height: 8px;
	background: rgba(0, 86, 255, 0.25);
	z-index: -1;
	border-radius: 3px;
}

.tally-mosaic-subtitle {
	font-family: var(--font-body);
	font-size: 1.05rem;
	color: #64748b;
	margin: 14px auto 0;
	max-width: 620px;
	line-height: 1.6;
}

/* 2-Column Mosaic Grid */
.tally-mosaic-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 3.5vw, 36px);
	max-width: 1140px;
	margin: 0 auto;
	align-items: start;
}

.tally-mosaic-col {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 2.5vw, 28px);
}

/* Mosaic Feature Card */
.tally-mosaic-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: #ffffff;
	border: 1px solid #eef2f6;
	border-radius: 20px;
	padding: 24px 28px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	position: relative;
	z-index: 2;
}

.tally-mosaic-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 86, 255, 0.35);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.tally-mosaic-card__icon {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	display: grid;
	place-items: center;
	color: #0f172a;
	transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.tally-mosaic-card__icon svg {
	width: 26px;
	height: 26px;
}

.tally-mosaic-card:hover .tally-mosaic-card__icon {
	background: #0056ff;
	color: #ffffff;
	border-color: #0056ff;
	transform: scale(1.05);
}

.tally-mosaic-card__content {
	flex: 1;
	min-width: 0;
}

.tally-mosaic-card__content h3 {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 6px;
	line-height: 1.3;
}

.tally-mosaic-card__content p {
	font-family: var(--font-body);
	font-size: 0.88rem;
	line-height: 1.55;
	color: #64748b;
	margin: 0;
}

/* Mosaic Media Blocks */
.tally-mosaic-media {
	position: relative;
	z-index: 1;
}

.tally-mosaic-media__img-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
	height: 240px;
	background: #e2e8f0;
}

.tally-mosaic-media__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.tally-mosaic-media:hover .tally-mosaic-media__img-wrap img {
	transform: scale(1.04);
}

/* Play Button on Meeting Image */
.tally-mosaic-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #0f172a;
	display: grid;
	place-items: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, color 0.3s ease;
	z-index: 3;
}

.tally-mosaic-play-btn svg {
	width: 22px;
	height: 22px;
	margin-left: 3px;
}

.tally-mosaic-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.14);
	background: #0056ff;
	color: #ffffff;
}

/* Decorative dot patterns matching reference */
.tally-mosaic-deco-dots--bottom-left {
	position: absolute;
	bottom: -22px;
	left: -22px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-image: radial-gradient(rgba(0, 86, 255, 0.28) 2.5px, transparent 3px);
	background-size: 11px 11px;
	opacity: 0.85;
	z-index: -1;
	pointer-events: none;
}

.tally-mosaic-deco-grid--top-right {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 80px;
	height: 80px;
	background-image: radial-gradient(rgba(0, 86, 255, 0.32) 2.5px, transparent 3px);
	background-size: 12px 12px;
	opacity: 0.85;
	z-index: -1;
	pointer-events: none;
}

/* Centered CTA Pill Button */
.tally-mosaic-footer {
	margin-top: clamp(40px, 5vw, 55px);
	text-align: center;
}

.tally-mosaic-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 38px;
	background: #0056ff;
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(0, 86, 255, 0.30);
	transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.tally-mosaic-btn:hover {
	background: #0045cc;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 86, 255, 0.45);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
	.tally-mosaic-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.tally-mosaic-media__img-wrap {
		height: 220px;
	}
	.tally-mosaic-col:last-child {
		margin-top: 12px;
	}
}

@media (max-width: 640px) {
	.tally-mosaic-card {
		padding: 20px;
		gap: 16px;
	}
	.tally-mosaic-card__icon {
		flex: 0 0 46px;
		width: 46px;
		height: 46px;
	}
	.tally-mosaic-card__icon svg {
		width: 22px;
		height: 22px;
	}
	.tally-mosaic-card__content h3 {
		font-size: 1.05rem;
	}
	.tally-mosaic-card__content p {
		font-size: 0.84rem;
	}
	.tally-mosaic-media__img-wrap {
		height: 190px;
	}
	.tally-mosaic-btn {
		width: 100%;
		max-width: 320px;
	}
}

/* =========================================================
   SECTOR CHIPS
   The profile lists the sectors served, again as names only.
   ========================================================= */
.tally-sectors { padding: var(--tally-band) 0; background: var(--tally-tint); }
.tally-sectors__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.tally-sectors__grid li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--tally-line);
	font-family: var(--font-heading);
	font-size: 0.94rem;
	font-weight: 500;
	color: var(--tally-navy);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.tally-sectors__grid li:hover {
	border-color: var(--tally-accent-deep);
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(8, 10, 60, 0.08);
}
.tally-sectors__grid svg {
	flex: none;
	width: 17px;
	height: 17px;
	color: var(--tally-navy);
}

/* =========================================================
   CONTACT STRIP  (inside the CTA band)
   ========================================================= */
.tally-contact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 44px;
	padding-top: 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	text-align: left;
}
.tally-contact__item { display: flex; align-items: flex-start; gap: 14px; }
.tally-contact__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.10);
	color: var(--tally-navy);
}
.tally-contact__icon svg { width: 20px; height: 20px; }
.tally-contact__label {
	display: block;
	font-family: var(--font-heading);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 5px;
}
.tally-contact__value {
	display: block;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #fff;
	overflow-wrap: anywhere;   /* long emails must not push the grid wider */
}
.tally-contact a.tally-contact__value:hover { color: var(--tally-accent-deep); }

/* =========================================================
   SCROLL ZOOM
   The reference widens a band from 80% to 100% as it travels
   up the viewport, and narrows it again on the way back —
   tally-erp.js writes --tally-progress on every scrubbed
   element, so the effect is symmetric in both directions.
   Applied to each content band, not just the numbered ones.
   ========================================================= */
.tally-page [data-zoom] {
	--tally-progress: 0;
	/* 80% of the element's normal width at rest, its full width once the band
	   has travelled through. The base is per-element so each band keeps its
	   own measure. */
	width: calc(var(--tally-zoom-base, 100%) * (0.8 + 0.2 * var(--tally-progress)));
	margin-inline: auto;
	will-change: width;
}
.tally-page .tally-shell[data-zoom]        { --tally-zoom-base: min(1290px, 100% - 48px); }
.tally-page .tally-shell--wide[data-zoom]  { --tally-zoom-base: min(1520px, 100% - 48px); }

/* =========================================================
   NUMBERED SECTION  —  .tally-sec
   ---------------------------------------------------------
   The single layout component behind every major section on
   the page, replacing the two systems that were here before
   (a "media band" and a separate "numbered deep-dive"). One
   component means the composition, spacing, alternation,
   reveal timing and scroll-zoom are defined once and every
   section inherits them.

   Structure, matching the reference's .overview-item:

     .tally-sec            the band — rounded, scroll-zoomed
       .tally-sec__row     two columns, vertically centred
         .tally-sec__media the illustration, bare on the page
         .tally-sec__body  number badge, heading, copy, list

   The visual column carries NO card, frame, plate or border:
   the illustration sits directly on the section, as it does
   on the reference. Alternation is driven by :nth-of-type so
   the markup never has to say which side it is on.
   ========================================================= */
.tally-secs { padding: var(--tally-band) 0; }
.tally-secs__head { margin-bottom: 55px; }

.tally-sec {
	--tally-progress: 0;
	position: relative;
	overflow: hidden;
	border-radius: var(--tally-radius);
	margin: 0 auto;
	padding: clamp(32px, 3.6vw, 52px) clamp(24px, 3.2vw, 48px);
	/* Scroll zoom: 80% at rest, expands to leave 30px from the viewport
	   on each side when active (calc(100% - 60px) centered with margin 0 auto).
	   tally-erp.js writes --tally-progress on every scroll frame,
	   so scrolling back up plays the narrowing in reverse. */
	width: calc(80% + 20% * var(--tally-progress) - 60px * var(--tally-progress));
	max-width: calc(100% - 60px);
	will-change: width;
	transition: border-radius 0.3s ease;
}

/* Alternating tint down the page, as the reference alternates bg-f4f6fc with
   white. Kept translucent so the page network reads through. */
.tally-sec:nth-of-type(odd)  { background: rgba(244, 246, 252, 0.72); }
.tally-sec:nth-of-type(even) { background: rgba(255, 255, 255, 0.62); }

.tally-sec__row {
	display: grid;
	/* Equal 50/50 split matching the Skyrazone reference's col-lg-6 columns.
	   No max-width here — the parent .tally-sec (80% → 100% on scroll) and
	   its own padding already control the width, exactly as the reference's
	   container fills its overview-item at width:100%. */
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(28px, 4vw, 64px);
}

/* Zigzag alternation: odd sections = content LEFT, image RIGHT;
   even sections = image LEFT, content RIGHT.
   The DOM always has media first, so CSS order drives the swap. */

/* DEFAULT (odd): body on the left, media on the right */
.tally-sec__body  { order: -1; }
.tally-sec__media { order: 1; }

/* EVEN: flip — media on the left, body on the right */
.tally-sec:nth-of-type(even) .tally-sec__body  { order: 1; }
.tally-sec:nth-of-type(even) .tally-sec__media { order: -1; }

/* ---------- Visual column ----------
   No container. The illustration is the element. */
.tally-sec__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}
.tally-sec__media > img,
.tally-sec__media > svg {
	display: block;
	width: 100%;
	max-width: 580px;
	height: auto;
}

.tally-sec__media > img,
.tally-sec__photo {
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.04);
	border: 1px solid rgba(226, 232, 240, 0.85);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tally-sec__media > img:hover,
.tally-sec__photo:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 50px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(15, 23, 42, 0.06);
}
.tally-sec__art { overflow: visible; }

/* ---------- Content column ---------- */
.tally-sec__body { min-width: 0; }

/* Number badge — filled navy disc, as on the reference. Sits in the flow
   above the heading rather than being absolutely positioned, so it can never
   collide with the heading at any width. */
.tally-sec__number {
	display: inline-grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: var(--tally-navy);
	color: #fff;
	font-family: var(--font-heading);
	font-size: 1.22rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
}

.tally-sec__title {
	margin: 0 0 18px;
	font-size: clamp(1.35rem, 2.1vw, 1.9rem);
	line-height: 1.28;
}
.tally-sec__body p { margin: 0 0 1.05em; }
.tally-sec__body p:last-child { margin-bottom: 0; }

/* Supporting tick list. Two columns where there is room, as the reference
   pairs its .feature-box items. */
.tally-sec__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 22px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}
.tally-sec__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-heading);
	font-size: 0.94rem;
	font-weight: 500;
	line-height: 1.5;
	color: #0f172a;
}
.tally-sec__list svg {
	flex: none;
	width: 20px;
	height: 20px;
	padding: 4px;
	border-radius: 50%;
	background: #000000;
	color: #ffffff;
	stroke: #ffffff;
	stroke-width: 3;
	box-sizing: border-box;
}
/* =========================================================
   WHY CHOOSE AINUSH SOFTWARE SOLUTIONS
   (Skyrazone Reference: .services-area.bg-left-color.bg-left-shape)
   Static section inserted after tally_sec1, without scroll zoom
   ========================================================= */
.services-area.why-choose-ainush {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background-color: #f4f6fc;
	padding: clamp(70px, 8vw, 110px) 0;
	margin: clamp(40px, 5vw, 70px) 0;
	border-top: 1px solid rgba(8, 10, 60, 0.06);
	border-bottom: 1px solid rgba(8, 10, 60, 0.06);
	width: 100%;
}

/* Angular dark navy polygon backdrop on the left behind the isometric illustration */
.services-area.why-choose-ainush.bg-left-shape::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: clamp(340px, 44vw, 700px);
	height: 100%;
	background-color: #080a3c;
	clip-path: polygon(0 0, 52% 0, 92% 64%, 60% 100%, 0 100%);
	z-index: 1;
	pointer-events: none;
}

.services-area.why-choose-ainush .container-fluid {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
	position: relative;
	z-index: 2;
}

.services-area.why-choose-ainush .row {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(32px, 5vw, 70px);
}

/* Left Image Column */
.services-area.why-choose-ainush .services-image {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-area.why-choose-ainush .services-image .image {
	position: relative;
	width: 100%;
	max-width: 620px;
	text-align: center;
}

.services-area.why-choose-ainush .services-image img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 20px 40px rgba(8, 10, 60, 0.14));
	transition: transform 0.6s ease;
}

.services-area.why-choose-ainush:hover .services-image img {
	transform: translateY(-6px);
}

/* Right Content Column */
.services-area.why-choose-ainush .services-content {
	position: relative;
	z-index: 2;
}

.services-area.why-choose-ainush .services-content .content {
	max-width: 580px;
}

.services-area.why-choose-ainush .services-content .icon {
	margin-bottom: 22px;
	display: inline-block;
}

.services-area.why-choose-ainush .services-content .icon img {
	width: 46px;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.services-area.why-choose-ainush .services-content:hover .icon img {
	transform: rotate(15deg) scale(1.08);
}

.services-area.why-choose-ainush .services-content h2 {
	font-family: "Poppins", sans-serif;
	font-size: clamp(28px, 3.2vw, 38px);
	font-weight: 700;
	color: #080a3c;
	line-height: 1.28;
	margin: 0 0 22px;
	letter-spacing: -0.015em;
}

.services-area.why-choose-ainush .services-content p {
	font-family: "Poppins", sans-serif;
	font-size: clamp(14.5px, 1.05vw, 16px);
	line-height: 1.72;
	color: #4b5870;
	margin-bottom: 18px;
}

.services-area.why-choose-ainush .services-content .why-choose-link {
	font-size: clamp(14.5px, 1.05vw, 16px);
	line-height: 1.65;
	color: #080a3c;
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(8, 10, 60, 0.10);
}

.services-area.why-choose-ainush .services-content .why-choose-link a {
	color: #0056FF;
	text-decoration: none;
	display: inline-block;
	margin-top: 4px;
	transition: color 0.25s ease, transform 0.25s ease;
}

.services-area.why-choose-ainush .services-content .why-choose-link a:hover {
	color: #003db3;
	transform: translateX(3px);
}

@media (max-width: 991px) {
	.services-area.why-choose-ainush .row {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.services-area.why-choose-ainush.bg-left-shape::before {
		width: 100%;
		height: 280px;
		clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
	}
	.services-area.why-choose-ainush .services-image {
		order: 1;
	}
	.services-area.why-choose-ainush .services-content {
		order: 2;
	}
}

/* =========================================================
   CTA BAND
   ========================================================= */
.tally-cta-wrap { padding: 0 0 var(--tally-band); }
.tally-cta {
	position: relative;
	overflow: hidden;
	border-radius: var(--tally-radius);
	padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 70px);
	text-align: center;
	background: linear-gradient(140deg, var(--tally-navy) 0%, #151c68 100%);
	color: #fff;
}
.tally-cta::before,
.tally-cta::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.tally-cta::before {
	top: -120px; left: -90px;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(var(--tally-accent-rgb), 0.22), transparent 70%);
}
.tally-cta::after {
	bottom: -140px; right: -80px;
	width: 340px; height: 340px;
	border: 1px solid rgba(255, 255, 255, 0.10);
}
.tally-cta > * { position: relative; z-index: 1; }
.tally-cta h2 { color: #fff; margin: 0 0 16px; }
.tally-cta p {
	color: rgba(255, 255, 255, 0.82);
	max-width: 620px;
	margin: 0 auto 30px;
}
.tally-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

/* =========================================================
   FAQ — reuses the site's .faq component and accordion JS.
   Only the palette is re-pointed to navy/orange here.
   ========================================================= */
.tally-page .faq { background: var(--tally-tint-soft); }
.tally-page .faq__title {
	color: var(--tally-navy);
	/* The home heading is short enough for the component's one-line rule; a
	   Tally heading is not, so let it wrap instead of clipping. */
	white-space: normal;
	text-wrap: balance;
}
.tally-page .faq__title-accent { color: var(--tally-accent-deep); }
.tally-page .faq__trigger { color: var(--tally-navy); }
.tally-page .faq__trigger:hover,
.tally-page .faq__item.is-open .faq__trigger { color: var(--tally-accent-deep); }
.tally-page .faq__trigger:focus-visible { outline-color: var(--tally-accent-deep); }

/* The component splits into a 58% accordion column and a 41% illustration
   column. With no illustration set, that 41% is dead space — so the accordion
   takes the whole row instead, and its 700px content box widens with it. */
.tally-page .faq--no-media .faq__main { flex: 1 1 auto; }
.tally-page .faq--no-media .faq__content { max-width: 980px; }

/* =========================================================
   SECTION SEAMS
   Each band carries its own 100px top and bottom, which is
   the reference rhythm. Where two same-toned bands meet, the
   doubled 200px reads as a hole rather than a transition, so
   the seam is collapsed to a single band's worth.
   ========================================================= */
.tally-modules + .tally-secs { padding-top: 0; }
.tally-secs + .tally-sectors { padding-top: var(--tally-band); }

/* =========================================================
   SCROLL PROGRESS DONUTS
   Fixed half-arcs at each edge that fill with page progress,
   as on the reference. Hidden over the hero and the footer.
   ========================================================= */
.tally-donut {
	position: fixed;
	top: 50%;
	width: 35px;
	height: 150px;
	overflow: hidden;
	z-index: 90;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	filter: drop-shadow(2px 3px 8px rgba(8, 10, 60, 0.15));
}
.tally-donut.is-visible { opacity: 1; visibility: visible; }
.tally-donut--left  { left: 0;  transform: translateY(-50%); }
.tally-donut--right { right: 0; transform: translateY(-50%) scaleX(-1); }
.tally-donut svg { position: absolute; top: 0; left: -100px; }
.tally-donut__track { fill: none; stroke: #E7EBF3; stroke-width: 20; }
.tally-donut__bar {
	fill: none;
	stroke: var(--tally-accent);
	stroke-width: 20;
	stroke-linecap: butt;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
}

/* =========================================================
   SCROLL REVEALS
   Reproduces the reference's wow.js fadeInUp / fadeInLeft /
   fadeInRight without adding a library. Transform and opacity
   only, so nothing reflows.
   ========================================================= */
.tally-page [data-reveal] {
	opacity: 0;
	transition:
		opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform;
}
.tally-page [data-reveal="up"]    { transform: translate3d(0, 40px, 0); }
.tally-page [data-reveal="left"]  { transform: translate3d(-45px, 0, 0); }
.tally-page [data-reveal="right"] { transform: translate3d(45px, 0, 0); }
.tally-page [data-reveal].is-revealed {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	will-change: auto;           /* drop the hint once the reveal has run */
}

/* =========================================================
   RESPONSIVE
   Sections are reflowed, not merely shrunk.
   ========================================================= */
@media (max-width: 1199px) {
	.tally-cards__grid,
	.tally-cards__grid--three,
	.tally-modules__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
	.tally-hero__row {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.tally-hero__col-content {
		padding-left: 24px;
		padding-right: 24px;
		padding-top: 48px;
		padding-bottom: 36px;
	}
	.tally-hero__col-image {
		order: 2;
		padding: 0 20px 40px;
	}
	.banner-image.mbanner-bg-one {
		min-height: 380px;
		border-radius: 24px;
		border-bottom-left-radius: 80px;
	}
	.shape26, .shape23 { display: none; }

	/* Sections collapse to one column. The left/right alternation is dropped
	   so every section stacks the same way — illustration, then number,
	   heading and copy — rather than flipping down the page. */
	.tally-sec__row { grid-template-columns: 1fr; gap: 28px; }
	/* Reset the desktop zigzag order so stacking is natural on mobile. */
	.tally-sec__body  { order: 0; }
	.tally-sec__media { order: 0; }
	.tally-sec:nth-of-type(even) .tally-sec__body  { order: 0; }
	.tally-sec:nth-of-type(even) .tally-sec__media { order: 0; }
	/* The illustration no longer needs half a row, so cap it and centre it. */
	.tally-sec__media > img,
	.tally-sec__media > svg { max-width: 440px; }

	/* No width-scrub on narrow screens: sections are full width from the
	   start, which keeps the gutter consistent and avoids animating layout
	   on mobile. */
	.tally-sec { width: calc(100% - 60px); }
	.tally-page [data-zoom] { width: var(--tally-zoom-base, 100%); }

	.tally-donut { display: none; }
}

@media (max-width: 767px) {
	.tally-page .tally-shell,
	.tally-page .tally-shell--wide { width: calc(100% - 40px); }

	.tally-cards__grid,
	.tally-cards__grid--three,
	.tally-modules__grid { grid-template-columns: 1fr; gap: 20px; }
	.tally-checklist { grid-template-columns: 1fr; }
	.tally-section-title { margin-bottom: 38px; }

	/* Chips left-align once they wrap onto many lines — centred rows of
	   uneven pills read as ragged on a narrow screen. */
	.tally-sectors__grid { justify-content: flex-start; gap: 10px; }
	.tally-sectors__grid li { padding: 11px 18px; font-size: 0.9rem; }

	.tally-contact {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-top: 34px;
		padding-top: 28px;
	}

	.tally-module { padding: 20px 22px; gap: 14px; }
	.tally-module__icon { width: 46px; height: 46px; }

	.tally-hero__actions .tally-btn,
	.tally-cta__actions .tally-btn {
		flex: 1 1 auto;
		justify-content: center;
		min-height: 48px;        /* comfortable touch target */
	}

	.tally-sec__number { width: 46px; height: 46px; font-size: 1.05rem; margin-bottom: 16px; }
	.tally-sec { padding: 28px 20px; border-radius: 14px; }
	.tally-sec__list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.tally-hero__shape--1 { width: 180px; height: 180px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.tally-page [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.tally-hero__shape { animation: none; }
	.tally-sec { width: calc(100% - 60px); }
	.tally-page [data-zoom] { width: var(--tally-zoom-base, 100%); }
	.tally-donut { display: none; }
}

/* =========================================================
   AMBER PRODUCT CARDS (Cyan Blue Unified Design System)
   Alternating image-left / image-right layout with ample spacing
   ========================================================= */
/* Scoped to the page rather than :root — only the Amber cards use these, and
   on :root they were global for no reason.

   The token names still say "cyan" for a reason: they are referenced from a
   dozen rules below and this file is edited from more than one place, so
   renaming them is a bigger blast radius than it is worth. The values are the
   page's blue.

   Anything sitting ON these fills uses --amber-on-accent, not the navy it used
   to: navy on #0056FF measures 3.37:1, which fails AA, while white is 5.56:1. */
.amber-products-page {
	--amber-cyan: #0056FF;
	--amber-cyan-hover: #0047D6;
	--amber-cyan-gradient: linear-gradient(135deg, #0056FF 0%, #0038B8 100%);
	--amber-cyan-glow: rgba(0, 86, 255, 0.32);
	--amber-navy: #080a3c;
	--amber-on-accent: #ffffff;
	/* The title bar is a highlighter behind 42px type, so it stays a tint —
	   a solid fill there would drop the heading to the same 3.37:1. */
	--amber-title-bar: rgba(0, 86, 255, 0.22);
}

.amber-product-card {
	width: calc(100% - 40px);
	max-width: 1420px;
	margin: 0 auto 100px;
	background: #ffffff;
	border-radius: 30px;
	padding: clamp(38px, 4.2vw, 60px);
	box-shadow: 0 16px 50px rgba(8, 10, 60, 0.06);
	border: 1px solid rgba(8, 10, 60, 0.05);
	position: relative;
	box-sizing: border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amber-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 60px rgba(8, 10, 60, 0.09);
}

.amber-product-card__header {
	margin-bottom: 34px;
}

.amber-product-card__category {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #0056FF;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.amber-product-card__title {
	font-family: "Poppins", sans-serif;
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 800;
	color: var(--amber-navy);
	margin: 0;
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.amber-product-card__title-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 12px;
	background: var(--amber-title-bar);
	z-index: 1;
	border-radius: 4px;
}

.amber-product-card__title span {
	position: relative;
	z-index: 2;
}

/* Grid Layouts: Left vs Right */
.amber-product-card__grid {
	display: grid;
	gap: 44px;
	align-items: stretch;
}

.amber-product-card--image-left .amber-product-card__grid {
	grid-template-columns: 420px 1fr;
}

.amber-product-card--image-right .amber-product-card__grid {
	grid-template-columns: 1fr 420px;
}

/* Visual Column (Portrait + Stat Card) */
.amber-product-card__visual-col {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.amber-product-card__portrait-wrap {
	position: relative;
	border-radius: 24px;
}

.amber-product-card__portrait-img {
	width: 100%;
	height: 410px;
	object-fit: cover;
	border-radius: 24px;
	display: block;
	box-shadow: 0 12px 30px rgba(8, 10, 60, 0.08);
	position: relative;
	z-index: 2;
}

.amber-product-card__badge-pattern {
	/* currentColor feeds the inline pattern stroke, so the decoration tracks
	   the accent token instead of a hardcoded hex in the template. */
	color: var(--amber-cyan);
	position: absolute;
	top: -20px;
	left: -20px;
	width: 90px;
	height: 90px;
	z-index: 1;
	pointer-events: none;
}

.amber-product-card--image-right .amber-product-card__badge-pattern {
	left: auto;
	right: -20px;
}

.amber-product-card__stat-card {
	background: var(--amber-cyan);
	border-radius: 20px;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	box-shadow: 0 8px 24px var(--amber-cyan-glow);
}

.amber-product-card__stat-num {
	font-family: "Poppins", sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: var(--amber-on-accent);
	line-height: 1;
	flex-shrink: 0;
}

.amber-product-card__stat-label {
	font-family: "Poppins", sans-serif;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--amber-on-accent);
	line-height: 1.35;
}

/* Content Column (About + Capabilities + Landscape Image) */
.amber-product-card__content-col {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.amber-product-card__top-row {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 36px;
}

.amber-product-card__subhead {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--amber-navy);
	margin-bottom: 12px;
}

.amber-product-card__text {
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: #555e77;
	margin-bottom: 20px;
}

.amber-product-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--amber-cyan);
	color: var(--amber-on-accent);
	font-family: "Poppins", sans-serif;
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 14px var(--amber-cyan-glow);
}

.amber-product-card__btn:hover {
	background: var(--amber-navy);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(8, 10, 60, 0.25);
}

.amber-product-card__checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.amber-product-card__checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Poppins", sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--amber-navy);
	line-height: 1.35;
}

.amber-product-card__check-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--amber-cyan);
	color: var(--amber-on-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.amber-product-card__check-icon svg {
	width: 12px;
	height: 12px;
}

/* Landscape Context Image */
.amber-product-card__landscape-wrap {
	position: relative;
	border-radius: 24px;
	overflow: visible;
}

.amber-product-card__landscape-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 24px;
	display: block;
	box-shadow: 0 12px 30px rgba(8, 10, 60, 0.08);
	position: relative;
	z-index: 2;
}

.amber-product-card__dots-pattern {
	color: var(--amber-cyan);
	position: absolute;
	top: -16px;
	right: -16px;
	width: 70px;
	height: 70px;
	z-index: 1;
	pointer-events: none;
}

.amber-product-card--image-right .amber-product-card__dots-pattern {
	right: auto;
	left: -16px;
}

/* Responsive */
@media (min-width: 1600px) {
	.amber-product-card {
		max-width: 1540px;
	}
	.amber-product-card--image-left .amber-product-card__grid {
		grid-template-columns: 460px 1fr;
		gap: 52px;
	}
	.amber-product-card--image-right .amber-product-card__grid {
		grid-template-columns: 1fr 460px;
		gap: 52px;
	}
	.amber-product-card__portrait-img {
		height: 440px;
	}
	.amber-product-card__landscape-img {
		height: 330px;
	}
}

@media (max-width: 1280px) {
	.amber-product-card--image-left .amber-product-card__grid {
		grid-template-columns: 360px 1fr;
		gap: 32px;
	}
	.amber-product-card--image-right .amber-product-card__grid {
		grid-template-columns: 1fr 360px;
		gap: 32px;
	}
	.amber-product-card__portrait-img {
		height: 360px;
	}
	.amber-product-card__landscape-img {
		height: 260px;
	}
}

@media (max-width: 991px) {
	.amber-product-card {
		width: calc(100% - 30px);
		padding: 32px 24px;
		margin-bottom: 60px;
	}
	.amber-product-card--image-left .amber-product-card__grid,
	.amber-product-card--image-right .amber-product-card__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.amber-product-card--image-right .amber-product-card__visual-col {
		order: -1;
	}
	.amber-product-card__portrait-img {
		height: 360px;
	}
	.amber-product-card__top-row {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 575px) {
	.amber-product-card__stat-card {
		padding: 16px 20px;
	}
	.amber-product-card__stat-num {
		font-size: 30px;
	}
	.amber-product-card__stat-label {
		font-size: 13px;
	}
	.amber-product-card__portrait-img {
		height: 280px;
	}
	.amber-product-card__landscape-img {
		height: 200px;
	}
}
