/*
Theme Name: SHAH IT
Theme URI: https://shahit.com.au
Author: SHAH IT Solutions & Services
Author URI: https://shahit.com.au
Description: A modern, enterprise-grade custom theme built for SHAH IT Solutions & Services — a managed IT, cybersecurity and cloud provider based in Merrylands, NSW. Confident, fast and conversion-focused, with SEO-ready homepage sections and HubSpot lead capture.
Version: 1.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: shahit
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
	--navy-900: #07172e;
	--navy-800: #0a2540;
	--navy-700: #0f3057;
	--blue-600: #1d4ed8;
	--blue-500: #2563eb;
	--blue-400: #3b82f6;
	--cyan-400: #06b6d4;
	--cyan-300: #22d3ee;

	--ink-900: #0b1524;
	--ink-700: #334155;
	--ink-500: #64748b;
	--ink-300: #cbd5e1;

	--surface: #ffffff;
	--surface-soft: #f5f8fc;
	--surface-tint: #eef4fb;
	--border: #e2e8f0;

	--success: #16a34a;
	--warning: #f59e0b;

	--maxw: 1180px;
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 1px 3px rgba(10, 37, 64, .08);
	--shadow: 0 10px 30px -12px rgba(10, 37, 64, .25);
	--shadow-lg: 0 30px 60px -25px rgba(10, 37, 64, .35);

	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-head: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--gradient-brand: linear-gradient(135deg, var(--blue-500) 0%, var(--cyan-400) 100%);
	--gradient-hero: radial-gradient(1200px 600px at 80% -10%, rgba(6, 182, 212, .25), transparent 60%),
		radial-gradient(900px 500px at 0% 110%, rgba(37, 99, 235, .35), transparent 55%),
		linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink-700);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--blue-500); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--surface-soft); }
.section--tint { background: var(--surface-tint); }
.section--dark { background: var(--gradient-hero); color: #e7eefb; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.eyebrow {
	display: inline-block; font-family: var(--font-head); font-weight: 700;
	font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
	color: var(--blue-600); margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--cyan-300); }
.lead { font-size: 1.18rem; color: var(--ink-500); }
.section--dark .lead { color: #b9c8e6; }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-head); font-weight: 700; font-size: 1rem;
	padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
	cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gradient-brand); color: #fff; box-shadow: 0 12px 24px -10px rgba(37, 99, 235, .7); }
.btn--primary:hover { color: #fff; box-shadow: 0 18px 34px -10px rgba(37, 99, 235, .8); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; }
.btn--outline { background: transparent; color: var(--blue-600); border-color: var(--border); }
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-500); }
.btn--lg { padding: 18px 36px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   5. HEADER / NAV
   ============================================================ */
.utility-bar { background: var(--navy-900); color: #c7d6f0; font-size: .85rem; }
.utility-bar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 24px; max-width: var(--maxw); margin-inline: auto; }
.utility-bar a { color: #c7d6f0; }
.utility-bar a:hover { color: #fff; }
.utility-bar__links { display: flex; gap: 20px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .9); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .2s ease; }
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 24px; max-width: var(--maxw); margin-inline: auto; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--ink-900); letter-spacing: -.03em; }
.brand:hover { color: var(--ink-900); }
.brand__mark { width: 38px; height: 38px; border-radius: 10px; background: var(--gradient-brand); display: grid; place-items: center; color: #fff; font-weight: 800; box-shadow: var(--shadow-sm); }
.brand strong { color: var(--blue-600); }
.custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.site-header .custom-logo { max-height: 50px; width: auto; height: auto; display: block; }
@media (max-width: 640px) { .site-header .custom-logo { max-height: 40px; } }
.footer__logo { margin-bottom: 16px; }
.footer__logo .custom-logo { max-height: 52px; width: auto; height: auto; display: block; filter: brightness(0) invert(1); }

.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; font-family: var(--font-head); font-weight: 600; font-size: .98rem; }
.main-nav a { color: var(--ink-700); }
.main-nav a:hover { color: var(--blue-600); }
.main-nav .current-menu-item > a { color: var(--blue-600); }
.main-nav li { position: relative; }
.main-nav .menu-item-has-children > a::after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .55; }
.main-nav > ul > .menu-item-has-children { padding-bottom: 10px; margin-bottom: -10px; }
.main-nav .sub-menu {
	display: none; position: absolute; top: 100%; left: 0; min-width: 248px;
	background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
	box-shadow: var(--shadow); padding: 10px; z-index: 200; list-style: none;
}
.main-nav .menu-item-has-children:hover > .sub-menu { display: block; }
.main-nav .sub-menu li { width: 100%; }
.main-nav .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-700); white-space: nowrap; }
.main-nav .sub-menu a:hover { background: var(--surface-tint); color: var(--blue-600); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); white-space: nowrap; }
.header-phone span { color: var(--ink-500); font-weight: 600; display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink-900); margin: 5px 0; transition: .2s; }

