/* ==========================================================================
   AdTrendo — Nixtio-inspired design system
   ========================================================================== */

:root {
	--bg: #160703;
	--bg-elevated: #220d06;
	--bg-card: rgba(255, 170, 110, 0.05);
	--bg-card-hover: rgba(255, 170, 110, 0.09);
	--border: rgba(255, 170, 110, 0.11);
	--border-strong: rgba(255, 170, 110, 0.2);
	--fg: #fcf8f1;
	--fg-muted: #aba397;
	--fg-faint: #786d60;
	--accent: #ff6800;
	--accent-2: #fec600;
	--accent-soft: rgba(255, 104, 0, 0.15);
	--whatsapp: #25d366;
	--radius-pill: 999px;
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 10px;
	--container: 1240px;
	--font-display: 'Space Grotesk', 'Inter', sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.05;
	margin: 0;
	letter-spacing: -0.02em;
}

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent-2);
	margin-bottom: 18px;
}

.section {
	padding: 120px 0;
	position: relative;
}
.section--tight { padding: 80px 0; }

.section-head {
	max-width: 640px;
	margin-bottom: 64px;
}
.section-head h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; }
.section-head p { color: var(--fg-muted); font-size: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
	white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.btn--outline { border-color: var(--border-strong); color: var(--fg); background: transparent; }
.btn--outline:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn--whatsapp { background: var(--whatsapp); color: #06210f; }
.btn--whatsapp:hover { background: #2fe07a; transform: translateY(-2px); }
.btn--sm { padding: 12px 22px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	padding: 22px 0;
	transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	background: rgba(8, 8, 10, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 14px 0;
	border-color: var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--fg); }
.brand svg { flex-shrink: 0; }

.primary-nav { display: flex; align-items: center; gap: 40px; }
.primary-nav ul { display: flex; gap: 36px; }
.primary-nav a { font-size: 15px; font-weight: 500; color: var(--fg-muted); transition: color .25s var(--ease); }
.primary-nav a:hover, .primary-nav a.is-active { color: var(--fg); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
	display: none;
	width: 46px; height: 46px;
	border-radius: 50%;
	border: 1px solid var(--border-strong);
	background: transparent;
	align-items: center; justify-content: center;
	flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--fg); display: block; transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
	position: fixed; inset: 0;
	background: var(--bg);
	z-index: 999;
	display: flex; flex-direction: column;
	justify-content: center;
	padding: 32px;
	transform: translateY(-100%);
	transition: transform .45s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; }
.mobile-nav a { font-family: var(--font-display); font-size: 34px; font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: 160px 0 90px;
	background: #100503;
}
.hero-bg {
	position: absolute; inset: 0;
	z-index: 0;
}
.hero-bg canvas { width: 100%; height: 100%; display: block; }
.hero-bg::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(22,7,3,0.15) 0%, rgba(22,7,3,0.55) 55%, rgba(22,7,3,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 28px; color: var(--fg-muted); font-size: 15px; }
.hero-meta strong { color: var(--fg); font-weight: 600; }

.hero h1 {
	font-size: clamp(44px, 8vw, 108px);
	color: #fff;
	margin-bottom: 28px;
	max-width: 16ch;
}
.hero-sub { color: rgba(255,255,255,0.72); font-size: clamp(17px, 2vw, 20px); max-width: 46ch; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note { color: var(--fg-faint); font-size: 14px; }

/* ---------- Why choose / stat cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 36px;
	transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.card:hover { background: var(--bg-card-hover); border-color: var(--border-strong); transform: translateY(-4px); }
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--fg-muted); margin: 0; font-size: 15.5px; }

/* ---------- Numbered services ---------- */
.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 40px 36px;
	position: relative;
	transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.service-card:hover { background: var(--bg-card-hover); border-color: var(--accent); transform: translateY(-6px); }
.service-num {
	font-family: var(--font-display);
	font-size: 15px;
	color: var(--accent-2);
	font-weight: 600;
	letter-spacing: 0.08em;
	margin-bottom: 22px;
	display: block;
}
.service-card h3 { font-size: 24px; margin-bottom: 14px; }
.service-card p { color: var(--fg-muted); margin-bottom: 22px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--fg); }
.service-features li::before {
	content: '✓';
	color: var(--accent-2);
	font-weight: 700;
}
.service-card .btn { width: 100%; }

/* ---------- Stats bar ---------- */
.stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 48px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 700; color: #fff; }
.stat .label { color: var(--fg-muted); font-size: 14px; margin-top: 6px; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { padding: 8px 0; border-top: 1px solid var(--border); padding-top: 28px; }
.process-step .service-num { color: var(--fg-faint); }
.process-step h3 { font-size: 20px; margin-bottom: 10px; }
.process-step p { color: var(--fg-muted); font-size: 14.5px; margin: 0; }

/* ---------- Results ---------- */
.result-card { text-align: left; }
.result-card .stat-big { font-family: var(--font-display); font-size: 40px; color: var(--accent-2); margin-bottom: 14px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 36px; }
.stars { color: #ffb340; letter-spacing: 3px; margin-bottom: 18px; font-size: 15px; }
.testimonial-card p.quote { font-size: 15.5px; color: var(--fg); margin-bottom: 24px; }
.testimonial-card .author { font-weight: 600; color: var(--fg-muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	padding: 26px 0;
	background: none; border: none; color: var(--fg);
	font-size: 18px; font-weight: 600; text-align: left;
	font-family: var(--font-display);
}
.faq-q .icon { font-size: 22px; color: var(--accent-2); transition: transform .3s var(--ease); flex-shrink: 0; margin-left: 20px; }
.faq-item.is-open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s var(--ease), padding .35s var(--ease);
	color: var(--fg-muted);
	font-size: 15.5px;
}
.faq-item.is-open .faq-a { padding-bottom: 26px; }

/* ---------- CTA band ---------- */
.cta-band {
	background: linear-gradient(135deg, var(--accent) 0%, #b8320a 100%);
	border-radius: var(--radius-lg);
	padding: 72px 56px;
	text-align: center;
	color: #fff;
}
.cta-band h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 34px; font-size: 17px; }
.cta-band .btn--outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-band .btn--outline:hover { border-color: #fff; }
.cta-band .btn--primary { background: #fff; color: var(--accent); }
.cta-band .btn--primary:hover { background: #ffe9d6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: var(--fg-muted); margin: 18px 0 24px; max-width: 34ch; font-size: 14.5px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-faint); margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--fg-muted); font-size: 14.5px; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--fg); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--accent-2); color: var(--accent-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); color: var(--fg-faint); font-size: 13.5px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--fg-faint); }
.footer-bottom a:hover { color: var(--fg-muted); }
.footer-cookie-link { background: none; border: none; color: var(--fg-faint); font-size: 13.5px; padding: 0; text-decoration: underline; text-underline-offset: 2px; }
.footer-cookie-link:hover { color: var(--fg-muted); }

/* ---------- Reveal-on-scroll ----------
   Architecture note: every "hidden state" selector below is scoped with
   :not(.is-visible), so once that class is added the selector simply stops
   matching — the element falls through to the plain `.reveal.is-visible`
   rule with no cascade contest at all (avoids relying on !important /
   specificity ordering between the positional variants and the reveal). */
.reveal:not(.is-visible) {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* Section headings: a touch more travel for hierarchy */
.section-head.reveal:not(.is-visible) { transform: translateY(40px); }

/* Card grids fan out: first column slides in from the left, last from the
   right, middle column fades straight up — reads as a gentle "unfolding". */
.grid-3 > .reveal:not(.is-visible):nth-child(3n+1),
.pricing-grid > .reveal:not(.is-visible):nth-child(3n+1) { transform: translate3d(-44px, 18px, 0); }
.grid-3 > .reveal:not(.is-visible):nth-child(3n+3),
.pricing-grid > .reveal:not(.is-visible):nth-child(3n+3) { transform: translate3d(44px, 18px, 0); }

.grid-4 > .reveal:not(.is-visible):nth-child(4n+1),
.values-grid > .reveal:not(.is-visible):nth-child(4n+1),
.team-grid > .reveal:not(.is-visible):nth-child(4n+1),
.ala-carte-grid > .reveal:not(.is-visible):nth-child(4n+1) { transform: translate3d(-40px, 18px, 0); }
.grid-4 > .reveal:not(.is-visible):nth-child(4n),
.values-grid > .reveal:not(.is-visible):nth-child(4n),
.team-grid > .reveal:not(.is-visible):nth-child(4n),
.ala-carte-grid > .reveal:not(.is-visible):nth-child(4n) { transform: translate3d(40px, 18px, 0); }

/* Process steps zigzag left/right to suggest a sequence */
.process-grid > .reveal:not(.is-visible):nth-child(odd) { transform: translate3d(-48px, 0, 0); }
.process-grid > .reveal:not(.is-visible):nth-child(even) { transform: translate3d(48px, 0, 0); }

/* Testimonials, result cards and stat rows pop in with a scale */
.testimonial-card.reveal:not(.is-visible),
.result-card.reveal:not(.is-visible),
.stats-bar.reveal:not(.is-visible),
.team-card.reveal:not(.is-visible) { transform: scale3d(0.88, 0.88, 1); }

/* CTA bands get a slightly slower, weightier pop for emphasis */
.cta-band.reveal:not(.is-visible) { transform: scale3d(0.95, 0.95, 1) translateY(20px); }
.cta-band.reveal { transition-duration: 1s; }

/* FAQ items slide up in a tighter sequence */
.faq-list.reveal:not(.is-visible) { transform: translateY(24px); }

@media (prefers-reduced-motion: reduce) {
	.reveal, .section-head.reveal, .cta-band.reveal { transition-duration: .01ms !important; transform: none !important; }
}

/* ---------- Pricing ---------- */
.pricing-hero { text-align: center; padding-top: 180px; }
.pricing-hero .eyebrow { justify-content: center; width: 100%; }
.pricing-hero h1 { font-size: clamp(36px, 6vw, 64px); margin: 0 auto 20px; max-width: 18ch; }
.pricing-hero p { color: var(--fg-muted); max-width: 56ch; margin: 0 auto 40px; font-size: 18px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 40px 32px;
	display: flex; flex-direction: column;
	position: relative;
}
.pricing-card.is-popular { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--bg-card) 40%); }
.pricing-badge {
	position: absolute; top: -14px; left: 32px;
	background: var(--accent);
	color: #fff;
	font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
	padding: 6px 16px; border-radius: var(--radius-pill);
}
.pricing-badge.gold { background: #b8860b; }
.pricing-card h3 { font-size: 24px; margin-bottom: 8px; }
.pricing-card .sub { color: var(--fg-muted); font-size: 14px; margin-bottom: 24px; }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.pricing-price .currency { font-size: 20px; color: var(--fg-muted); }
.pricing-price .amount { font-family: var(--font-display); font-size: 44px; font-weight: 700; }
.pricing-price .period { color: var(--fg-muted); font-size: 14px; }
.pricing-note { color: var(--fg-faint); font-size: 13px; margin-bottom: 28px; min-height: 34px; }
.pricing-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; flex-grow: 1; }
.pricing-features li { display: flex; gap: 10px; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: var(--accent-2); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.pricing-features .f-title { font-size: 14.5px; font-weight: 600; display: block; }
.pricing-features .f-text { font-size: 13px; color: var(--fg-muted); display: block; margin-top: 2px; }

.ala-carte-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ala-carte-card h3 { font-size: 18px; margin-bottom: 20px; }
.ala-carte-card .service-features li::before { content: '•'; color: var(--accent-2); }
.ala-carte-card li { padding-bottom: 14px; }
.ala-carte-card li:last-child { padding-bottom: 0; }

.commitments-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.commitments-strip span { border: 1px solid var(--border-strong); border-radius: var(--radius-pill); padding: 10px 22px; font-size: 14px; color: var(--fg-muted); }

/* ---------- About page ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 36px 24px; }
.team-avatar {
	width: 84px; height: 84px; border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff;
	margin: 0 auto 18px;
}
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { color: var(--fg-muted); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info-item .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .label { color: var(--fg-faint); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-item .value { font-size: 16px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13.5px; color: var(--fg-muted); }
.field input, .field textarea, .field select {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	color: var(--fg);
	font-size: 15px;
	transition: border-color .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 110px; }
.form-notice { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 14.5px; }
.form-notice.success { background: rgba(37, 211, 102, 0.12); border: 1px solid rgba(37, 211, 102, 0.4); color: #6de3a4; }
.form-notice.error { background: rgba(240, 74, 74, 0.12); border: 1px solid rgba(240, 74, 74, 0.4); color: #f28b8b; }

/* honeypot field, hidden from real users */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Generic content page (policies) ---------- */
.legal-content { max-width: 780px; margin: 0 auto; padding: 180px 32px 0; }
.legal-content h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 12px; }
.legal-content .updated { color: var(--fg-faint); font-size: 14px; margin-bottom: 48px; }
.legal-content h2 { font-size: 22px; margin: 44px 0 16px; }
.legal-content p, .legal-content li { color: var(--fg-muted); font-size: 15.5px; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--accent-2); text-decoration: underline; }

/* ==========================================================================
   WooCommerce
   ========================================================================== */
.woocommerce-page-wrap { color: var(--fg); }
.woocommerce-page-wrap h1.entry-title, .woocommerce-page-wrap h1.page-title {
	font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); margin-bottom: 40px;
}
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; padding: 0; }
.woocommerce ul.products li.product {
	background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md);
	padding: 28px; transition: transform .3s var(--ease), border-color .3s var(--ease);
	position: relative;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.woocommerce ul.products li.product a { text-decoration: none; }
.woocommerce ul.products li.product img { border-radius: var(--radius-sm); margin-bottom: 18px; background: var(--bg-elevated); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); font-size: 18px; color: var(--fg); margin: 10px 0 8px; }
.woocommerce ul.products li.product .price { color: var(--accent-2); font-weight: 600; font-size: 16px; }
.woocommerce ul.products li.product .price del { color: var(--fg-faint); font-weight: 400; margin-right: 8px; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce-page a.button {
	display: inline-flex; align-items: center; justify-content: center; margin-top: 16px;
	background: var(--accent); color: #fff; border: none; border-radius: var(--radius-pill);
	padding: 12px 24px; font-size: 14px; font-weight: 600; transition: background .3s var(--ease), transform .3s var(--ease);
}
.woocommerce ul.products li.product .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce #respond input#submit:hover { background: var(--accent-2); transform: translateY(-2px); color: #fff; }
.woocommerce span.onsale {
	background: var(--whatsapp); color: #06210f; border-radius: var(--radius-pill);
	font-weight: 700; font-size: 12px; padding: 4px 12px; min-height: auto; min-width: auto;
	position: absolute; top: 20px; left: 20px; line-height: 1.6;
}

/* Single product */
.woocommerce div.product { position: relative; }
.woocommerce div.product div.images { position: relative; }
.woocommerce div.product .summary { max-width: 100%; }
.woocommerce div.product div.images img { border-radius: var(--radius-md); background: var(--bg-card); }
.woocommerce div.product .product_title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); margin-bottom: 12px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--accent-2); font-size: 24px; font-weight: 700; margin-bottom: 20px; display: block; }
.woocommerce div.product p.price del { color: var(--fg-faint); font-size: 16px; font-weight: 400; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--fg-muted); margin-bottom: 24px; }
.woocommerce div.product form.cart { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.woocommerce div.product .quantity input.qty {
	background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
	color: var(--fg); padding: 12px; width: 70px; text-align: center;
}
.woocommerce table.variations { margin-bottom: 20px; width: 100%; }
.woocommerce table.variations td { padding: 8px 0; }
.woocommerce table.variations select {
	background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
	color: var(--fg); padding: 10px 14px; width: 100%;
}
.woocommerce div.product .woocommerce-tabs { margin-top: 60px; border-top: 1px solid var(--border); padding-top: 32px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { display: flex; gap: 28px; list-style: none; padding: 0; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { padding-bottom: 14px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--fg-muted); font-weight: 600; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--fg); }
.woocommerce div.product .woocommerce-tabs .panel { color: var(--fg-muted); }
.woocommerce div.product .woocommerce-tabs .panel h2, .woocommerce div.product .woocommerce-tabs .panel h3 { color: var(--fg); font-family: var(--font-display); margin: 20px 0 10px; }
.woocommerce div.product .related.products { margin-top: 60px; border-top: 1px solid var(--border); padding-top: 40px; }
.woocommerce div.product .related.products > h2 { font-family: var(--font-display); font-size: 24px; margin-bottom: 24px; }

/* Cart / Checkout */
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 16px; border-bottom: 1px solid var(--border); text-align: left; color: var(--fg); }
.woocommerce table.shop_table th { color: var(--fg-muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.woocommerce #content table.cart img { border-radius: var(--radius-sm); }
.woocommerce .cart-collaterals .cart_totals { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-checkout select {
	background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
	color: var(--fg); padding: 12px 14px; width: 100%;
}
.woocommerce-checkout #payment { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.woocommerce-checkout #payment div.payment_box { background: var(--bg-elevated); color: var(--fg-muted); }
.woocommerce-info, .woocommerce-message, .woocommerce-noreviews, .woocommerce-error {
	background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--accent);
	border-radius: var(--radius-sm); padding: 16px 20px; color: var(--fg); list-style: none; margin-bottom: 24px;
}
.woocommerce-error { border-left-color: #f04a4a; }
.woocommerce-message .button { float: none; margin-left: 16px; }

/* My account */
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.woocommerce-account .woocommerce-MyAccount-navigation a { color: var(--fg-muted); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { color: var(--accent-2); }

@media (max-width: 980px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .woocommerce ul.products { grid-template-columns: 1fr; } .woocommerce div.product form.cart { flex-direction: column; align-items: stretch; } }

/* ---------- 404 ---------- */
.not-found { text-align: center; padding: 220px 0 140px; }
.not-found h1 { font-size: clamp(80px, 14vw, 160px); color: var(--fg-faint); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
	.primary-nav { display: none; }
	.nav-toggle { display: flex; }
	.grid-3, .grid-4, .stats-bar, .process-grid, .testimonial-grid, .pricing-grid, .values-grid, .team-grid, .ala-carte-grid, .field-row { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.container { padding: 0 20px; }
	.section { padding: 80px 0; }
	.grid-3, .grid-4, .stats-bar, .process-grid, .testimonial-grid, .pricing-grid, .values-grid, .team-grid, .ala-carte-grid, .field-row { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.hero { padding-top: 130px; }
	.hero-ctas { flex-direction: column; align-items: stretch; }
	.hero-ctas .btn { width: 100%; }
	.cta-band { padding: 48px 28px; }
	.pricing-hero { padding-top: 140px; }
	.header-actions .btn--primary { display: none; }
	.legal-content { padding: 130px 20px 0; }
}

/* ==========================================================================
   Staggered reveal — direct children of a grid animate in sequence
   ========================================================================== */
.grid-3 > .reveal:nth-child(1), .grid-4 > .reveal:nth-child(1), .process-grid > .reveal:nth-child(1),
.pricing-grid > .reveal:nth-child(1), .values-grid > .reveal:nth-child(1), .team-grid > .reveal:nth-child(1),
.ala-carte-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
.grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2), .process-grid > .reveal:nth-child(2),
.pricing-grid > .reveal:nth-child(2), .values-grid > .reveal:nth-child(2), .team-grid > .reveal:nth-child(2),
.ala-carte-grid > .reveal:nth-child(2) { transition-delay: 90ms; }
.grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3), .process-grid > .reveal:nth-child(3),
.pricing-grid > .reveal:nth-child(3), .values-grid > .reveal:nth-child(3), .team-grid > .reveal:nth-child(3),
.ala-carte-grid > .reveal:nth-child(3) { transition-delay: 180ms; }
.grid-4 > .reveal:nth-child(4), .values-grid > .reveal:nth-child(4), .team-grid > .reveal:nth-child(4),
.ala-carte-grid > .reveal:nth-child(4) { transition-delay: 270ms; }

/* ==========================================================================
   Cursor-follow card glow
   ========================================================================== */
.card, .service-card, .pricing-card, .team-card, .testimonial-card {
	position: relative;
	isolation: isolate;
}
.card::before, .service-card::before, .pricing-card::before, .team-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(254, 198, 0, 0.16), transparent 70%);
	opacity: 0;
	transition: opacity .4s var(--ease);
	pointer-events: none;
	z-index: -1;
}
.card:hover::before, .service-card:hover::before, .pricing-card:hover::before, .team-card:hover::before { opacity: 1; }

/* ==========================================================================
   Hero parallax layers
   ========================================================================== */
.hero-bg { will-change: transform; }
.hero-content > * { will-change: transform; }

/* ==========================================================================
   Testimonial carousel
   ========================================================================== */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
	display: flex;
	transition: transform .6s var(--ease);
}
.testimonial-slide {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 6px;
}
.testimonial-carousel .testimonial-grid { display: grid; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.carousel-dots button {
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--border-strong); border: none; padding: 0;
	transition: background .3s var(--ease), transform .3s var(--ease);
}
.carousel-dots button.is-active { background: var(--accent-2); transform: scale(1.3); }

@media (min-width: 981px) {
	.testimonial-slide { flex-basis: 100%; }
}

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie-banner {
	position: fixed;
	left: 24px; right: 24px; bottom: 24px;
	max-width: 620px;
	margin: 0 auto;
	background: var(--bg-elevated);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	padding: 28px 30px;
	z-index: 1200;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	transform: translateY(140%);
	transition: transform .5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner h3 { font-size: 18px; margin-bottom: 10px; }
.cookie-banner p { color: var(--fg-muted); font-size: 14px; margin: 0 0 20px; }
.cookie-banner p a { color: var(--accent-2); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-modal-overlay {
	position: fixed; inset: 0;
	background: rgba(22,7,3,0.7);
	backdrop-filter: blur(4px);
	z-index: 1300;
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	opacity: 0; pointer-events: none;
	transition: opacity .35s var(--ease);
}
.cookie-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.cookie-modal {
	background: var(--bg-elevated);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	max-width: 520px;
	width: 100%;
	padding: 36px;
	max-height: 86vh;
	overflow-y: auto;
	transform: translateY(20px);
	transition: transform .35s var(--ease);
}
.cookie-modal-overlay.is-open .cookie-modal { transform: translateY(0); }
.cookie-modal h3 { font-size: 22px; margin-bottom: 16px; }
.cookie-category {
	display: flex; justify-content: space-between; align-items: flex-start;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--border);
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category .cc-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.cookie-category .cc-text { color: var(--fg-muted); font-size: 13.5px; }

.switch { position: relative; width: 44px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.switch .track {
	position: absolute; inset: 0;
	background: var(--border-strong);
	border-radius: var(--radius-pill);
	transition: background .3s var(--ease);
}
.switch .track::before {
	content: '';
	position: absolute; top: 3px; left: 3px;
	width: 20px; height: 20px; border-radius: 50%;
	background: #fff;
	transition: transform .3s var(--ease);
}
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::before { transform: translateX(18px); }
.switch input:disabled + .track { opacity: 0.6; }

.cookie-modal-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 640px) {
	.cookie-banner { left: 16px; right: 16px; bottom: 16px; padding: 24px; }
	.cookie-banner-actions { flex-direction: column; }
	.cookie-banner-actions .btn { width: 100%; }
}
