/* ============ UNFOLD MEDIA — Plain CSS ============ */
:root {
	--background: #0a0a0a;
	--foreground: #f5f3ee;
	--card: #121212;
	--secondary: #1a1a1a;
	--gold: #d4af37;
	--gold-light: #ecc878;
	--gold-dark: #836123;
	--muted: #a39a93;
	--muted-dim: #6f6a64;
	--border: #2a2825;
	--border-soft: rgba(42, 40, 37, 0.6);
	--radius: 0.25rem;
	--maxw: 80rem;
	--font-display: "Syne", sans-serif;
	--font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
	font-family: var(--font-body);
	background: var(--background);
	color: var(--foreground);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--background); }

/* ============ Layout ============ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 56rem; }
.center { text-align: center; }

.section { padding: 6rem 0; }
.section-card { background: rgba(18, 18, 18, 0.3); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.grain-overlay { position: relative; }
.grain-overlay::after {
	content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ Typography helpers ============ */
.font-display, h1, h2, h3, .display-xl, .display-lg, .display-md, .page-title, .hero-title, .cta-title, .brand, .tier-name, .case-client, .stat-value, .result-value, .card-num, .trusted-title, .marquee-item, .footer-tagline, .team-avatar, .about-badge p, .tier-badge, .process-title, .engage-title, .value-title, .diff-title, .card-title, .service-row-title, .team-name, .success-title, .card-heading, .footer-heading { font-family: var(--font-display); }

