/*
Theme Name: Glytch
Theme URI: https://www.glytch.co.uk
Author: Glytch
Author URI: https://www.glytch.co.uk
Description: A clean, premium WordPress theme for Glytch — gaming, esports, simulator and interactive technology hire for brands and corporate events. Light and dark sections, electric-blue accent, full homepage, SEO service pages, packages, FAQ schema and a built-in quote form. Built for lead generation. No page builder required.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: glytch
Tags: business, two-columns, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-styles
*/

/* =========================================================================
   1. Tokens
   ========================================================================= */
:root {
	/* Surfaces */
	--ink: #0e1116;        /* charcoal near-black */
	--ink-2: #161b24;      /* raised dark */
	--ink-3: #1e2430;
	--paper: #f5f7fa;      /* soft grey */
	--white: #ffffff;
	--line: #e6eaf1;       /* light hairline */
	--line-dark: #283040;  /* dark hairline */

	/* Text */
	--text: #0e1116;       /* on light */
	--text-soft: #4a5566;  /* muted on light */
	--text-faint: #8a94a6;
	--on-dark: #eef2f8;    /* on dark */
	--on-dark-soft: #a3aec0;

	/* Brand */
	--accent: #2c5bff;     /* electric blue */
	--accent-press: #1e46d6;
	--accent-2: #15e0c0;   /* cyan/green */
	--accent-soft: #eaf0ff;

	/* System */
	--font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, sans-serif;
	--container: 1180px;
	--container-wide: 1320px;
	--radius: 16px;
	--radius-sm: 10px;
	--shadow-sm: 0 1px 2px rgba(14, 17, 22, .06), 0 4px 16px rgba(14, 17, 22, .05);
	--shadow-md: 0 18px 50px -22px rgba(14, 17, 22, .28);
	--shadow-blue: 0 18px 40px -16px rgba(44, 91, 255, .5);
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* =========================================================================
   2. Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-press); }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	margin: 0 0 .5em;
	color: inherit;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.screen-reader-text {
	position: absolute !important; clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link {
	position: absolute; left: 8px; top: -60px; z-index: 999;
	background: var(--accent); color: #fff; padding: 10px 16px;
	border-radius: var(--radius-sm); font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; }

/* =========================================================================
   3. Layout utilities
   ========================================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container.wide { max-width: var(--container-wide); }
.section { padding: clamp(60px, 8vw, 112px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }

.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--on-dark); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-display); font-weight: 600;
	font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em;
	color: var(--accent); margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.bg-ink .eyebrow { color: var(--accent-2); }
.bg-ink .eyebrow::before { background: var(--accent-2); }
.eyebrow.center { justify-content: center; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title { font-size: clamp(28px, 4.4vw, 48px); }
.section-lead { font-size: clamp(16px, 1.7vw, 19px); color: var(--text-soft); margin: 0; }
.bg-ink .section-lead { color: var(--on-dark-soft); }

/* =========================================================================
   4. Buttons
   ========================================================================= */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--font-display); font-weight: 600; font-size: 15px;
	letter-spacing: -0.01em; padding: 14px 26px; border-radius: var(--radius-sm);
	border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
	transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--accent-press); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.bg-ink .btn-outline { color: #fff; border-color: var(--line-dark); }
.bg-ink .btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.18); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* =========================================================================
   5. Header
   ========================================================================= */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.86);
	backdrop-filter: saturate(150%) blur(14px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 76px; }
.wordmark { font-family: var(--font-display); font-weight: 700; font-size: 25px; letter-spacing: -0.03em; color: var(--text); display: inline-flex; align-items: baseline; gap: 1px; }
.wordmark .dot { color: var(--accent); }
.custom-logo { max-height: 44px; width: auto; }

