/* =========================================================================
   Athath Express — 05 HOME
   Hero, proof ribbon, service showcase, why band, coverage band, categories.
   ====================================================================== */

/* Small utilities used across the composed pages */
.a-mt-lg { margin-block-start: 26px; }
.a-inline-num { font-weight: 800; color: var(--a-green-dark); }

/* Highlighted word inside a heading */
.a-hl {
	position: relative;
	display: inline-block;
	color: var(--a-green-dark);
	isolation: isolate;
}
.a-hl::after {
	content: "";
	position: absolute;
	inset-inline: -.08em;
	inset-block-end: .1em;
	height: .3em;
	z-index: -1;
	border-radius: 6px;
	background: linear-gradient(to left, rgba(201, 162, 39, .45), rgba(46, 204, 113, .34));
}

/* -------------------------------------------------------------------------
   01 · Hero
   ---------------------------------------------------------------------- */

.a-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(38px, 4.4vw, 68px) clamp(74px, 7.6vw, 118px);
	background:
		radial-gradient(62% 78% at 96% 6%, rgba(46, 204, 113, .16), transparent 62%),
		radial-gradient(48% 60% at 4% 96%, rgba(201, 162, 39, .10), transparent 62%),
		linear-gradient(178deg, #fbf9f5 0%, var(--a-cream) 100%);
}
.a-hero::before {
	content: "";
	position: absolute;
	inset-block-start: -30%;
	inset-inline-end: -12%;
	width: 46vw;
	height: 46vw;
	max-width: 640px;
	max-height: 640px;
	border-radius: 50%;
	border: 1px solid rgba(21, 122, 61, .09);
	pointer-events: none;
}

.a-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
	gap: clamp(28px, 4vw, 66px);
	align-items: center;
}

.a-hero__copy .a-badge { margin-block-end: 22px; }
.a-hero h1 { margin-bottom: .42em; }
.a-hero .a-lead { max-width: 46ch; }
.a-hero__actions { margin-block-start: 30px; }

.a-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	margin-block-start: 32px;
	padding-block-start: 24px;
	border-block-start: 1px solid var(--a-line);
}
.a-hero__proof li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: .93rem;
	font-weight: 600;
	color: var(--a-muted);
}
.a-hero__proof .a-icon { width: 19px; height: 19px; color: var(--a-green); }

/* Layered 3D composition */
.a-hero__scene {
	position: relative;
	padding-block: 8px 26px;
}
.a-hero__halo {
	position: absolute;
	inset-block-start: 4%;
	inset-inline-start: 6%;
	width: 74%;
	height: 74%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(46, 204, 113, .26), transparent 66%);
	filter: blur(38px);
	pointer-events: none;
}
.a-hero__main {
	position: relative;
	width: min(100%, 430px);
	margin-inline-start: auto;
	margin-inline-end: 0;
}
.a-hero__inset {
	position: absolute;
	inset-block-end: 0;
	inset-inline-start: 0;
	width: min(45%, 195px);
}
.a-hero__inset .a-frame {
	border: 5px solid #fff;
	box-shadow: var(--a-sh-3);
}
.a-hero__pill {
	position: absolute;
	inset-block-start: 9%;
	inset-inline-start: -4px;
	max-width: 210px;
}
.a-hero__pill span { font-size: .8rem; }
.a-hero__accent {
	position: absolute;
	inset-block-start: -10px;
	inset-inline-end: 14%;
	width: 74px;
	height: 74px;
	border-radius: 22px;
	border: 2px solid var(--a-gold);
	opacity: .55;
	transform: rotate(14deg);
	pointer-events: none;
}

@media (max-width: 900px) {
	.a-hero__grid { grid-template-columns: 1fr; gap: 34px; }
	.a-hero .a-lead { max-width: none; }
	.a-hero__scene { max-width: 520px; margin-inline: auto; width: 100%; }
	.a-hero__main { width: min(78%, 380px); }
	.a-hero__inset { width: min(38%, 170px); }
	.a-hero__accent { inset-inline-end: 4%; }
}
@media (max-width: 560px) {
	.a-hero { padding-block-end: 86px; }
	.a-hero__main { width: 74%; }
	.a-hero__inset { width: 42%; max-width: 150px; }
	.a-hero__pill { inset-block-start: 4%; inset-inline-start: -4px; max-width: 168px; padding: 10px 13px; }
	.a-hero__pill strong { font-size: 1.08rem; }
	.a-hero__pill span { font-size: .74rem; }
	.a-hero__accent { width: 54px; height: 54px; }
	.a-hero__proof { gap: 10px 18px; }
	.a-hero__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
	.a-hero__actions .a-btn { width: 100%; }
}