.gold { color: var(--gold); }
.gold-metallic {
	background: linear-gradient(105deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, var(--gold-dark) 100%);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
	font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3em;
	color: var(--gold); display: flex; align-items: center; gap: 0.75rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow-line .line-bar { height: 1px; width: 2.5rem; background: var(--gold); display: inline-block; }

.display-xl { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.display-md { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }

/* ============ Buttons ============ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.875rem 2rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.1em; transition: all 0.3s ease; border: 1px solid transparent; line-height: 1;
}
.btn .icon { width: 1rem; height: 1rem; transition: transform 0.3s ease; }
.btn:hover .icon { transform: translate(0.125rem, -0.125rem); }
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: var(--background); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border-color: var(--border); color: var(--foreground); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.85rem; }
.btn-nav { padding: 0.625rem 1.25rem; }
.btn-nav:hover { background: transparent; color: var(--gold); }

/* ============ Icons ============ */
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-check { width: 1rem; height: 1rem; color: var(--gold); }
.gold { color: var(--gold); }

/* ============ Navbar ============ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s ease; }
.navbar.scrolled { background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-soft); }
.navbar.menu-open { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-soft); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; height: 4rem; padding: 0 1.25rem; display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.18em; }
.brand .dot { color: var(--gold); }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { position: relative; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; color: var(--muted); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--foreground); }
.nav-links a.active { color: var(--foreground); }
.nav-links .underline { position: absolute; left: 0; bottom: -4px; height: 1px; width: 0; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover .underline, .nav-links a.active .underline { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-nav { display: none; }
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border: 1px solid var(--border); transition: all 0.2s ease; }
.menu-toggle:active { transform: scale(0.97); }
.menu-toggle .icon-x { display: none; }
.menu-toggle.open .icon-menu { display: none; }
.menu-toggle.open .icon-x { display: block; }

/* Mobile menu */
.mobile-menu {
	display: grid; grid-template-rows: 0fr; overflow: hidden; opacity: 0; transform: translateY(-0.5rem);
	transition: grid-template-rows 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
	border-top: 1px solid var(--border-soft); background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(12px);
}
.mobile-menu.open { grid-template-rows: 1fr; opacity: 1; transform: translateY(0); }
.mobile-menu-inner { min-height: 0; overflow: hidden; }
.mobile-menu ul { max-width: var(--maxw); margin: 0 auto; padding: 1rem 1.25rem; }
.mobile-menu li a { display: block; padding: 1rem 0; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; border-bottom: 1px solid rgba(42,40,37,0.4); color: var(--foreground); transition: color 0.2s ease; }
.mobile-menu li a:hover, .mobile-menu li a.active { color: var(--gold); }
.mobile-menu .mobile-cta { padding-top: 1rem; border-bottom: none; }
.mobile-menu .mobile-cta a { border: none; padding: 0.875rem 1.25rem; font-size: 0.8rem; letter-spacing: 0.1em; }

/* ============ Pages ============ */
.page { display: none; }
.page.active { display: block; }

/* ============ Hero ============ */
.hero { position: relative; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-visual { position: absolute; inset: 0; pointer-events: none; }
.fold-wrap { position: absolute; right: 3%; top: 50%; transform: translateY(-50%); display: none; perspective: 1200px; }
.fold { position: relative; width: 20rem; height: 28rem; transform-style: preserve-3d; animation: fold-swing 9s ease-in-out infinite; }
.fold-base { position: absolute; inset: 0; border: 1px solid rgba(212,175,55,0.25); background: linear-gradient(to bottom right, var(--card), var(--background)); }
.fold-mid { position: absolute; inset: 0; transform-origin: left; transform: rotateY(-32deg); border: 1px solid rgba(212,175,55,0.4); background: linear-gradient(to bottom right, var(--secondary), var(--background)); }
.fold-gold { position: absolute; inset: 0; transform-origin: left; transform: rotateY(-64deg); background: rgba(212,175,55,0.9); }
.float-square { position: absolute; left: 6%; top: 18%; width: 6rem; height: 6rem; border: 1px solid rgba(212,175,55,0.2); animation: float-slow 7s ease-in-out infinite; }
.hero-line { position: absolute; height: 1px; }
.hero-line-l { bottom: 14%; left: 12%; width: 10rem; background: linear-gradient(to right, rgba(212,175,55,0.6), transparent); }
.hero-line-r { right: 8%; top: 16%; width: 6rem; background: linear-gradient(to left, rgba(212,175,55,0.4), transparent); }

.hero-content { position: relative; padding: 8rem 1.25rem 6rem; max-width: var(--maxw); }
.hero-eyebrow { margin-bottom: 1.5rem; opacity: 0; animation: fade-up 0.6s ease-out 0.1s forwards; }
.hero-title { font-size: clamp(2rem, 8vw, 6rem); font-weight: 800; line-height: 0.92; letter-spacing: -0.02em; max-width: 100%; overflow-wrap: anywhere; word-break: break-word; }
.hero-title .line { display: block; }
.hero-title .word { display: inline-block; overflow: hidden; padding-bottom: 0.08em; vertical-align: bottom; }
.hero-title .word-inner { display: inline-block; transform: translateY(110%); animation: word-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0s) forwards; }
.hero-sub { margin-top: 2rem; max-width: 36rem; font-size: 1rem; line-height: 1.7; color: var(--muted); opacity: 0; animation: fade-up 0.6s ease-out 1s forwards; }
.hero-cta { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; opacity: 0; animation: fade-up 0.6s ease-out 1.15s forwards; }
.hero-loc { margin-top: 3rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); opacity: 0; animation: fade-up 0.8s ease-out 1.4s forwards; }

@keyframes word-up { to { transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(0.75rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes fold-swing { 0%, 100% { transform: rotateY(-18deg); } 50% { transform: rotateY(18deg); } }
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============ Trusted marquee ============ */
.trusted { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: rgba(18,18,18,0.4); padding: 4rem 0 5rem; }
.trusted-title { text-align: center; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.35em; color: var(--muted); }
.marquee-wrap { position: relative; margin-top: 2.5rem; overflow: hidden; }
.marquee-fade { position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 2; pointer-events: none; }
.marquee-fade.left { left: 0; background: linear-gradient(to right, var(--background), transparent); }
.marquee-fade.right { right: 0; background: linear-gradient(to left, var(--background), transparent); }
.marquee { display: flex; width: max-content; }
.marquee-track { display: flex; align-items: center; gap: 4rem; padding-right: 4rem; animation: marquee 32s linear infinite; }
.marquee-item { font-family: var(--font-display); white-space: nowrap; font-size: 1.25rem; font-weight: 700; letter-spacing: 0.2em; color: rgba(163,154,147,0.6); transition: color 0.3s ease; }
.marquee-item:hover { color: var(--gold); }
.trusted-foot { margin: 2.5rem auto 0; max-width: 42rem; text-align: center; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Section heads ============ */
.section-head { margin-bottom: 4rem; }
.section-head.split { display: flex; flex-direction: column; gap: 1.5rem; }
.section-head.narrow { max-width: 42rem; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head-aside { max-width: 24rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.section-sub { margin: 1.5rem auto 0; max-width: 36rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--foreground); transition: color 0.2s ease; }
.link-arrow:hover { color: var(--gold); }
.link-arrow .icon { transition: transform 0.3s ease; }
.link-arrow:hover .icon { transform: translate(0.125rem, -0.125rem); }

/* ============ Services grid ============ */
.grid-services { display: grid; grid-template-columns: 1fr; gap: 1px; border: 1px solid var(--border-soft); background: var(--border-soft); }
.service-card { position: relative; display: flex; flex-direction: column; background: var(--background); padding: 2rem; transition: background 0.3s ease; }
.service-card:hover { background: var(--card); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2rem; }
.card-top .icon-lg { color: var(--gold); transition: transform 0.3s ease; }
.service-card:hover .card-top .icon-lg { transform: translateY(-4px); }
.card-num { font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: rgba(111,106,100,0.7); }
.card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; transition: color 0.3s ease; }
.service-card:hover .card-title { color: var(--gold); }
.card-text { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.icon-arrow { margin-top: auto; padding-top: 1rem; color: var(--gold); opacity: 0; transition: all 0.3s ease; }
.service-card:hover .icon-arrow { opacity: 1; transform: translateX(4px); }
.card-bottom-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width 0.5s ease; }
.service-card:hover .card-bottom-bar { width: 100%; }

/* ============ Case studies ============ */
.case-list { display: flex; flex-direction: column; gap: 5rem; }
.case { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.case-media { position: relative; overflow: hidden; border: 1px solid var(--border-soft); }
.case-media img { aspect-ratio: 4/3; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.case:hover .case-media img { transform: scale(1.04); }
.case-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.6), transparent); opacity: 0.6; transition: opacity 0.5s ease; }
.case:hover .case-overlay { opacity: 0.3; }
.case-industry { margin-bottom: 0.5rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); }
.case-client { font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; }
.case-meta { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; line-height: 1.7; }
.case-meta dt { margin-bottom: 0.25rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.case-meta dd { color: rgba(245,243,238,0.85); }
.case-results { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-soft); display: flex; gap: 2.5rem; }
.result-value { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--gold); }
.result-label { margin-top: 0.25rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-media-wrap { position: relative; }
.about-media { overflow: hidden; border: 1px solid var(--border-soft); }
.about-media img { aspect-ratio: 3/2; width: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -1.5rem; right: -1rem; border: 1px solid rgba(212,175,55,0.4); background: var(--background); padding: 1rem 1.5rem; }
.about-badge p { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }
.lead { margin: 1.5rem 0 2.5rem; max-width: 32rem; font-size: 0.9rem; line-height: 1.7; color: var(--muted); }
.story-text { display: flex; flex-direction: column; gap: 1rem; font-size: 0.9rem; line-height: 1.7; color: var(--muted); }

.diff-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.diff { border-left: 2px solid var(--border); padding-left: 1.25rem; transition: border-color 0.3s ease; }
.diff:hover { border-color: var(--gold); }
.diff .icon-md { margin-bottom: 0.75rem; color: var(--gold); }
.diff-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; }
.diff-text { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ============ Stats ============ */
.stats-grid { margin-top: 5rem; display: grid; grid-template-columns: 1fr; gap: 1px; border: 1px solid var(--border-soft); background: var(--border-soft); }
.stat { background: var(--background); padding: 2.5rem 2rem; text-align: center; }
.stat-value { font-size: 2.25rem; font-weight: 700; }
.stat-label { margin-top: 0.5rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); }

/* ============ Pricing ============ */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.tier { position: relative; display: flex; flex-direction: column; border: 1px solid var(--border-soft); background: var(--background); padding: 2rem; transition: all 0.3s ease; }
.tier:not(.tier-featured):hover { background: rgba(18,18,18,0.6); }
.tier-featured { background: var(--card); box-shadow: 0 0 60px rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.6); }
.tier-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--gold); color: var(--background); padding: 0.25rem 1rem; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }
.tier-name { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; }
.tier-tagline { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.tier-price { margin-top: 2rem; font-size: 2.25rem; font-weight: 700; }
.tier-period { font-size: 1rem; font-weight: 500; color: var(--muted); }
.tier-features { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 0.875rem; }
.tier-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(245,243,238,0.85); }
.tier-features .icon-check { margin-top: 0.125rem; }
.tier .btn { margin-top: 2.5rem; }

