/**
 * Armor Theme - Main Stylesheet
 *
 * @package Armor_Theme
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
	--white: #FFFFFF;
	--off: #F5F7FA;
	--off2: #EBF0F8;
	--navy: #0D1E3D;
	--blue: #1A4DB5;
	--blue-mid: #2060CC;
	--blue-lt: #4A85E8;
	--accent: #0EA5E9;
	--muted: #5A6E8A;
	--muted2: #8FA3BC;
	--border: #D8E2EF;
	--border2: rgba(26, 77, 181, 0.18);
	--shadow: 0 2px 16px rgba(13, 30, 61, 0.08);
	--shadow-lg: 0 8px 40px rgba(13, 30, 61, 0.12);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Barlow", sans-serif;
	background: var(--white);
	color: var(--navy);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: "Barlow Condensed", sans-serif;
	line-height: 1.15;
}

img {
	max-width: 100%;
	height: auto;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 48px;
	height: 64px;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 1px 12px rgba(13, 30, 61, 0.06);
	transition: height 0.3s, box-shadow 0.3s;
}

nav.scrolled {
	height: 54px;
	box-shadow: 0 2px 20px rgba(13, 30, 61, 0.1);
}

.nav-logo {
	text-decoration: none;
}

.nav-logo img {
	height: 36px;
	width: auto;
	display: block;
	transition: height 0.3s;
}

nav.scrolled .nav-logo img {
	height: 30px;
}

.nav-logo-text {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 800;
	font-size: 1.2rem;
	color: var(--navy);
	text-decoration: none;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
}

.nav-links a,
.nav-links .menu-item a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.87rem;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover,
.nav-links .menu-item a:hover {
	color: var(--navy);
}

.nav-cta,
.nav-links .menu-item:last-child a {
	background: var(--blue);
	color: var(--white) !important;
	padding: 8px 18px;
	border-radius: 5px;
	font-weight: 700 !important;
	font-size: 0.82rem !important;
	transition: background 0.2s !important;
	white-space: nowrap;
}

.nav-cta:hover,
.nav-links .menu-item:last-child a:hover {
	background: var(--blue-mid) !important;
}

/* Hamburger */
.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	z-index: 101;
}

.nav-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
	opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 56px 80px;
	position: relative;
	overflow: hidden;
	background: var(--off);
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(ellipse 65% 50% at 80% 30%, rgba(26, 77, 181, 0.07) 0%, transparent 60%),
		radial-gradient(ellipse 45% 40% at 10% 80%, rgba(14, 165, 233, 0.06) 0%, transparent 55%);
}

.hero-grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 56px 56px;
	opacity: 0.5;
	mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 0%, transparent 100%);
}

.hero-deco {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 48%;
	z-index: 0;
	background: linear-gradient(135deg, rgba(26, 77, 181, 0.05) 0%, rgba(14, 165, 233, 0.03) 100%);
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(26, 77, 181, 0.08);
	border: 1px solid var(--border2);
	color: var(--blue);
	padding: 6px 14px;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 22px;
	animation: fadeUp 0.5s ease both;
}

.eyebrow-dot {
	width: 6px;
	height: 6px;
	background: var(--blue);
	border-radius: 50%;
	animation: blink 2s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.25; }
}

h1.hero-title {
	font-size: clamp(2.6rem, 5vw, 4.2rem);
	font-weight: 800;
	line-height: 1.05;
	color: var(--navy);
	margin-bottom: 8px;
	animation: fadeUp 0.5s 0.1s ease both;
}

.hero-title .blue {
	color: var(--blue);
}

.hero-sub {
	font-size: 1.03rem;
	line-height: 1.75;
	color: var(--muted);
	max-width: 500px;
	margin: 16px 0 34px;
	animation: fadeUp 0.5s 0.2s ease both;
}

.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	animation: fadeUp 0.5s 0.3s ease both;
}

.btn-primary {
	background: var(--blue);
	color: var(--white);
	padding: 13px 26px;
	border-radius: 6px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
	box-shadow: 0 4px 16px rgba(26, 77, 181, 0.25);
}

.btn-primary:hover {
	background: var(--blue-mid);
	transform: translateY(-2px);
}

