/* ==========================================================================
   Nox Services — Design System v3
   Light-first, editorial-modern composition. No full-bleed dark photo
   bands, no alternating dark/light strips — structure built from
   contained cards, bento grids and a split hero, with dark used only
   as a deliberate, occasional accent (the final CTA banner).
   ========================================================================== */

:root {
	/* Default theme: deep chocolate brown + muted luxury gold + warm cream. True black reserved for sparing text use only. */
	--ink: #3b2a1c;
	--ink-soft: #4a3624;
	--paper: #fdfcfa;
	--cream: #f6f2ea;
	--cream-deep: #efe8d9;
	--white: #ffffff;
	--gold: #b8934a;
	--gold-light: #d4b36a;
	--gold-deep: #8a6c34;
	--gold-wash: #fbf3e2;
	--brown: #2b1d12;
	--line: rgba(59, 42, 28, 0.12);
	--line-strong: rgba(59, 42, 28, 0.2);
	--muted: #746a5c;
	--text: #1c150e;
}
[data-theme="classic"] {
	--ink: #12100e;
	--ink-soft: #322c25;
	--gold: #c9a24a;
	--gold-light: #e8c766;
	--gold-deep: #9c7a32;
	--line: rgba(18, 16, 14, 0.08);
	--line-strong: rgba(18, 16, 14, 0.15);
	--text: #12100e;
}
:root {
	--radius-xl: 32px;
	--radius-lg: 26px;
	--radius: 18px;
	--radius-sm: 12px;
	--shadow-sm: 0 2px 12px -6px rgba(18, 16, 14, 0.14);
	--shadow-md: 0 20px 44px -18px rgba(18, 16, 14, 0.22);
	--shadow-lg: 0 34px 80px -24px rgba(18, 16, 14, 0.3);
	--container: 1260px;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--gradient-gold: linear-gradient(135deg, var(--gold-light), var(--gold) 65%, var(--gold-deep));
	--gradient-dark: linear-gradient(135deg, #201509 0%, #3b2a1c 48%, #543c26 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--paper); color: var(--ink); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Manrope', 'Inter', sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 16px; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--ink); padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }
.nox-container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .nox-container { padding: 0 20px; } }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 700; }
.pill--gold { background: var(--gold-wash); color: var(--gold-deep); }
.pill--dark { background: var(--ink); color: var(--gold-light); }
.pill--light { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-deep); margin: 0 0 14px; }
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--light { color: var(--gold-light); }

.section { padding: 110px 0; }
.section--tight { padding: 64px 0; }
.section__title { margin-bottom: 18px; }
.section__title--center { text-align: center; }
.section__lead { max-width: 620px; margin: 0 auto 52px; text-align: center; color: var(--muted); font-size: 1.1rem; }
@media (max-width: 780px) { .section { padding: 68px 0; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 0.95rem; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease); white-space: nowrap; }
.btn--gold { background: var(--gradient-gold); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(201,162,74,0.55); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--brown); }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--gold); background: var(--cream); }
.btn--outline-light { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ==========================================================================
   Top ribbon — slim utility bar above the sticky header, scrolls away
   ========================================================================== */
.top-ribbon { background: var(--gradient-dark); color: rgba(255,255,255,0.78); }
.top-ribbon__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 28px; max-width: var(--container); margin: 0 auto; font-size: 0.8rem; }
.top-ribbon__contact { display: flex; align-items: center; gap: 22px; }
.top-ribbon__contact a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.78); font-weight: 500; transition: color 0.2s ease; }
.top-ribbon__contact a svg { color: var(--gold-light); flex-shrink: 0; }
.top-ribbon__contact a:hover { color: #fff; }
.top-ribbon__badge { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-light); font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; }
@media (max-width: 720px) {
	.top-ribbon__contact a.top-ribbon__email { display: none; }
	.top-ribbon__inner { padding: 8px 20px; }
}
@media (max-width: 520px) {
	.top-ribbon__badge { display: none; }
}