/* ============ CTA ============ */
.cta-section { position: relative; overflow: hidden; padding: 7rem 0; }
.cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 50% 110%, hsla(43, 74%, 49%, 0.12), transparent 70%); }
.cta-inner { position: relative; max-width: 64rem; text-align: center; }
.cta-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }
.cta-sub { margin: 2rem auto 0; max-width: 36rem; font-size: 1rem; line-height: 1.7; color: var(--muted); }
.cta-action { margin-top: 3rem; }
.cta-contacts { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border-soft); display: flex; flex-direction: column; align-items: center; gap: 1.5rem; font-size: 0.875rem; color: var(--muted); }
.cta-contacts a, .cta-contacts span { display: flex; align-items: center; gap: 0.625rem; transition: color 0.2s ease; }
.cta-contacts a:hover { color: var(--gold); }
.cta-contacts .icon { color: var(--gold); }
.cta-section .cta-inner > .reveal .btn { margin-top: 2.5rem; }

/* ============ Page header ============ */
.page-header { position: relative; overflow: hidden; border-bottom: 1px solid var(--border-soft); padding: 8rem 0 4rem; }
.page-header-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 60% at 80% 10%, hsla(43, 74%, 49%, 0.10), transparent 70%); }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); transition: color 0.2s ease; }
.back-link:hover { color: var(--gold); }
.back-link .icon { transition: transform 0.3s ease; }
.back-link:hover .icon { transform: translateX(-4px); }
.page-header .eyebrow { margin-bottom: 1.25rem; }
.page-title { font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; max-width: 48rem; }
.page-subtitle { margin-top: 1.75rem; max-width: 36rem; font-size: 1rem; line-height: 1.7; color: var(--muted); }