.btn-secondary {
	background: var(--white);
	color: var(--navy);
	padding: 13px 26px;
	border-radius: 6px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.3px;
	text-decoration: none;
	border: 1.5px solid var(--border);
	transition: border-color 0.2s, box-shadow 0.2s;
	box-shadow: var(--shadow);
}

.btn-secondary:hover {
	border-color: var(--blue);
	box-shadow: 0 4px 16px rgba(26, 77, 181, 0.1);
}

.hero-stats {
	display: flex;
	gap: 36px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1.5px solid var(--border);
	animation: fadeUp 0.5s 0.4s ease both;
	flex-wrap: wrap;
}

.stat-num {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 2rem;
	font-weight: 800;
	color: var(--blue);
	line-height: 1;
}

.stat-label {
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 3px;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */

.trust-bar {
	background: var(--navy);
	padding: 16px 56px;
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-label {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.35);
	white-space: nowrap;
	margin-right: 32px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
}

.trust-logos {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.trust-logo {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.8px;
	text-transform: uppercase;
	transition: color 0.2s;
	cursor: default;
}

.trust-logo:hover {
	color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   Shared Section Styles
   ========================================================================== */

section {
	padding: 88px 56px;
}

.section-tag {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--blue);
	font-family: "Barlow Condensed", sans-serif;
	margin-bottom: 10px;
}

.section-title {
	font-size: clamp(1.9rem, 3.2vw, 2.7rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--navy);
	margin-bottom: 12px;
}

.section-sub {
	font-size: 0.98rem;
	color: var(--muted);
	line-height: 1.75;
}

/* ==========================================================================
   Fade-Up Animation (IntersectionObserver)
   ========================================================================== */

.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
	background: var(--white);
}

.about-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.about-text .section-sub {
	max-width: 440px;
	margin-bottom: 24px;
}

.cert-row {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
}

.cert-badge {
	background: var(--off2);
	border: 1px solid var(--border);
	color: var(--blue);
	padding: 5px 11px;
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	font-family: "Barlow Condensed", sans-serif;
	letter-spacing: 0.8px;
}

.about-cards {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.about-card {
	background: var(--off);
	border: 1px solid var(--border);
	border-left: 3px solid var(--blue);
	border-radius: 8px;
	padding: 20px 24px;
	transition: box-shadow 0.2s;
}

.about-card:hover {
	box-shadow: var(--shadow-lg);
}

.about-card h4 {
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 5px;
}

.about-card p {
	font-size: 0.86rem;
	color: var(--muted);
	line-height: 1.65;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services {
	background: var(--off);
}

.services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	flex-wrap: wrap;
	gap: 20px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 14px;
}

.svc-card {
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	padding: 32px 26px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
	cursor: default;
}

.svc-card:hover {
	border-color: var(--blue);
	box-shadow: var(--shadow-lg);
	transform: translateY(-3px);
}

.svc-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.svc-card:hover::before {
	transform: scaleX(1);
}

.svc-icon {
	font-size: 1.4rem;
	margin-bottom: 14px;
}

.svc-card h3 {
	font-size: 1.08rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 7px;
}

.svc-card p {
	font-size: 0.85rem;
	line-height: 1.7;
	color: var(--muted);
}

.svc-list {
	margin-top: 12px;
	padding: 0;
	list-style: none;
}

.svc-list li {
	font-size: 0.78rem;
	color: var(--muted2);
	padding: 3px 0 3px 13px;
	position: relative;
	line-height: 1.5;
}

.svc-list li::before {
	content: "\203A";
	position: absolute;
	left: 0;
	color: var(--blue);
	font-weight: 700;
}

/* ==========================================================================
   Technology
   ========================================================================== */

.tech {
	background: var(--white);
}

.tech-header {
	text-align: center;
	margin-bottom: 52px;
}

.tech-header .section-sub {
	max-width: 520px;
	margin: 0 auto;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.tech-card {
	background: var(--off);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	padding: 24px 20px;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.tech-card:hover {
	border-color: var(--blue-lt);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.tech-icon {
	font-size: 1.25rem;
	margin-bottom: 11px;
}

.tech-card h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}

.tech-card p {
	font-size: 0.8rem;
	color: var(--muted);
	line-height: 1.65;
}

/* ==========================================================================
   Threat Map
   ========================================================================== */

.threatmap {
	background: var(--navy);
	padding: 88px 56px;
}

.threatmap-header {
	text-align: center;
	margin-bottom: 40px;
}

.threatmap-header .section-tag {
	color: var(--accent);
}

.threatmap-header .section-title {
	color: var(--white);
}

.threatmap-header .section-sub {
	color: rgba(255, 255, 255, 0.5);
	max-width: 520px;
	margin: 0 auto;
}

.map-container {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
	background: #050e1f;
}

.map-iframe {
	width: 100%;
	height: 520px;
	border: none;
	display: block;
}

.map-overlay-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(5, 14, 31, 0.95);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 14px 24px;
	flex-wrap: wrap;
	gap: 12px;
}

.map-stat {
	display: flex;
	align-items: center;
	gap: 8px;
}

.map-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	animation: blink 1.5s infinite;
}

.map-dot.red {
	background: #ef4444;
}

.map-dot.orange {
	background: #f97316;
}

.map-dot.green {
	background: #22c55e;
}

.map-stat-label {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.5);
	font-family: "Barlow Condensed", sans-serif;
	letter-spacing: 0.5px;
}

.map-stat-val {
	font-size: 0.85rem;
	color: var(--white);
	font-weight: 700;
	font-family: "Barlow Condensed", sans-serif;
}

.map-powered {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
	font-family: "Barlow Condensed", sans-serif;
}

/* ==========================================================================
   Why Us
   ========================================================================== */

.why {
	background: var(--off);
}

.why-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}