/* ==========================================================================
   Header — sticky nav below the top ribbon
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--gradient-dark); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 28px; max-width: var(--container); margin: 0 auto; }
.site-logo img { max-height: 42px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.site-nav__list { display: flex; align-items: center; gap: 2px; }
.site-nav__list a { display: block; padding: 9px 15px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: background 0.2s ease, color 0.2s ease; }
.site-nav__list a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.site-nav__list .current-menu-item > a { background: var(--gradient-gold); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone { display: none; font-size: 0.86rem; font-weight: 700; color: #fff; }
.header-phone:hover { color: var(--gold-light); }
.nav-mobile-cta { display: none; }
.theme-toggle { width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: #fff; cursor: pointer; font-size: 1rem; flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; flex-shrink: 0; }
.nav-toggle span { width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 981px) { .header-phone { display: block; } }
@media (max-width: 980px) {
	.site-header { overflow: visible; }
	.site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; background: var(--gradient-dark); border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 16px 32px -12px rgba(18,16,14,0.4); padding: 18px; max-height: 80vh; overflow-y: auto; }
	.site-header.is-open .site-nav { display: flex; }
	.site-nav__list { flex-direction: column; width: 100%; gap: 4px; }
	.site-nav__list a { display: block; padding: 14px 16px; font-size: 1.05rem; }
	.nav-mobile-cta { display: block; margin-top: 16px; text-align: center; }
	.header-actions .btn--gold { display: none; }
	.nav-toggle { display: flex; }
	body.nav-is-locked { overflow: hidden; }
}

/* ==========================================================================
   Split hero — headline/actions left, framed photo + floating badge right
   ========================================================================== */
.hero { padding: 64px 0 40px; background: var(--gradient-dark); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -8%; width: 50%; aspect-ratio: 1; background: radial-gradient(circle, rgba(212,179,106,0.16), transparent 70%); pointer-events: none; }
.hero--compact { padding: 48px 0 32px; }
.hero h1, .hero h2 { color: #fff; }
.hero .eyebrow { color: var(--gold-light); }
.hero-split__grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: 60px; align-items: center; }
.hero-split__content { position: relative; z-index: 1; }
.hero-split__lead { font-size: 1.15rem; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 32px; }
.hero-split__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-split__trust { display: flex; align-items: center; gap: 14px; }
.hero-split__avatars { display: flex; }
.hero-split__avatars img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 3px solid var(--ink); margin-left: -12px; }
.hero-split__avatars img:first-child { margin-left: 0; }
.hero-split__trust-text { font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.hero-split__trust-text strong { color: #fff; display: block; font-size: 0.92rem; }

.hero-split__media { position: relative; }
.hero-split__frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/4.6; box-shadow: var(--shadow-lg); }
.hero-split__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-split__badge {
	position: absolute; left: -18px; bottom: 32px; z-index: 2;
	background: var(--gradient-dark); backdrop-filter: blur(10px); color: #fff;
	border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg);
	display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero-split__badge-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--gradient-gold); color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-split__badge strong { display: block; font-size: 1rem; font-family: 'Manrope', sans-serif; }
.hero-split__badge span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
@media (max-width: 980px) {
	.hero-split__grid { grid-template-columns: 1fr; gap: 40px; }
	.hero-split__media { order: -1; max-width: 420px; margin: 0 auto; }
	.hero-split__badge { left: 12px; }
}

/* Slide mechanics (crossfade within the split layout) */
.hero-slider__track { position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.8s var(--ease), visibility 0.8s; }
.hero-slide.is-active { position: relative; opacity: 1; visibility: visible; z-index: 1; }
.hero-slide .hero-split__grid { display: grid; }
.hero-slider__dots { display: flex; gap: 8px; margin-top: 30px; }
.hero-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.hero-slider__dot.is-active { width: 26px; border-radius: 4px; background: var(--gold); }
.hero-slider__arrow { display: none; }