/* ============ Services list (page) ============ */
.services-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border-soft); background: var(--border-soft); }
.service-row { display: grid; grid-template-columns: 1fr; gap: 2rem; background: var(--background); padding: 2rem; transition: background 0.3s ease; }
.service-row:hover { background: var(--card); }
.service-row-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.service-row-top .icon-lg { color: var(--gold); }
.service-row-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; transition: color 0.3s ease; }
.service-row:hover .service-row-title { color: var(--gold); }
.service-row-text { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.deliverables-label { margin-bottom: 1.25rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.deliverables { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.deliverables li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(245,243,238,0.85); }
.deliverables .icon-check { margin-top: 0.125rem; }

/* ============ Engagement ============ */
.engagement-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.engage-card { display: flex; flex-direction: column; border: 1px solid var(--border-soft); background: var(--background); padding: 2rem; transition: border-color 0.3s ease; }
.engage-card:hover { border-color: rgba(212,175,55,0.5); }
.engage-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.engage-text { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.engage-foot { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border-soft); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem; }
.engage-foot p { font-size: 0.875rem; color: var(--muted); }

/* ============ Process ============ */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1px; border: 1px solid var(--border-soft); background: var(--border-soft); }
.process-card { display: flex; flex-direction: column; background: var(--background); padding: 2rem; transition: background 0.3s ease; }
.process-card:hover { background: var(--card); }
.process-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 2rem; }
.process-top .icon-lg { color: var(--gold); }
.process-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.process-text { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ============ Values ============ */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1px; border: 1px solid var(--border-soft); background: var(--border-soft); }
.value-card { display: flex; flex-direction: column; background: var(--background); padding: 2rem; transition: background 0.3s ease; }
.value-card:hover { background: var(--card); }
.value-card .icon-md { margin-bottom: 1.25rem; color: var(--gold); }
.value-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-text { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ============ Team ============ */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.team-card { display: flex; flex-direction: column; border: 1px solid var(--border-soft); background: var(--background); padding: 1.75rem; transition: border-color 0.3s ease; }
.team-card:hover { border-color: rgba(212,175,55,0.5); }
.team-avatar { display: flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; margin-bottom: 1.5rem; border: 1px solid rgba(212,175,55,0.4); background: var(--card); font-size: 1.25rem; font-weight: 700; color: var(--gold); }
.team-name { font-size: 1.1rem; font-weight: 700; }
.team-role { margin-top: 0.25rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.team-bio { margin-top: 1rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ============ FAQ ============ */
.faq-list { margin-top: 3rem; border-top: 1px solid var(--border-soft); }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; }
.faq-q span:first-child { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.faq-icon { flex-shrink: 0; color: var(--gold); position: relative; width: 1.25rem; height: 1.25rem; }
.faq-icon .icon { position: absolute; inset: 0; transition: opacity 0.3s ease; }
.faq-q[aria-expanded="true"] .icon-plus { opacity: 0; }
.faq-q[aria-expanded="false"] .icon-minus { opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows 0.3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { min-height: 0; overflow: hidden; }
.faq-a-inner p { padding-bottom: 1.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ============ Contact ============ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-form-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.field input, .field select, .field textarea {
	width: 100%; border: 1px solid var(--border); background: var(--background); padding: 0.75rem 1rem;
	font-size: 0.875rem; color: var(--foreground); font-family: inherit; transition: border-color 0.2s ease; border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(163,154,147,0.6); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; }
.contact-form .btn { margin-top: 0.5rem; align-self: flex-start; }

.form-success { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; border: 1px solid rgba(212,175,55,0.4); background: var(--card); padding: 2rem; }
.success-icon { display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; background: var(--gold); color: var(--background); }
.success-title { font-size: 1.25rem; font-weight: 700; }
.success-text { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.link-gold { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); transition: color 0.2s ease; margin-top: 0.5rem; }
.link-gold:hover { color: var(--gold-light); }

.contact-aside { }
.contact-card { display: flex; flex-direction: column; gap: 2rem; border: 1px solid var(--border-soft); background: rgba(18,18,18,0.4); padding: 2rem; }
.card-heading { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 1.25rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.875rem; color: var(--muted); }
.contact-list a, .contact-list .no-link { display: flex; align-items: flex-start; gap: 1rem; transition: color 0.2s ease; }
.contact-list a:hover { color: var(--gold); }
.contact-list .icon { margin-top: 0.125rem; }
.contact-list-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(163,154,147,0.7); }
.contact-hours { border-top: 1px solid var(--border-soft); padding-top: 1.5rem; }
.contact-hours p { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ============ Footer ============ */
.footer { border-top: 1px solid var(--border-soft); background: rgba(18,18,18,0.4); }
.footer-inner { padding: 4rem 1.25rem 5rem; max-width: var(--maxw); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.footer-tagline { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }
.footer-desc { margin-top: 1rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.footer-socials { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border: 1px solid var(--border); color: var(--muted); transition: all 0.3s ease; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { margin-bottom: 1.25rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: var(--muted); }
.footer-contact-list a, .footer-contact-list .no-link { display: flex; align-items: flex-start; gap: 0.75rem; transition: color 0.2s ease; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list .icon { margin-top: 0.125rem; }
.footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.75rem; color: var(--muted); }
.footer-loc { text-transform: uppercase; letter-spacing: 0.2em; }

/* ============ WhatsApp float ============ */
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 9999px; border: 1px solid rgba(212,175,55,0.4); background: rgba(10,10,10,0.9); backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0,0,0,0.5); transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.05); border-color: var(--gold); background: var(--gold); }
.whatsapp-float:active { transform: scale(0.95); }
.whatsapp-float .icon { color: var(--gold); transition: color 0.3s ease; }
.whatsapp-float:hover .icon { color: var(--background); }
.whatsapp-label { position: absolute; right: 100%; margin-right: 0.75rem; white-space: nowrap; border: 1px solid var(--border); background: var(--card); padding: 0.375rem 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--foreground); opacity: 0; transition: opacity 0.3s ease; display: none; }
.whatsapp-float:hover .whatsapp-label { opacity: 1; }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (min-width: 640px) {
	.form-row { grid-template-columns: 1fr 1fr; }
	.deliverables { grid-template-columns: 1fr 1fr; }
	.hero-cta { flex-direction: row; align-items: center; }
	.cta-contacts { flex-direction: row; gap: 3rem; }
	.engage-foot { flex-direction: row; }
	.stats-grid { grid-template-columns: repeat(3, 1fr); }
	.stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.diff-grid { grid-template-columns: 1fr 1fr; }
	.values-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 5fr 3fr 4fr; }
	.footer-bottom { flex-direction: row; }
	.float-square { width: 8rem; height: 8rem; }
}

@media (min-width: 768px) {
	.container { padding: 0 2rem; }
	.section { padding: 8rem 0; }
	.hero-content { padding: 9rem 2rem 6rem; }
	.page-header { padding: 11rem 0 6rem; }
	.grid-services { grid-template-columns: 1fr 1fr; }
	.case { grid-template-columns: repeat(12, 1fr); gap: 3rem; }
	.case-media { grid-column: span 7; }
	.case-body { grid-column: span 5; }
	.case-reverse .case-media { order: 2; }
	.case-reverse .case-body { order: 1; }
	.case-client { font-size: 2.25rem; }
	.about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
	.about-badge { right: -2rem; }
	.pricing-grid { grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid var(--border-soft); }
	.pricing-grid .tier { border: none; }
	.pricing-grid .tier:not(:first-child) { border-left: 1px solid var(--border-soft); }
	.pricing-grid .tier-featured { border: 1px solid rgba(212,175,55,0.6); margin: -1.5rem 0; padding: 4rem 2.5rem; z-index: 1; }
	.pricing-grid-page .tier-featured { margin: -1.5rem 0; }
	.engagement-grid { grid-template-columns: repeat(3, 1fr); }
	.process-grid { grid-template-columns: 1fr 1fr; }
	.team-grid { grid-template-columns: 1fr 1fr; }
	.service-row { grid-template-columns: 5fr 7fr; gap: 3rem; padding: 3rem; }
	.contact-grid { grid-template-columns: 7fr 5fr; gap: 4rem; }
	.case-list { gap: 7rem; }
	.section-head.split { flex-direction: row; align-items: flex-end; justify-content: space-between; }
	.result-value { font-size: 2.25rem; }
	.stat-value { font-size: 3rem; }
	.tier-price { font-size: 3rem; }
}

@media (min-width: 1024px) {
	.nav-links { display: flex; }
	.btn-nav { display: inline-flex; }
	.menu-toggle { display: none; }
	.grid-services { grid-template-columns: repeat(3, 1fr); }
	.process-grid { grid-template-columns: repeat(4, 1fr); }
	.team-grid { grid-template-columns: repeat(4, 1fr); }
	.stats-grid-4 { grid-template-columns: repeat(4, 1fr); }
	.whatsapp-label { display: block; }
}

@media (min-width: 1280px) {
	.fold-wrap { display: block; }
	.nav-inner { height: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
	.reveal { opacity: 1; transform: none; }
	.hero-title .word-inner { transform: none; }
	.hero-eyebrow, .hero-sub, .hero-cta, .hero-loc { opacity: 1; }
}