.diff-items {
	display: flex;
	flex-direction: column;
}

.diff-item {
	display: flex;
	gap: 16px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border);
}

.diff-item:last-child {
	border-bottom: none;
}

.diff-num {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--blue);
	background: var(--off2);
	border: 1px solid var(--border2);
	width: 30px;
	height: 30px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.diff-item h4 {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 4px;
}

.diff-item p {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.65;
}

.why-visual {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.why-callout {
	background: var(--navy);
	border-radius: 12px;
	padding: 28px;
	color: var(--white);
	box-shadow: var(--shadow-lg);
}

.callout-stat {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 2.8rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
}

.callout-label {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 4px;
}

.callout-sub {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 12px;
	line-height: 1.65;
}

.why-certs {
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 12px;
	padding: 24px;
}

.why-certs h4 {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--blue);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 12px;
	font-family: "Barlow Condensed", sans-serif;
}

.cert-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.cert-item {
	font-size: 0.8rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 5px;
}

.cert-item::before {
	content: "\2713";
	color: var(--blue);
	font-weight: 700;
	font-size: 0.78rem;
}

/* ==========================================================================
   Compliance
   ========================================================================== */

.compliance {
	background: var(--white);
}

.compliance-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.comp-badges {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.comp-badge {
	background: var(--off2);
	border: 1.5px solid var(--border);
	color: var(--navy);
	padding: 9px 16px;
	border-radius: 5px;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.6px;
	transition: border-color 0.2s, background 0.2s;
}

.comp-badge:hover {
	border-color: var(--blue);
	background: rgba(26, 77, 181, 0.06);
}

.comp-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-top: 6px;
}

.comp-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.55;
}

.comp-list li::before {
	content: "\2192";
	color: var(--blue);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
	background: var(--off);
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}

.contact-info {
	padding-top: 8px;
}

.contact-info .section-sub {
	max-width: 400px;
	margin-bottom: 32px;
}

.contact-details-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-detail {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--muted);
}

.contact-detail strong {
	color: var(--navy);
}