/* -------------------------------------------------------------------------
   02 · Proof ribbon (straddles the hero / next section boundary)
   ---------------------------------------------------------------------- */

.a-ribbon-wrap {
	position: relative;
	background: var(--a-cream);
}
.a-ribbon-wrap::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	inset-block-end: 0;
	height: 52%;
	background: var(--a-white);
}
.a-ribbon {
	position: relative;
	z-index: 1;
	margin-block-start: calc(-1 * clamp(60px, 6vw, 96px));
	border: 1px solid var(--a-line);
	border-radius: var(--a-r-lg);
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	box-shadow: var(--a-sh-2);
	overflow: hidden;
}

@media (max-width: 720px) {
	.a-ribbon { margin-block-start: -70px; border-radius: var(--a-r-md); }
	.a-ribbon-wrap::after { height: 42%; }
}

/* -------------------------------------------------------------------------
   03 · Services showcase
   ---------------------------------------------------------------------- */

.a-svc {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
	gap: clamp(18px, 2.2vw, 32px);
}

/* Featured service — image with an editorial overlay */
.a-svc__hero > a {
	position: relative;
	display: block;
	height: 100%;
	border-radius: var(--a-r-lg);
	overflow: hidden;
	color: #fff;
	box-shadow: var(--a-sh-2);
	transition: transform .55s var(--a-ease), box-shadow .55s var(--a-ease);
}
.a-svc__hero > a:hover { transform: translateY(-6px); box-shadow: var(--a-sh-3); }
.a-svc__hero-media {
	height: 100%;
	min-height: 340px;
	border-radius: inherit;
	box-shadow: none;
}
.a-svc__hero-media::after { box-shadow: none; }
.a-svc__hero-body {
	position: absolute;
	inset-block-end: 0;
	inset-inline: 0;
	z-index: 3;
	padding: clamp(22px, 2.6vw, 36px);
	background: linear-gradient(to top, rgba(7, 45, 24, .95) 12%, rgba(7, 45, 24, .68) 52%, rgba(7, 45, 24, 0) 100%);
}
.a-svc__hero-body h3 {
	color: #fff;
	font-size: clamp(1.3rem, 1.1rem + .8vw, 1.75rem);
	font-weight: 800;
	margin-bottom: .35em;
}
.a-svc__hero-body p {
	color: rgba(233, 243, 236, .86);
	font-size: .99rem;
	line-height: 1.75;
	max-width: 46ch;
	margin-bottom: 16px;
}
.a-svc__hero-body .a-arrow-link { color: var(--a-gold-soft); }
.a-svc__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-block-end: 14px;
	padding: 7px 14px;
	border-radius: var(--a-r-pill);
	border: 1px solid rgba(255, 255, 255, .26);
	background: rgba(255, 255, 255, .12);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: .84rem;
	font-weight: 700;
}
.a-svc__tag .a-icon { width: 16px; height: 16px; color: var(--a-green-bright); }

/* Supporting services — editorial rows, not repeated cards */
.a-svc__list { display: grid; gap: clamp(12px, 1.4vw, 18px); align-content: stretch; }
.a-svc__row > a {
	display: grid;
	grid-template-columns: clamp(110px, 13vw, 156px) minmax(0, 1fr) auto;
	gap: clamp(14px, 1.8vw, 22px);
	align-items: center;
	height: 100%;
	padding: 14px;
	border: 1px solid var(--a-line);
	border-radius: var(--a-r-md);
	background: var(--a-white);
	color: var(--a-ink);
	transition: transform .45s var(--a-ease), box-shadow .45s var(--a-ease), border-color .45s var(--a-ease), background-color .45s var(--a-ease);
}
.a-svc__row > a:hover {
	transform: translateX(-5px);
	border-color: rgba(21, 122, 61, .24);
	background: #fff;
	box-shadow: var(--a-sh-2);
}
html[dir="ltr"] .a-svc__row > a:hover { transform: translateX(5px); }
.a-svc__row-media {
	aspect-ratio: 4 / 3;
	border-radius: var(--a-r-sm);
	box-shadow: none;
}
.a-svc__row-media::after { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28); }
.a-svc__row-body h3 { margin-bottom: .3em; font-size: 1.13rem; }
.a-svc__row-body p {
	margin: 0 0 10px;
	color: var(--a-muted);
	font-size: .94rem;
	line-height: 1.7;
}
.a-svc__row-body em {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-style: normal;
	font-size: .84rem;
	font-weight: 700;
	color: var(--a-green-dark);
}
.a-svc__row-body em .a-icon { width: 16px; height: 16px; }
.a-svc__row-go {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex: none;
	border-radius: 50%;
	background: var(--a-cream);
	color: var(--a-green-dark);
	transition: background-color .4s var(--a-ease), transform .4s var(--a-ease);
}
.a-svc__row-go .a-icon { width: 17px; height: 17px; }
html[dir="ltr"] .a-svc__row-go .a-icon { transform: scaleX(-1); }
.a-svc__row > a:hover .a-svc__row-go { background: var(--a-tint); transform: translateX(-3px); }