/* ==========================================================================
   Stat pills row (inline, under hero — not an overlapping card anymore)
   ========================================================================== */
.stats-strip { padding: 56px 0 0; background: var(--cream); }
.stats-strip__card { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-strip__item { display: flex; align-items: center; gap: 14px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.stats-strip__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stats-strip__icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; background: var(--gold-wash); color: var(--gold-deep); }
.stats-strip__item strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--ink); font-family: 'Manrope', sans-serif; }
.stats-strip__label { display: block; font-size: 0.78rem; color: var(--muted); }
@media (max-width: 900px) { .stats-strip__card { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stats-strip__card { grid-template-columns: 1fr; } }

/* ==========================================================================
   Bento feature grid — mixed card sizes, one lead card
   ========================================================================== */
.services-grid { background: var(--cream); }
.services-grid__cards { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(220px, auto); gap: 20px; margin-top: 52px; }
.service-card {
	background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--line);
	box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
	padding: 28px 26px; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 14px; background: var(--gold-wash); color: var(--gold-deep); margin-bottom: 20px; }
.service-card__icon svg { width: 25px; height: 25px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.service-card--photo { padding: 0; overflow: hidden; position: relative; grid-column: span 1; }
.service-card--photo:first-of-type { grid-column: span 2; grid-row: span 2; }
.service-card--photo:last-of-type { grid-column: span 2; }
.service-card--photo .service-card__media { position: relative; height: 100%; min-height: 200px; overflow: hidden; }
.service-card--photo .service-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); position: absolute; inset: 0; }
.service-card--photo:hover .service-card__media img { transform: scale(1.07); }
.service-card--photo .service-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,16,14,0) 30%, rgba(18,16,14,0.82) 100%); }
.service-card--photo .service-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 2; }
.service-card--photo .service-card__body h3, .service-card--photo .service-card__body p { color: #fff; }
.service-card--photo .service-card__body p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.service-card--photo .service-card__icon { background: var(--gradient-gold); color: var(--ink); margin-bottom: 12px; width: 42px; height: 42px; }
@media (max-width: 980px) {
	.services-grid__cards { grid-template-columns: 1fr 1fr; }
	.service-card--photo:first-of-type { grid-row: auto; grid-column: span 2; }
	.service-card--photo:last-of-type { grid-column: span 2; }
}
@media (max-width: 620px) {
	.services-grid__cards { grid-template-columns: 1fr; }
	.service-card--photo, .service-card--photo:first-of-type, .service-card--photo:last-of-type { grid-column: span 1 !important; }
}

/* ==========================================================================
   Image + text split (still used for editorial content sections)
   ========================================================================== */
.image-block-section { background: var(--paper); }
.image-block-section--dark { background: var(--gradient-dark); position: relative; isolation: isolate; overflow: hidden; }
.image-block-section--dark::before { content: ''; position: absolute; inset: -20% -10% auto auto; width: 50%; aspect-ratio: 1; z-index: -1; background: radial-gradient(circle, rgba(201,162,74,0.2), transparent 70%); filter: blur(20px); }
.image-block-section--dark h1, .image-block-section--dark h2, .image-block-section--dark h3, .image-block-section--dark h4 { color: #fff; }
.image-block-section--dark p, .image-block-section--dark li { color: rgba(255,255,255,0.72); }
.image-block-section--dark .eyebrow { color: var(--gold-light); }
.image-block-section--dark .about-split__image { box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6); }

.about-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-split--reverse { grid-template-columns: 1.15fr 0.85fr; }
.about-split--reverse .about-split__image { order: 2; }
.about-split--reverse .about-split__content { order: 1; }
.about-split__image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-split__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-split__content .nox-shortcode-button { display: inline-block; margin-right: 14px; }
.about-split__content .nox-shortcode-button:first-of-type { margin-top: 26px; }
@media (max-width: 860px) {
	.about-split { grid-template-columns: 1fr; gap: 34px; }
	.about-split__image { aspect-ratio: 16/10; }
	.about-split__content .nox-shortcode-button { display: block; margin-right: 0; margin-bottom: 10px; }
}

.check-list { display: grid; gap: 12px; margin: 22px 0 30px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 0.98rem; color: var(--ink-soft); }
.check-list svg { flex-shrink: 0; color: var(--gold-deep); background: var(--gold-wash); border-radius: 50%; padding: 4px; width: 24px !important; height: 24px !important; }

/* ==========================================================================
   Spotlight (Why Us) — light card composition, no dark photo band
   ========================================================================== */
.why-us--photo { background: var(--cream); position: relative; }
.why-us__grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.why-us__title { color: var(--ink); }
.why-us__lead { color: var(--muted); font-size: 1.05rem; }
.why-us__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 5/4.4; box-shadow: var(--shadow-lg); }
.why-us__media img { width: 100%; height: 100%; object-fit: cover; }
.why-us__stats { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-top: 32px; }
.why-us__stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.why-us__stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-us__stat strong { font-size: 1.55rem; font-weight: 800; color: var(--gold-deep); display: block; font-family: 'Manrope', sans-serif; }
.why-us__stat span { font-size: 0.83rem; color: var(--muted); }
@media (max-width: 900px) { .why-us__grid { grid-template-columns: 1fr; } .why-us__media { max-width: 460px; margin: 0 auto; } }