/* ============================================================
   6. HERO
   ============================================================ */
.hero { background: var(--gradient-hero); color: #e7eefb; position: relative; overflow: hidden; padding: clamp(64px, 9vw, 120px) 0 clamp(72px, 10vw, 128px); }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); color: #cfe0ff; padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 22px; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { background: linear-gradient(90deg, var(--cyan-300), var(--blue-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.22rem; color: #c3d2ef; max-width: 600px; margin-bottom: 30px; }
.hero__cta { margin-bottom: 28px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 18px 28px; list-style: none; padding: 0; margin: 0; font-size: .98rem; color: #cdd9f2; }
.hero__points li { display: flex; align-items: center; gap: 9px; }
.hero__points svg { flex: none; color: var(--cyan-300); }

.hero__card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg); }
.hero__card h3 { color: #fff; font-size: 1.15rem; }
.hero__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.hero__stat { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 18px; }
.hero__stat b { display: block; font-family: var(--font-head); font-size: 1.7rem; color: #fff; line-height: 1; }
.hero__stat span { font-size: .82rem; color: #aebfdd; }

/* ============================================================
   7. TRUST STRIP
   ============================================================ */
.trust { background: var(--surface); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.trust__label { font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }
.trust__items { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.trust__chip { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--ink-700); }
.trust__chip svg { color: var(--blue-500); flex: none; }

/* ============================================================
   8. CARDS / SERVICES
   ============================================================ */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c9d8ee; }
.card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--surface-tint); display: grid; place-items: center; color: var(--blue-600); margin-bottom: 18px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { font-size: .98rem; color: var(--ink-500); margin-bottom: 14px; }
.card__link { font-family: var(--font-head); font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.card__link svg { transition: transform .15s ease; }
.card:hover .card__link svg { transform: translateX(3px); }

/* ============================================================
   9. POSITIONING (Managed IT / Cyber split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.split__panel { border-radius: var(--radius-lg); padding: 40px; color: #fff; position: relative; overflow: hidden; }
.split__panel--managed { background: linear-gradient(150deg, var(--blue-600), var(--navy-700)); }
.split__panel--cyber { background: linear-gradient(150deg, var(--navy-800), #0b3a4a); }
.split__panel h3 { color: #fff; font-size: 1.6rem; }
.split__panel p { color: #d6e2f7; }
.split__list { list-style: none; padding: 0; margin: 0 0 26px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-top: 1px solid rgba(255, 255, 255, .12); color: #e7eefb; font-size: .98rem; }
.split__list li:first-child { border-top: 0; }
.split__list svg { flex: none; color: var(--cyan-300); margin-top: 3px; }

/* ============================================================
   10. INDUSTRIES
   ============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ind { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; gap: 16px; transition: border-color .2s, box-shadow .2s, transform .18s; }
.ind:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ind__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gradient-brand); color: #fff; display: grid; place-items: center; flex: none; }
.ind h3 { font-size: 1.05rem; margin: 0 0 2px; }
.ind p { margin: 0; font-size: .88rem; color: var(--ink-500); }

/* ============================================================
   11. WHY US
   ============================================================ */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why__item { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.why__num { font-family: var(--font-head); font-weight: 800; color: var(--blue-500); font-size: 1.05rem; background: var(--surface-tint); width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.why__item h3 { font-size: 1.12rem; margin-bottom: 4px; }
.why__item p { margin: 0; font-size: .96rem; color: var(--ink-500); }

/* ============================================================
   12. PROCESS
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process__step { position: relative; padding: 30px 24px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); }
.process__step b { font-family: var(--font-head); display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--gradient-brand); color: #fff; font-size: 1.1rem; margin-bottom: 16px; }
.process__step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.process__step p { color: #b9c8e6; font-size: .94rem; margin: 0; }

/* ============================================================
   13. LEAD CAPTURE (HubSpot)
   ============================================================ */
.lead { background: var(--surface-tint); }
.lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lead__copy h2 { margin-bottom: 14px; }
.lead__checks { list-style: none; padding: 0; margin: 22px 0 0; }
.lead__checks li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-weight: 500; color: var(--ink-700); }
.lead__checks svg { flex: none; color: var(--success); margin-top: 3px; }
.lead__form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.lead__form h3 { font-size: 1.35rem; margin-bottom: 6px; }
.lead__form > p { color: var(--ink-500); font-size: .96rem; }
/* HubSpot form styling hooks */
.hbspt-form .hs-form-field { margin-bottom: 16px; }
.hbspt-form label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-900); display: block; margin-bottom: 6px; }
.hbspt-form input[type=text], .hbspt-form input[type=email], .hbspt-form input[type=tel], .hbspt-form select, .hbspt-form textarea {
	width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; color: var(--ink-900); background: var(--surface-soft); transition: border-color .15s, box-shadow .15s;
}
.hbspt-form input:focus, .hbspt-form select:focus, .hbspt-form textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(37, 99, 235, .12); background: #fff; }
.hbspt-form .hs-button { width: 100%; background: var(--gradient-brand) !important; color: #fff !important; border: 0 !important; padding: 15px 28px !important; border-radius: 999px !important; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; cursor: pointer; box-shadow: 0 12px 24px -10px rgba(37, 99, 235, .7); transition: transform .15s; }
.hbspt-form .hs-button:hover { transform: translateY(-2px); }
.hbspt-form .hs-error-msg { color: #dc2626; font-size: .85rem; }
.lead__fallback { display: grid; gap: 14px; }
.lead__fallback .form-field { display: grid; gap: 6px; }
.lead__fallback label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-900); }
.lead__fallback input, .lead__fallback textarea { padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; background: var(--surface-soft); }
/* Contact Form 7 styling inside the lead card */
.lead__form .wpcf7-form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink-900); margin-bottom: 14px; }
.lead__form .wpcf7-form input[type=text], .lead__form .wpcf7-form input[type=email], .lead__form .wpcf7-form input[type=tel], .lead__form .wpcf7-form select, .lead__form .wpcf7-form textarea {
	width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .98rem; color: var(--ink-900); background: var(--surface-soft); transition: border-color .15s, box-shadow .15s;
}
.lead__form .wpcf7-form input:focus, .lead__form .wpcf7-form select:focus, .lead__form .wpcf7-form textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(37, 99, 235, .12); background: #fff; }
.lead__form .wpcf7-form .wpcf7-submit { width: 100%; background: var(--gradient-brand); color: #fff; border: 0; padding: 15px 28px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; cursor: pointer; box-shadow: 0 12px 24px -10px rgba(37, 99, 235, .7); transition: transform .15s; margin-top: 6px; }
.lead__form .wpcf7-form .wpcf7-submit:hover { transform: translateY(-2px); }
.lead__form .wpcf7-form .wpcf7-spinner { margin: 12px auto 0; display: block; }
.lead__form .wpcf7-not-valid-tip { color: #dc2626; font-size: .82rem; font-weight: 500; }
.lead__form .wpcf7-response-output { border-radius: var(--radius-sm); font-size: .92rem; margin: 14px 0 0; padding: 12px 14px; }
/* The lead card holds a long qualification form — let it breathe */
.lead .lead__grid { align-items: start; }
.lead__form { max-height: none; }

/* ============================================================
   13b. MULTI-STEP LEAD FORM (progressive enhancement)
   ============================================================ */
.ms-progress, .ms-stepinfo, .ms-nav .ms-next, .ms-nav .ms-back { display: none; }
.ms-form.ms-ready .ms-progress { display: flex; gap: 6px; margin-bottom: 12px; }
.ms-progress span { flex: 1; height: 5px; border-radius: 999px; background: var(--border); transition: background .3s ease; }
.ms-progress span.is-active { background: var(--blue-500); }
.ms-form.ms-ready .ms-stepinfo { display: block; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--ink-500); margin: 0 0 18px; }
.ms-stepinfo .ms-label { color: var(--ink-900); }
.ms-form.ms-ready .fstep { display: none; }
.ms-form.ms-ready .fstep.is-active { display: block; animation: msfade .28s ease; }
@keyframes msfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ms-nav { display: flex; gap: 10px; align-items: center; margin-top: 10px; }
.ms-form.ms-ready .ms-nav .ms-next { flex: 1; background: var(--gradient-brand); color: #fff; border: 0; padding: 14px 24px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; cursor: pointer; box-shadow: 0 12px 24px -10px rgba(37, 99, 235, .7); transition: transform .15s ease; }
.ms-form.ms-ready .ms-nav .ms-next:hover { transform: translateY(-2px); }
.ms-form.ms-ready .ms-nav .ms-back { background: transparent; border: 1px solid var(--border); color: var(--ink-700); padding: 13px 22px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; cursor: pointer; transition: border-color .15s ease; }
.ms-form.ms-ready .ms-nav .ms-back:hover { border-color: var(--blue-500); color: var(--blue-600); }
.lead__form .wpcf7-form .ms-nav .ms-submit { width: auto; flex: 1; margin-top: 0; }
.ms-invalid { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220, 38, 38, .12) !important; }

/* ============================================================
   14. FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 14px; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q:hover { color: var(--blue-600); }
.faq__icon { flex: none; width: 24px; height: 24px; position: relative; transition: transform .2s; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--blue-500); border-radius: 2px; }
.faq__icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq__icon::after { left: 11px; top: 4px; bottom: 4px; width: 2px; transition: transform .2s; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__a-inner { padding: 0 24px 22px; color: var(--ink-500); }
.faq__item.is-open .faq__a { max-height: 400px; }

/* ============================================================
   15. FINAL CTA
   ============================================================ */
.final-cta { background: var(--gradient-hero); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; max-width: 760px; margin-inline: auto; }
.final-cta p { color: #c3d2ef; max-width: 600px; margin: 0 auto 28px; font-size: 1.15rem; }
.final-cta .btn-row { justify-content: center; }

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: #aebfdd; padding: 72px 0 0; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__grid h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #aebfdd; }
.site-footer a:hover { color: #fff; }
.footer__brand .brand { color: #fff; margin-bottom: 14px; }
.footer__brand p { max-width: 320px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer__contact svg { flex: none; color: var(--cyan-300); margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }

/* ============================================================
   17. GENERIC PAGE / POST CONTENT
   ============================================================ */
.page-hero { background: var(--gradient-hero); color: #fff; padding: clamp(48px, 7vw, 88px) 0; }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero .breadcrumbs { color: #b9c8e6; font-size: .9rem; margin-bottom: 12px; }
.page-hero .breadcrumbs a { color: var(--cyan-300); }
.entry { max-width: 800px; margin-inline: auto; }
.entry img { border-radius: var(--radius); margin: 24px 0; }
.entry h2, .entry h3 { margin-top: 1.6em; }

/* ============================================================
   18. SCROLL ANIMATIONS (reveal + count-up)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
/* Stagger children of a revealed grid */
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.count[data-count] { font-variant-numeric: tabular-nums; }

/* ============================================================
   19. CYBERSECURITY DASHBOARD
   ============================================================ */
.secdash { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.secdash__copy h2 { color: #fff; }
.secdash__copy .lead { color: #b9c8e6; }
.secdash__live { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-300); margin-bottom: 14px; }
.secdash__dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); } 70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }

.panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); backdrop-filter: blur(6px); }
.panel__bar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.panel__bar h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.panel__status { display: inline-flex; align-items: center; gap: 7px; background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.4); color: #86efac; font-size: .78rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; }

.panel__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.panel__stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 16px; }
.panel__stat .count { display: block; font-family: var(--font-head); font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1; }
.panel__stat span.label { font-size: .8rem; color: #aebfdd; }
.panel__stat.is-cyan .count { background: linear-gradient(90deg,var(--cyan-300),var(--blue-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.maturity { margin-bottom: 6px; }
.maturity__row { display: flex; align-items: center; gap: 12px; padding: 7px 0; }
.maturity__name { flex: none; width: 132px; font-size: .86rem; color: #cdd9f2; }
.maturity__track { flex: 1; height: 7px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.maturity__fill { height: 100%; width: 0; border-radius: 999px; background: var(--gradient-brand); transition: width 1.1s cubic-bezier(.16,1,.3,1); }
.is-visible .maturity__fill { width: var(--lvl, 0%); }
.maturity__pct { flex: none; width: 38px; text-align: right; font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: #fff; }

.panel__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; }
.pill--ok { background: rgba(34,197,94,.13); color: #86efac; border: 1px solid rgba(34,197,94,.35); }
.pill--watch { background: rgba(245,158,11,.13); color: #fcd34d; border: 1px solid rgba(245,158,11,.35); }

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
	.hero__grid, .lead__grid, .split, .secdash { grid-template-columns: 1fr; }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.process { grid-template-columns: repeat(2, 1fr); }
	.ind-grid { grid-template-columns: repeat(2, 1fr); }
	.footer__grid { grid-template-columns: 1fr 1fr; }
	.main-nav, .header-phone span { display: none; }
	.nav-toggle { display: block; }
	.main-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; box-shadow: var(--shadow); }
	.main-nav.is-open ul { flex-direction: column; gap: 4px; }
	.main-nav.is-open li { padding: 8px 0; border-bottom: 1px solid var(--border); }
	.main-nav.is-open .sub-menu { display: block; position: static; box-shadow: none; border: 0; padding: 4px 0 4px 14px; min-width: 0; }
	.main-nav.is-open .sub-menu a { padding: 6px 0; }
	.main-nav > ul > .menu-item-has-children { padding-bottom: 0; margin-bottom: 0; }
	.main-nav .menu-item-has-children > a::after { display: none; }
}
@media (max-width: 640px) {
	.grid--2, .grid--3, .grid--4, .why, .ind-grid, .process { grid-template-columns: 1fr; }
	.footer__grid { grid-template-columns: 1fr; }
	.utility-bar__links { display: none; }
	.hero__stat-grid { grid-template-columns: 1fr 1fr; }
	body { font-size: 16px; }
}

/* Accessibility */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