@media (max-width: 980px) {
	.a-svc { grid-template-columns: 1fr; }
	.a-svc__hero-media { min-height: 300px; aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
	.a-svc__row > a { grid-template-columns: 104px minmax(0, 1fr); gap: 14px; }
	.a-svc__row-body h3 { font-size: 1.05rem; }
	.a-svc__row-go { display: none; }
	.a-svc__row-body p { display: none; }
	.a-svc__hero-media { min-height: 240px; aspect-ratio: 4 / 3; }
}

/* -------------------------------------------------------------------------
   04 · Why band (dark)
   ---------------------------------------------------------------------- */

.a-why__list {
	display: grid;
	margin-block-start: 30px;
}
.a-why__list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	padding-block: 20px;
	border-block-end: 1px solid rgba(255, 255, 255, .12);
}
.a-why__list li:last-child { border-block-end: 0; }
.a-why__ic {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid rgba(46, 204, 113, .28);
	background: rgba(46, 204, 113, .12);
	color: var(--a-green-bright);
	transition: transform .45s var(--a-ease), background-color .45s var(--a-ease);
}
.a-why__ic .a-icon { width: 21px; height: 21px; }
.a-why__list li:hover .a-why__ic { transform: translateY(-3px) rotateY(12deg); background: rgba(46, 204, 113, .2); }
.a-why__list h3 { margin-bottom: .25em; font-size: 1.08rem; color: #fff; }
.a-why__list p { margin: 0; font-size: .95rem; line-height: 1.72; }
.a-why__actions { margin-block-start: 30px; }

.a-why__visual { position: relative; }
.a-why__visual .a-scene__stage { position: relative; }
.a-why__metric {
	position: absolute;
	inset-block-end: -18px;
	inset-inline-start: -18px;
	width: min(72%, 268px);
	padding: 20px 22px;
	border-radius: var(--a-r-md);
	background: rgba(9, 44, 25, .72);
	backdrop-filter: blur(14px);
	box-shadow: var(--a-sh-3);
}
.a-why__metric p {
	margin: 8px 0 0;
	font-size: .85rem;
	line-height: 1.6;
	color: rgba(233, 243, 236, .74);
}

@media (max-width: 900px) {
	.a-why__visual { max-width: 520px; }
	.a-why__metric { inset-inline-start: 0; inset-block-end: -14px; }
}
@media (max-width: 560px) {
	.a-why__metric { position: static; width: 100%; margin-block-start: 14px; }
}

/* -------------------------------------------------------------------------
   05 · Layered image stack (about preview)
   ---------------------------------------------------------------------- */

.a-stack { position: relative; }
.a-stack .a-scene__stage { position: relative; }
.a-stack__main { width: min(100%, 440px); margin-inline-end: auto; }
.a-stack__inset {
	position: absolute;
	inset-block-end: -26px;
	inset-inline-end: 0;
	width: min(46%, 190px);
	border: 5px solid #fff;
	box-shadow: var(--a-sh-3);
}

@media (max-width: 900px) {
	.a-stack { max-width: 520px; margin-inline: auto; width: 100%; }
	.a-stack__main { width: min(80%, 400px); }
	.a-stack__inset { width: min(40%, 170px); inset-block-end: -18px; }
}
@media (max-width: 560px) {
	.a-stack__inset { width: 42%; }
	.a-frame__cap { font-size: .8rem; padding: 9px 12px; inset-inline-start: 10px; inset-block-end: 10px; }
}

/* -------------------------------------------------------------------------
   07 · Coverage band (full-bleed image)
   ---------------------------------------------------------------------- */

.a-band {
	position: relative;
	overflow: hidden;
	padding-block: clamp(62px, 6.6vw, 104px);
	color: #fff;
}
.a-band__bg { position: absolute; inset: 0; z-index: 0; }
.a-band__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 42%;
}
.a-band__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(115% 120% at 100% 45%, rgba(6, 38, 20, .93) 0%, rgba(6, 38, 20, .55) 58%, rgba(6, 38, 20, .3) 100%),
		radial-gradient(80% 90% at 90% 8%, rgba(46, 204, 113, .16), transparent 60%),
		linear-gradient(to top, rgba(6, 38, 20, .92) 6%, rgba(7, 45, 24, .78) 52%, rgba(7, 45, 24, .66) 100%);
}
.a-band__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, .55fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
}
.a-band__panel { max-width: 58ch; }
.a-band__panel h2 { color: #fff; }
.a-band__panel > p { color: rgba(233, 243, 236, .84); font-size: var(--a-fs-lead); line-height: 1.78; }
.a-band__sub {
	margin: 26px 0 14px;
	color: var(--a-gold-soft);
	font-size: 1rem;
	font-weight: 700;
}
.a-band__panel .a-checks li { color: rgba(255, 255, 255, .92); }
.a-band__panel .a-checks .a-icon {
	background: rgba(46, 204, 113, .18);
	color: var(--a-green-bright);
	box-shadow: inset 0 0 0 1px rgba(46, 204, 113, .32);
}
.a-band__metric {
	padding: clamp(22px, 2.4vw, 32px);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--a-r-md);
	background: rgba(255, 255, 255, .07);
	backdrop-filter: blur(12px);
	text-align: center;
}
.a-band__metric .a-metric { flex-direction: column; align-items: center; gap: 4px; }
.a-band__metric .a-metric span { color: rgba(233, 243, 236, .82); }