/* ==========================================================================
   Reviews — minimal quote cards on white
   ========================================================================== */
.nox-stars { display: inline-flex; gap: 2px; color: #e3ddcd; vertical-align: middle; }
.nox-star.is-filled { color: #f5b400; }
.nox-star svg { display: block; }
.reviews-showcase { background: var(--gradient-dark); }
.reviews-showcase .eyebrow { color: var(--gold-light); }
.reviews-showcase .section__title { color: #fff; }
.reviews-showcase__platforms { display: flex; justify-content: center; gap: 16px; margin: 36px 0 48px; flex-wrap: wrap; }
.platform-pill { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 12px 22px; transition: transform 0.25s ease, background 0.25s ease; }
.platform-pill:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); }
.platform-pill__body { display: flex; flex-direction: column; font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.3; }
.platform-pill__body strong { display: flex; align-items: center; gap: 6px; color: #fff; font-size: 1rem; font-family: 'Manrope', sans-serif; }
.platform-pill .nox-star svg { width: 13px; height: 13px; }
.reviews-showcase__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.review-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; position: relative; }
.review-card::before { content: '\201C'; position: absolute; top: 18px; right: 26px; font-family: Georgia, serif; font-size: 3.2rem; color: var(--gold-light); opacity: 0.4; line-height: 1; }
.review-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.review-card__platform { font-size: 0.74rem; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }
.review-card__quote { font-size: 1.02rem; color: rgba(255,255,255,0.82); flex: 1; position: relative; z-index: 1; }
.review-card__footer { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card__avatar--fallback { display: flex; align-items: center; justify-content: center; background: var(--gradient-gold); color: var(--ink); font-weight: 800; font-size: 1.05rem; }
.review-card__name { font-weight: 700; display: block; color: #fff; }
.review-card__role { font-size: 0.84rem; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Final CTA — contained rounded banner, not full-bleed photo
   ========================================================================== */
.final-cta--photo { background: var(--paper); }
.final-cta__inner { position: relative; background: var(--gradient-dark); border-radius: var(--radius-xl); padding: 72px 40px; text-align: center; overflow: hidden; isolation: isolate; }
.final-cta__inner::before { content: ''; position: absolute; inset: -30% -10% auto auto; width: 55%; aspect-ratio: 1; background: radial-gradient(circle, rgba(201,162,74,0.32), transparent 70%); filter: blur(24px); z-index: -1; }
.final-cta__bg { display: none; }
.final-cta__overlay { display: none; }
.final-cta--photo .section__title { color: #fff; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta__lead { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 520px; margin: 0 auto 32px; }
@media (max-width: 640px) { .final-cta__inner { padding: 52px 24px; border-radius: var(--radius-lg); } }

/* Trust badges */
.trust-badges { background: var(--cream); padding: 40px 0; }
.trust-badges__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.trust-badges__item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 700; color: var(--brown); }
.trust-badges__icon { display: inline-flex; color: var(--gold-deep); }
.trust-badges__icon svg { display: block; }

/* ==========================================================================
   Support band + CTA bar — kept as contained cards, not full-bleed
   ========================================================================== */
.support-band { padding: 56px 0; }
.support-band::before { display: none; }
.support-band .nox-container { background: var(--gradient-dark); border-radius: var(--radius-xl); padding: 44px 44px; position: relative; overflow: hidden; }
.support-band__inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.support-band__text h2 { color: #fff; margin-bottom: 6px; font-size: 1.6rem; }
.support-band__text p { color: rgba(255,255,255,0.7); margin: 0; }
.support-band__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.support-band__phone { display: flex; align-items: center; gap: 12px; color: #fff; }
.support-band__phone-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.support-band__phone small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.support-band__phone strong { font-size: 1.05rem; }
.support-band__cta { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 640px) { .support-band .nox-container { padding: 32px 24px; border-radius: var(--radius-lg); } }

.cta-bar { background: var(--paper); padding-bottom: 4px; }
.cta-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--container); margin: 0 auto; padding: 0 28px 40px; }
.cta-bar__item { display: flex; align-items: center; gap: 12px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.cta-bar__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cta-bar__icon { color: var(--gold-deep); flex-shrink: 0; display: inline-flex; }
.cta-bar__text { font-weight: 700; font-size: 0.88rem; }
@media (max-width: 860px) { .cta-bar__grid { grid-template-columns: 1fr 1fr; padding: 0 20px 32px; } }
@media (max-width: 540px) { .cta-bar__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 320px)); gap: 22px; justify-content: center; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); width: 100%; max-width: 320px; margin: 0 auto; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__photo { aspect-ratio: 1; overflow: hidden; background: var(--cream); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; font-weight: 800; color: var(--gold); background: var(--brown); font-family: 'Manrope', sans-serif; }
.team-card__body { padding: 22px 22px 26px; }
.team-card__name { font-size: 1.08rem; margin: 0 0 2px; }
.team-card__role { font-size: 0.84rem; font-weight: 700; color: var(--gold-deep); margin: 0 0 10px; }
.team-card__bio { font-size: 0.92rem; color: var(--muted); margin: 0; }
.team-card__linkedin { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.85rem; font-weight: 700; color: var(--brown); }
.team-card__linkedin:hover { color: var(--gold); }
.team-cta { padding: 12px 0 100px; }
.team-cta .nox-container { background: var(--gradient-dark); border-radius: var(--radius-xl); padding: 48px 44px; }

.founder-spotlight-section { padding-top: 8px; }
.founder-spotlight { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 56px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-md); }
.founder-spotlight + .founder-spotlight { margin-top: 28px; }
.founder-spotlight__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; position: relative; }
.founder-spotlight__image::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 3px var(--gold-wash); pointer-events: none; }
.founder-spotlight__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-spotlight__photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; font-weight: 800; color: var(--gold); background: var(--brown); font-family: 'Manrope', sans-serif; }
.founder-spotlight__name { font-size: 1.9rem; margin: 0 0 4px; }
.founder-spotlight__role { font-size: 0.98rem; font-weight: 700; color: var(--gold-deep); margin: 0 0 16px; }
.founder-spotlight__bio { font-size: 1.02rem; color: var(--muted); line-height: 1.7; margin: 0; }
.founder-spotlight__linkedin { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 0.9rem; font-weight: 700; color: var(--brown); }
.founder-spotlight__linkedin:hover { color: var(--gold); }
@media (max-width: 860px) {
	.founder-spotlight { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
	.founder-spotlight__image { aspect-ratio: 16/10; max-width: 320px; margin: 0 auto; }
}
.team-cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.team-cta h2 { color: #fff; }
.team-cta p { color: rgba(255,255,255,0.72); }
@media (max-width: 640px) { .team-cta .nox-container { padding: 34px 24px; border-radius: var(--radius-lg); } }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-page-wrap { padding: 60px 0 100px; }
.nox-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 44px; box-shadow: var(--shadow-md); max-width: 720px; margin: 0 auto; }
.nox-field { margin-bottom: 20px; }
.nox-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.nox-field-row--3 { grid-template-columns: repeat(3, 1fr); }
.nox-field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 7px; color: var(--brown); }
.nox-field input[type=text], .nox-field input[type=email], .nox-field input[type=tel], .nox-field input[type=number],
.nox-field input[type=date], .nox-field input[type=time], .nox-field select, .nox-field textarea, .nox-field input[type=file] {
	width: 100%; padding: 13px 16px; border: 1.5px solid var(--line-strong); border-radius: 12px; font-size: 0.96rem; font-family: inherit;
	background: var(--paper); transition: border-color 0.2s ease, background 0.2s ease;
}
.nox-field input:focus, .nox-field select:focus, .nox-field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.nox-field textarea { min-height: 100px; resize: vertical; }
.nox-field-help { font-size: 0.82rem; color: var(--muted); margin: -2px 0 8px; }
.nox-field .req { color: #c0392b; }
.nox-field--checkbox label { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; font-size: 0.92rem; color: var(--ink-soft); }
.nox-field--checkbox input { margin-top: 3px; accent-color: var(--gold); width: 17px; height: 17px; }
.nox-field.has-error input, .nox-field.has-error select, .nox-field.has-error textarea { border-color: #c0392b; }
.nox-field-error { color: #c0392b; font-size: 0.82rem; margin: 6px 0 0; }
.nox-form-error { background: #fdecea; color: #c0392b; padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 0.92rem; }
.nox-form-success { background: #eaf6ec; color: #1e5c2e; padding: 20px 24px; border-radius: 16px; text-align: center; font-weight: 600; }
@media (max-width: 620px) { .nox-field-row, .nox-field-row--3 { grid-template-columns: 1fr; } .nox-form-card { padding: 28px 22px; } }

.contact-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; max-width: 1040px; margin: 0 auto; }
.contact-panel__form { margin: 0; }
.contact-panel__info h2 { margin-bottom: 18px; }
.contact-panel__list { display: grid; gap: 12px; margin-bottom: 36px; }
.contact-panel__list a { font-weight: 600; }
.contact-panel__list a:hover { color: var(--gold-deep); }
.contact-panel__urgent { background: var(--cream); border-radius: var(--radius); padding: 26px; }
.contact-panel__urgent h3 { margin-bottom: 8px; }
@media (max-width: 860px) { .contact-panel__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Misc
   ========================================================================== */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 40; transition: transform 0.25s ease; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }

.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60; background: var(--ink); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.cookie-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 26px; flex-wrap: wrap; }
.cookie-banner__text { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); flex: 1; min-width: 240px; }
.cookie-banner__text a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__btn { padding: 10px 20px; font-size: 0.85rem; }

.site-footer { background: var(--gradient-dark); color: #fff; padding: 80px 0 0; margin-top: 40px; }
.site-footer p { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.footer-col__title { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer-tagline { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 14px 0 0; max-width: 260px; }
.footer-nav, .footer-contact { display: grid; gap: 11px; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,0.88); font-size: 0.92rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-light); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); padding: 22px 0; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: #fff; }
.site-footer__bottom-inner a { color: #fff; text-decoration: underline; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