.site-nav > .nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; }
.site-nav .nav-menu a { font-family: var(--font-display); font-weight: 500; font-size: 15.5px; color: var(--text); padding: 6px 0; }
.site-nav .nav-menu > li { position: relative; }
.site-nav .nav-menu a:hover, .site-nav .current-menu-item > a { color: var(--accent); }
.menu-item-has-children > a::after { content: "▾"; font-size: 11px; margin-left: 5px; color: var(--text-faint); }
/* dropdown */
.site-nav .sub-menu {
	position: absolute; top: 100%; left: -16px; min-width: 230px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md); list-style: none; padding: 8px;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav .sub-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 15px; }
.site-nav .sub-menu a:hover { background: var(--accent-soft); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text); white-space: nowrap; }
.header-phone:hover { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }

/* =========================================================================
   6. Hero
   ========================================================================= */
.hero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; padding: clamp(70px, 10vw, 120px) 0 clamp(64px, 8vw, 100px); }
.hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(900px 480px at 78% -8%, rgba(44,91,255,.32), transparent 60%),
		radial-gradient(700px 420px at 6% 110%, rgba(21,224,192,.16), transparent 55%);
	pointer-events: none;
}
.hero::after {
	content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
	background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 58px 58px;
	mask-image: radial-gradient(700px 480px at 70% 30%, #000, transparent 78%);
	-webkit-mask-image: radial-gradient(700px 480px at 70% 30%, #000, transparent 78%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-pill {
	display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px;
	border: 1px solid var(--line-dark); border-radius: 100px; background: rgba(255,255,255,.03);
	font-size: 13px; color: var(--on-dark-soft); margin-bottom: 24px;
}
.hero-pill b { color: var(--accent-2); font-weight: 600; }
.hero h1 { font-size: clamp(34px, 5.4vw, 62px); margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(100deg, var(--accent-2), #7fa8ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(16px, 1.9vw, 20px); color: var(--on-dark-soft); max-width: 56ch; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 26px; color: #fff; }
.hero-stat span { font-size: 13.5px; color: var(--on-dark-soft); }

/* hero visual */
.hero-visual { position: relative; }
.hero-card {
	position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
	background: linear-gradient(160deg, #1b2433, #11161f);
	border: 1px solid var(--line-dark); overflow: hidden; box-shadow: var(--shadow-md);
	display: flex; align-items: center; justify-content: center;
}
.hero-card .scan { position: absolute; inset: 0; background: repeating-linear-gradient(transparent 0 3px, rgba(0,0,0,.18) 3px 4px); opacity: .35; }
.hero-card .glow { position: absolute; width: 60%; height: 60%; background: radial-gradient(circle, rgba(44,91,255,.45), transparent 65%); filter: blur(8px); }
.hero-card .label { position: relative; z-index: 2; text-align: center; }
.hero-card .label b { font-family: var(--font-display); font-size: 22px; color: #fff; display: block; }
.hero-card .label span { font-size: 13px; color: var(--on-dark-soft); }
.hero-card .speedbars { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; gap: 6px; align-items: flex-end; height: 46px; z-index: 2; }
.hero-card .speedbars i { flex: 1; background: linear-gradient(var(--accent-2), transparent); border-radius: 3px 3px 0 0; opacity: .85; }
.hero-img-note { position: absolute; bottom: 10px; right: 14px; font-size: 11px; color: var(--text-faint); z-index: 3; }

/* =========================================================================
   7. Intro / trust band
   ========================================================================= */
.intro-band { text-align: center; }
.intro-band p { font-size: clamp(19px, 2.6vw, 27px); font-family: var(--font-display); font-weight: 500; line-height: 1.4; letter-spacing: -0.02em; max-width: 24ch; margin: 0 auto; color: var(--text); }
.intro-band p em { color: var(--accent); font-style: normal; }

/* =========================================================================
   8. Cards grids (services + experiences)
   ========================================================================= */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
	position: relative; display: flex; flex-direction: column;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card .thumb {
	aspect-ratio: 16/10; background: linear-gradient(150deg, var(--ink-2), var(--ink)); position: relative;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.svc-card .thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 200px at 70% 0%, rgba(44,91,255,.4), transparent 60%); }
.svc-card .thumb .ico { position: relative; z-index: 2; color: var(--accent-2); }
.svc-card .thumb .ico svg { width: 46px; height: 46px; }
.svc-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 21px; margin-bottom: 8px; }
.svc-card p { color: var(--text-soft); font-size: 15px; margin-bottom: 18px; flex: 1; }
.svc-card .more { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.svc-card:hover .more { gap: 11px; }

/* experiences = compact list cards */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.exp-item {
	display: flex; gap: 16px; align-items: flex-start; padding: 22px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.exp-item:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.exp-item .num { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #fff; background: var(--accent); min-width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.exp-item h4 { font-size: 17px; margin: 4px 0 4px; }
.exp-item p { font-size: 14px; color: var(--text-soft); margin: 0; }

/* =========================================================================
   9. Brand activation (dark split)
   ========================================================================= */
.activation-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.activation-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-top: 28px; }
.activation-list li { position: relative; padding-left: 30px; color: var(--on-dark); font-size: 15.5px; }
.activation-list li::before {
	content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
	border-radius: 50%; background: rgba(21,224,192,.14);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2315e0c0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center;
}
.activation-visual { aspect-ratio: 5/4; border-radius: var(--radius); border: 1px solid var(--line-dark); background: linear-gradient(160deg, #1a2231, #10151d); position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.activation-visual .leader { position: absolute; left: 22px; right: 22px; top: 22px; background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: 12px; padding: 14px 16px; }
.activation-visual .leader .row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; font-size: 13px; color: var(--on-dark-soft); border-bottom: 1px dashed var(--line-dark); }
.activation-visual .leader .row:last-child { border-bottom: 0; }
.activation-visual .leader .row b { color: #fff; font-family: var(--font-display); }
.activation-visual .leader .row .t { color: var(--accent-2); font-family: var(--font-display); }
.activation-visual .chip { position: absolute; bottom: 22px; left: 22px; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; padding: 9px 15px; border-radius: 10px; transform: rotate(-3deg); }

/* =========================================================================
   10. Perfect for (use cases)
   ========================================================================= */
.uses-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.use-chip {
	display: flex; flex-direction: column; gap: 12px; padding: 22px 20px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
	transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.use-chip:hover { transform: translateY(-3px); border-color: var(--accent); }
.use-chip .ico { color: var(--accent); }
.use-chip .ico svg { width: 26px; height: 26px; }
.use-chip span { font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.3; }

/* =========================================================================
   11. Packages
   ========================================================================= */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.pkg-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg-card.is-featured { background: var(--ink); color: var(--on-dark); border-color: var(--ink); box-shadow: var(--shadow-md); }
.pkg-card.is-featured h3 { color: #fff; }
.pkg-flag { position: absolute; top: -13px; left: 30px; background: var(--accent-2); color: #07231e; font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; }
.pkg-name { font-size: 25px; margin-bottom: 6px; }
.pkg-for { font-size: 14px; color: var(--text-soft); margin-bottom: 22px; min-height: 42px; }
.pkg-card.is-featured .pkg-for { color: var(--on-dark-soft); }
.pkg-list { list-style: none; display: grid; gap: 12px; padding: 22px 0; margin-bottom: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pkg-card.is-featured .pkg-list { border-color: var(--line-dark); }
.pkg-list li { position: relative; padding-left: 28px; font-size: 15px; }
.pkg-list li::before {
	content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232c5bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
}
.pkg-card.is-featured .pkg-list li::before { stroke: var(--accent-2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2315e0c0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.pkg-cta { width: 100%; }

/* =========================================================================
   12. Why / features
   ========================================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.why-item { background: #fff; padding: 32px 28px; }
.why-item .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.why-item .ico svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 19px; margin-bottom: 8px; }
.why-item p { font-size: 15px; color: var(--text-soft); margin: 0; }

/* =========================================================================
   13. Process
   ========================================================================= */
.process { counter-reset: step; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { position: relative; padding-top: 18px; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--accent); }
.step .bar { height: 3px; background: var(--line); border-radius: 3px; margin: 12px 0 18px; position: relative; overflow: hidden; }
.step .bar::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--accent); border-radius: 3px; }
.bg-ink .step .bar { background: var(--line-dark); }
.step h4 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14.5px; color: var(--text-soft); margin: 0; }
.bg-ink .step p { color: var(--on-dark-soft); }

/* =========================================================================
   14. Testimonials
   ========================================================================= */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.tcard .stars { color: var(--accent-2); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.tcard blockquote { margin: 0 0 20px; font-size: 16.5px; line-height: 1.6; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(140deg, var(--accent), var(--accent-2)); }
.tcard .who b { display: block; font-family: var(--font-display); font-size: 15px; }
.tcard .who span { font-size: 13px; color: var(--text-soft); }

/* =========================================================================
   15. Client logos
   ========================================================================= */
.logos { text-align: center; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 34px 52px; margin-top: 18px; }
.logo-row span { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 0.02em; color: var(--text-faint); transition: color .2s var(--ease); }
.logo-row span:hover { color: var(--text); }
.logo-note { font-size: 12.5px; color: var(--text-faint); margin-top: 22px; }
.logo-note code { background: var(--paper); padding: 2px 6px; border-radius: 5px; font-size: 12px; }

/* =========================================================================
   16. FAQ
   ========================================================================= */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--text); }
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--accent); transition: transform .2s var(--ease); }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 44px 22px 0; color: var(--text-soft); margin: 0; font-size: 15.5px; }

/* =========================================================================
   17. Quote form
   ========================================================================= */
.quote-section { background: var(--ink); color: var(--on-dark); }
.quote-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.quote-copy .section-title { color: #fff; }
.quote-points { list-style: none; display: grid; gap: 12px; margin-top: 24px; }
.quote-points li { position: relative; padding-left: 28px; color: var(--on-dark-soft); }
.quote-points li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2315e0c0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.quote-direct { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line-dark); display: grid; gap: 8px; }
.quote-direct a { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; }
.quote-direct a:hover { color: var(--accent-2); }

.form-card { background: #fff; color: var(--text); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text); margin-bottom: 7px; }
.field input, .field select, .field textarea {
	width: 100%; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
	color: var(--text); font-family: var(--font-body); font-size: 15px; padding: 12px 14px;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(44,91,255,.14); }
.field textarea { resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a5566' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-small { font-size: 12.5px; color: var(--text-faint); text-align: center; margin: 12px 0 0; }
.form-note { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 15px; }
.form-note--ok { background: rgba(21,224,192,.12); color: #0c8f78; border: 1px solid rgba(21,224,192,.4); }
.form-note--error { background: #fdeef0; color: #c23; border: 1px solid #f3c5cc; }

/* =========================================================================
   18. Footer
   ========================================================================= */
.site-footer { background: var(--ink); color: var(--on-dark); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .wordmark { color: #fff; font-size: 26px; }
.footer-tag { color: var(--on-dark-soft); max-width: 34ch; margin-top: 14px; font-size: 15px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 10px; display: grid; place-items: center; color: var(--on-dark-soft); }
.footer-social a:hover { border-color: var(--accent-2); color: var(--accent-2); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--on-dark-soft); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--on-dark-soft); font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 13px; color: var(--on-dark-soft); }

/* =========================================================================
   19. Service pages / generic pages
   ========================================================================= */
.svc-hero { background: var(--ink); color: var(--on-dark); padding: clamp(60px, 8vw, 104px) 0 clamp(48px, 6vw, 80px); position: relative; overflow: hidden; }
.svc-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 420px at 80% -10%, rgba(44,91,255,.3), transparent 60%); }
.svc-hero .inner { position: relative; z-index: 2; max-width: 760px; }
.crumbs { font-size: 13.5px; color: var(--on-dark-soft); margin-bottom: 18px; }
.crumbs a { color: var(--on-dark-soft); } .crumbs a:hover { color: var(--accent-2); }
.svc-hero h1 { font-size: clamp(30px, 5vw, 52px); margin-bottom: 18px; }
.svc-hero p { font-size: clamp(16px, 1.8vw, 19px); color: var(--on-dark-soft); margin: 0 0 28px; }

.svc-body { padding: clamp(56px, 7vw, 96px) 0; }
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.svc-main h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 18px; }
.svc-main h3 { font-size: 21px; margin: 38px 0 14px; }
.svc-main p, .svc-main li { color: var(--text-soft); font-size: 16.5px; }
.svc-main .entry-content > p:first-child { font-size: 18px; color: var(--text); }
.svc-checks { list-style: none; display: grid; gap: 12px; margin: 18px 0 8px; }
.svc-checks li { position: relative; padding-left: 30px; }
.svc-checks li::before { content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232c5bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.svc-tags span { background: var(--paper); border: 1px solid var(--line); border-radius: 100px; padding: 7px 15px; font-size: 14px; font-family: var(--font-display); font-weight: 500; }

.svc-aside { position: sticky; top: 96px; display: grid; gap: 18px; }
.aside-card { background: var(--ink); color: var(--on-dark); border-radius: var(--radius); padding: 28px; }
.aside-card h3 { color: #fff; font-size: 20px; }
.aside-card p { color: var(--on-dark-soft); font-size: 14.5px; }
.aside-card.light { background: var(--paper); color: var(--text); border: 1px solid var(--line); }
.aside-card.light h3 { color: var(--text); }
.aside-card.light ul { list-style: none; display: grid; gap: 10px; }
.aside-card.light ul a { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--text); display: inline-flex; gap: 8px; }
.aside-card.light ul a:hover { color: var(--accent); }

.page-wrap { padding: clamp(48px, 6vw, 84px) 0; }
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: clamp(48px, 6vw, 80px) 0; }
.entry-content { font-size: 17px; color: var(--text); max-width: 760px; }
.entry-content a { text-decoration: underline; }
.entry-content h2 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius); margin: 1.4em 0; }

/* blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; background: var(--paper); overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pbody { padding: 24px; }
.post-card .meta { font-size: 13px; color: var(--text-faint); margin-bottom: 8px; }
.post-card h2 { font-size: 20px; margin-bottom: 8px; }
.post-card h2 a { color: var(--text); } .post-card h2 a:hover { color: var(--accent); }
.post-card p { font-size: 15px; color: var(--text-soft); }
.pagination { margin-top: 44px; display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 9px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); font-family: var(--font-display); font-weight: 600; }
.pagination .current { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =========================================================================
   20. CTA band (reusable)
   ========================================================================= */
.cta-band { background: linear-gradient(120deg, var(--accent), #4f78ff 60%, var(--accent-2)); color: #fff; border-radius: var(--radius); padding: clamp(40px, 6vw, 64px); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 auto 26px; font-size: 17px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 16px 40px -16px rgba(0,0,0,.4); }
.cta-band .btn-primary:hover { background: var(--ink); color: #fff; }

/* =========================================================================
   21. Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; gap: 40px; }
	.hero-visual { max-width: 520px; }
	.card-grid, .exp-grid, .why-grid, .quote-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
	.uses-grid { grid-template-columns: repeat(3, 1fr); }
	.process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
	.activation-inner, .quote-inner { grid-template-columns: 1fr; gap: 40px; }
	.activation-list { grid-template-columns: 1fr 1fr; }
	.svc-layout { grid-template-columns: 1fr; }
	.svc-aside { position: static; grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 760px) {
	body { font-size: 16px; }
	.nav-toggle { display: flex; }
	.header-phone { display: none; }
	.site-nav {
		position: fixed; inset: 76px 0 auto 0; background: #fff;
		border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
		transform: translateY(-10px); opacity: 0; visibility: hidden;
		transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
		max-height: calc(100vh - 76px); overflow-y: auto;
	}
	.nav-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
	.site-nav > .nav-menu { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 22px; }
	.site-nav .nav-menu > li { border-bottom: 1px solid var(--line); }
	.site-nav .nav-menu a { display: block; padding: 15px 0; }
	.site-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 14px; min-width: 0; }
	.menu-item-has-children > a::after { display: none; }
	.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
	.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.card-grid, .exp-grid, .why-grid, .quote-grid, .post-grid, .uses-grid, .process-grid, .footer-grid, .svc-aside { grid-template-columns: 1fr; }
	.activation-list { grid-template-columns: 1fr; }
	.field-row { grid-template-columns: 1fr; gap: 0; }
	.container { padding: 0 20px; }
	.form-card { padding: 24px; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =========================================================================
   22. Imagery & gallery (uploadable)
   ========================================================================= */
/* Hero with background photo */
.hero.has-image { background-size: cover; background-position: center; }
.hero.has-image::before { background: linear-gradient(180deg, rgba(8,10,14,.74) 0%, rgba(8,10,14,.78) 55%, rgba(8,10,14,.9) 100%); }
.hero.has-image::after { display: none; }
.hero.has-image .hero-inner { grid-template-columns: 1fr; }
.hero.has-image .hero-visual { display: none; }
.hero.has-image .hero-copy { max-width: 780px; }

/* Service card photos */
.svc-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform .5s var(--ease); }
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .thumb.has-img::after { background: linear-gradient(180deg, rgba(14,17,22,.1), rgba(14,17,22,.45)); z-index: 2; }
.svc-card .thumb.has-img .ico { display: none; }

/* Experience thumbnail (optional) */
.exp-item.has-img { flex-direction: column; gap: 0; padding: 0; overflow: hidden; }
.exp-item.has-img .ethumb { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.exp-item.has-img .ethumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.exp-item.has-img:hover .ethumb img { transform: scale(1.05); }
.exp-item.has-img .etext { padding: 20px 22px 22px; }
.exp-item.has-img .num { position: absolute; top: 12px; left: 12px; z-index: 2; }
.exp-item.has-img { position: relative; }

/* Gallery */
.gallery-grid { columns: 4 240px; column-gap: 16px; }
.gallery-item { position: relative; break-inside: avoid; margin: 0 0 16px; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; background: var(--ink-2); display: block; }
.gallery-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,17,22,.4)); opacity: 0; transition: opacity .3s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.glx-lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(8,10,14,.93); display: none; align-items: center; justify-content: center; padding: 24px; }
.glx-lightbox.open { display: flex; }
.glx-lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.glx-close { position: absolute; top: 16px; right: 22px; width: 46px; height: 46px; border: 0; background: rgba(255,255,255,.1); color: #fff; font-size: 26px; line-height: 1; border-radius: 50%; cursor: pointer; }
.glx-close:hover { background: rgba(255,255,255,.2); }

/* Activation with photo */
.activation-visual.has-img { padding: 0; }
.activation-visual.has-img img { width: 100%; height: 100%; object-fit: cover; }
.activation-visual.has-img .leader, .activation-visual.has-img .chip { display: none; }

/* Service-page hero photo */
.svc-hero.has-image { background-size: cover; background-position: center; }
.svc-hero.has-image::before { background: linear-gradient(120deg, rgba(8,10,14,.9) 30%, rgba(8,10,14,.6)); }

@media (max-width: 1024px) { .gallery-grid { columns: 3 200px; } }
@media (max-width: 760px) { .gallery-grid { columns: 2 140px; column-gap: 12px; } .gallery-item { margin-bottom: 12px; } }