@media (max-width: 900px) {
	.a-band__inner { grid-template-columns: 1fr; }
	.a-band__metric { justify-self: start; min-width: 190px; }
}

/* -------------------------------------------------------------------------
   08 · Categories table
   ---------------------------------------------------------------------- */

.a-cats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 1px solid var(--a-line);
	border-radius: var(--a-r-lg);
	background: var(--a-white);
	overflow: hidden;
	box-shadow: var(--a-sh-1);
}
.a-cats__item {
	padding: clamp(20px, 2.2vw, 30px);
	border-inline-end: 1px solid var(--a-line);
	border-block-end: 1px solid var(--a-line);
	transition: background-color .35s var(--a-ease);
}
.a-cats__item:nth-child(3n) { border-inline-end: 0; }
.a-cats__item:nth-last-child(-n+3) { border-block-end: 0; }
.a-cats__item:hover { background: var(--a-cream); }
.a-cats__no {
	display: block;
	margin-block-end: 10px;
	color: var(--a-gold);
	font-size: .8rem;
	font-weight: 800;
}
.a-cats__item h3 { margin-bottom: .3em; font-size: 1.1rem; }
.a-cats__item p { margin: 0; color: var(--a-muted); font-size: .94rem; line-height: 1.7; }

@media (max-width: 860px) {
	.a-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.a-cats__item:nth-child(3n) { border-inline-end: 1px solid var(--a-line); }
	.a-cats__item:nth-child(2n) { border-inline-end: 0; }
	.a-cats__item:nth-last-child(-n+3) { border-block-end: 1px solid var(--a-line); }
	.a-cats__item:nth-last-child(-n+2) { border-block-end: 0; }
}
@media (max-width: 520px) {
	.a-cats { grid-template-columns: 1fr; }
	.a-cats__item,
	.a-cats__item:nth-child(3n) { border-inline-end: 0; }
	.a-cats__item:nth-last-child(-n+3) { border-block-end: 1px solid var(--a-line); }
	.a-cats__item:last-child { border-block-end: 0; }
}

/* -------------------------------------------------------------------------
   10 · Tips panel
   ---------------------------------------------------------------------- */

.a-tips {
	border: 1px solid var(--a-line);
	border-radius: var(--a-r-md);
	background: var(--a-white);
	overflow: hidden;
	box-shadow: var(--a-sh-1);
}
.a-tips__media { border-radius: 0; box-shadow: none; }
.a-tips__media::after { box-shadow: none; }
.a-tips__body { padding: clamp(22px, 2.4vw, 32px); }
.a-tips__body h3 { margin-bottom: .8em; }

/* -------------------------------------------------------------------------
   11 · FAQ layout
   ---------------------------------------------------------------------- */

.a-faq-layout { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
.a-faq-intro__more {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-block-start: 22px;
	color: var(--a-muted);
	font-size: .95rem;
}

@media (min-width: 901px) {
	.a-faq-intro { position: sticky; inset-block-start: calc(var(--a-header-h) + 28px); }
}
@media (max-width: 900px) {
	.a-faq-layout { grid-template-columns: 1fr; }
}