.contact-icon {
	width: 36px;
	height: 36px;
	background: var(--off2);
	border: 1px solid var(--border);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.contact-form {
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: 12px;
	padding: 36px;
	box-shadow: var(--shadow);
}

.contact-form h3 {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 6px;
}

.contact-form .form-sub {
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 24px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 12px;
}

.form-group {
	margin-bottom: 12px;
}

.form-group label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 5px;
	letter-spacing: 0.3px;
	font-family: "Barlow Condensed", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 11px 14px;
	background: var(--off);
	border: 1.5px solid var(--border);
	border-radius: 6px;
	font-family: "Barlow", sans-serif;
	font-size: 0.88rem;
	color: var(--navy);
	transition: border-color 0.2s, box-shadow 0.2s;
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(26, 77, 181, 0.08);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-group select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6E8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.btn-submit {
	width: 100%;
	background: var(--blue);
	color: var(--white);
	padding: 13px;
	border-radius: 6px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.5px;
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	box-shadow: 0 4px 16px rgba(26, 77, 181, 0.25);
	margin-top: 4px;
}

.btn-submit:hover {
	background: var(--blue-mid);
	transform: translateY(-1px);
}

/* ==========================================================================
   CTA Band
   ========================================================================== */

.cta-band {
	background: var(--navy);
	padding: 72px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 28px;
}

.cta-band h2 {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--white);
	max-width: 460px;
}

.cta-band p {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.92rem;
	max-width: 360px;
	line-height: 1.65;
	margin-top: 7px;
}

.cta-actions {
	display: flex;
	gap: 11px;
	flex-wrap: wrap;
	align-items: center;
}

.btn-white {
	background: var(--white);
	color: var(--navy);
	padding: 13px 26px;
	border-radius: 6px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.3px;
	text-decoration: none;
	transition: background 0.2s;
}

.btn-white:hover {
	background: var(--off2);
}

.btn-outline-white {
	background: transparent;
	color: var(--white);
	padding: 13px 26px;
	border-radius: 6px;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.3px;
	text-decoration: none;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	transition: border-color 0.2s;
}

.btn-outline-white:hover {
	border-color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
	background: var(--off);
	padding: 56px 56px 28px;
	border-top: 1px solid var(--border);
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 44px;
	margin-bottom: 44px;
}

.footer-logo {
	height: 40px;
	margin-bottom: 14px;
	display: block;
}

.footer-logo-text {
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--navy);
	display: block;
	margin-bottom: 14px;
}

.footer-desc {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.7;
	max-width: 260px;
}

.footer-col h4 {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--muted2);
	margin-bottom: 14px;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 8px;
}

.footer-col a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.85rem;
	transition: color 0.2s;
}

.footer-col a:hover {
	color: var(--navy);
}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.77rem;
	color: var(--muted2);
	flex-wrap: wrap;
	gap: 8px;
}

/* ==========================================================================
   WordPress Admin Bar Offset
   ========================================================================== */

.admin-bar nav {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar nav {
		top: 46px;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
	nav {
		padding: 0 20px;
		height: 58px;
	}

	.nav-hamburger {
		display: flex;
	}

	.nav-links {
		display: none;
		position: fixed;
		top: 58px;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(16px);
		flex-direction: column;
		padding: 24px 20px;
		gap: 16px;
		border-bottom: 1px solid var(--border);
		box-shadow: 0 8px 32px rgba(13, 30, 61, 0.1);
	}

	.nav-links.open {
		display: flex;
	}

	section,
	.hero,
	footer,
	.cta-band,
	.trust-bar,
	.threatmap {
		padding-left: 20px;
		padding-right: 20px;
	}

	.about-layout,
	.why-layout,
	.compliance-inner,
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

	.hero-stats {
		gap: 20px;
	}

	.hero-deco {
		display: none;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.map-iframe {
		height: 340px;
	}
}

@media (max-width: 600px) {
	.footer-top {
		grid-template-columns: 1fr;
	}

	.cta-band {
		text-align: center;
		justify-content: center;
	}

	.cta-actions {
		justify-content: center;
	}
}

/* ==========================================================================
   Standalone Pages
   ========================================================================== */

.page-main {
	padding-top: 64px; /* clear fixed nav */
}

.page-section-inner {
	max-width: 820px;
	margin: 0 auto;
}

.page-section .section-title {
	margin-bottom: 24px;
}

.page-body {
	color: var(--muted);
	line-height: 1.7;
}

.page-body h2,
.page-body h3 {
	color: var(--navy);
	margin: 1.4em 0 0.5em;
}

.page-body a {
	color: var(--blue);
}

.page-body ul,
.page-body ol {
	margin: 1em 0 1em 1.4em;
}

.page-body p {
	margin-bottom: 1em;
}
