/*!
Theme Name: cybershieldadvisory
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cybershieldadvisory
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

cybershieldadvisory is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* ----- CyberShield Advisory - Main styles ----- */

:root {
  --color-bg: #0a0e14;
  --color-bg-elevated: #111820;
  --color-surface: #161d28;
  --color-border: #243044;
  --color-text: #e6edf3;
  --color-text-muted: #8b9cb4;
  --color-accent: #3fb950;
  --color-accent-hover: #56d364;
  --color-accent-muted: rgba(63, 185, 80, 0.15);
  --color-warn: #d29922;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1140px;
  --section-padding: clamp(3rem, 6vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}

/* ----- Header (WP: theme header / custom header) ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo span { color: var(--color-accent); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--color-accent); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg);
}
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn-outline:hover {
  background: var(--color-accent-muted);
}

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text);
  cursor: pointer;
  font-size: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-muted);
}
.nav-toggle[aria-expanded="true"] { border-color: var(--color-accent); }

/* ----- Hero (WP: block / custom section) ----- */
.hero {
  padding: var(--section-padding) 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
/* Hero with banner background image */
.hero-banner {
  position: relative;
  margin: 0;
  max-width: none;
  padding: clamp(4rem, 10vw, 6rem) 1.5rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  background-image: url('https://cybershieldadvisory.devwebdevelopment.online/wp-content/uploads/2026/02/photo-1561156772-a44477f220a5.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 480px) {
  .hero-banner { padding-left: 1rem; padding-right: 1rem; }
}
/* Replace with your own: background-image: url('images/banner.jpg'); */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 20, 0.85) 0%, rgba(10, 14, 20, 0.7) 100%);
  pointer-events: none;
}
.hero-banner .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero-value {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero p {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ----- Trust signals (WP: trust block) ----- */
.trust-signals {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media (max-width: 480px) {
  .trust-inner { padding: 1.5rem 1rem; }
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.trust-number {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
}
.trust-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ----- Section common (WP: reusable section wrapper) ----- */
.section {
  padding: var(--section-padding) 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (max-width: 480px) {
  .section { padding: 2rem 1rem; }
}
.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin: 0 0 2.5rem;
  max-width: 560px;
}

/* ----- Services (WP: services block / Gutenberg columns) ----- */
/* 2x2 grid on desktop; 1 column on small screens */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}
.service-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-border);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.service-card:hover .service-card-image img {
  transform: scale(1.03);
}
.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1rem;
  flex: 1;
}
.service-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
  display: inline-block;
}
.service-card:hover .service-link { color: var(--color-accent-hover); }
.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ----- Frameworks (WP: logos/frameworks block) ----- */
.frameworks {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.frameworks-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding) 1.5rem;
}
@media (max-width: 480px) {
  .frameworks-inner { padding: 2rem 1rem; }
}
.frameworks-inner .section-subtitle { margin-bottom: 2rem; }
.frameworks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.frameworks-list li {
  padding: 0.75rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.frameworks-list li strong { color: var(--color-text); }

/* ----- Industries / Who we serve (WP: industries block) ----- */
.industries-section .section-subtitle { margin-bottom: 2rem; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: 1fr; }
}
.industry-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--color-accent);
}
.industry-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(63, 185, 80, 0.08);
}
.industry-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.industry-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.industry-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

/* Who we serve preview on homepage (links to who-we-serve.html) */
.industries-preview .section-subtitle { margin-bottom: 1.5rem; }
.industries-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .industries-preview-grid { grid-template-columns: 1fr; }
}
.industry-preview-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  transition: border-color 0.2s;
}
.industry-preview-item:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}
.industry-preview-item .industry-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ----- Who we serve page (dedicated layout, not service-page) ----- */
.who-we-serve-page main { padding-bottom: 3rem; }

.who-hero {
  padding: 2.5rem 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.who-hero-inner { max-width: 720px; }
.who-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.who-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.who-breadcrumb a:hover { color: var(--color-accent); }
.who-breadcrumb span { color: var(--color-border); margin: 0 0.5rem; }
.who-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.who-hero-tagline {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.who-industries {
  padding: 2.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.who-industries-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.who-industry-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  min-height: 0;
}
.who-industry-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(63, 185, 80, 0.1);
}
.who-industry-card:nth-child(even) .who-industry-card-image { order: 2; }
.who-industry-card:nth-child(even) .who-industry-card-body { order: 1; }
@media (max-width: 768px) {
  .who-industry-card { grid-template-columns: 1fr; }
  .who-industry-card-image { order: 1 !important; aspect-ratio: 21 / 9; }
  .who-industry-card-body { order: 2 !important; }
}
.who-industry-card-image {
  min-height: 200px;
  background: var(--color-border);
}
.who-industry-card-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.who-industry-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.who-industry-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.who-industry-card-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}
.who-industry-card-body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.65;
}
.who-cta {
  padding-top: 1rem;
}
@media (max-width: 480px) {
  .who-hero,
  .who-industries { padding-left: 1rem; padding-right: 1rem; }
  .who-industry-card-body { padding: 1.25rem; }
}

/* ----- About page (dedicated layout, not service-page) ----- */
.about-page main { padding-bottom: 3rem; }

.about-hero {
  padding: 2.5rem 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.about-hero-inner { max-width: 720px; }
.about-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.about-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.about-breadcrumb a:hover { color: var(--color-accent); }
.about-breadcrumb span { color: var(--color-border); margin: 0 0.5rem; }
.about-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.about-hero-tagline {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.about-intro {
  padding: 2rem 1.5rem;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
}
.about-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-intro-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
}

.about-blocks {
  padding: 2.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-blocks-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .about-blocks-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .about-hero,
  .about-intro,
  .about-blocks,
  .about-values { padding-left: 1rem; padding-right: 1rem; }
  .about-block { padding: 1.25rem; }
  .about-value-card { padding: 1.25rem; }
}
.about-block {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.about-block:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 24px rgba(63, 185, 80, 0.08);
}
.about-block-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.about-block h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-text);
}
.about-block p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.65;
}
.about-block p:last-child { margin-bottom: 0; }

.about-values {
  padding: 2.5rem 1.5rem;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
}
.about-values-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-values-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--color-text);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .about-values-grid { grid-template-columns: 1fr; }
}
.about-value-card {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.about-value-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(63, 185, 80, 0.1);
}
.about-value-icon {
  font-size: 1.75rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.about-value-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.about-value-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.about-cta-section {
  padding-top: 1rem;
}

/* ----- Contact page ----- */
.contact-page main { padding-bottom: 3rem; }

.contact-hero {
  padding: 2.5rem 1.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.contact-hero-inner { max-width: 720px; }
.contact-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.contact-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-breadcrumb a:hover { color: var(--color-accent); }
.contact-breadcrumb span { color: var(--color-border); margin: 0 0.5rem; }
.contact-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.contact-hero-tagline {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-content {
  padding: 2.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .contact-content-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-hero,
  .contact-content { padding-left: 1rem; padding-right: 1rem; }
  .contact-form-wrap,
  .contact-info-columns { padding: 1.25rem; }
}

.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--color-text);
}
.contact-form .form-row {
  margin-bottom: 1.25rem;
}
.contact-form .form-row:last-of-type { margin-bottom: 0; }
.contact-form .form-actions { margin-top: 1.5rem; margin-bottom: 0; }
.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}
.contact-form .required { color: var(--color-accent); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px var(--color-accent-muted);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-columns {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--color-text);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.contact-info-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.contact-info-icon {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}
.contact-info-item h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin: 0;
  font-family: var(--font-mono);
}
.contact-info-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}
.contact-info-item a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--color-accent); }

/* ----- Mission / About (WP: about block) ----- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
  min-height: 0;
}
@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 2rem; }
}
.about-text {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.about-text p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-preview-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 200px;
  height: 100%;
}
.about-preview-image img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .about-preview-image { min-height: 0; height: auto; }
  .about-preview-image img { min-height: 0; height: auto; }
}
.about-section-cta {
  text-align: center;
  margin-top: 2rem;
}
.about-section-cta .btn { margin: 0; }
.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.about-list li:last-child { border-bottom: none; }
.about-list .check {
  color: var(--color-accent);
  flex-shrink: 0;
  font-weight: bold;
}

/* ----- CTA (WP: CTA block) ----- */
.cta-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
}
.cta-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.cta-block p {
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ----- Footer (WP: theme footer) ----- */
.site-footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand .site-logo { font-size: 1.125rem; }
.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-accent); }
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
  }
  .footer-brand p { max-width: none; }
  .footer-links { gap: 0.75rem 1.5rem; }
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ----- Mobile (nav toggle + menu) ----- */
@media (max-width: 640px) {
  .header-inner { padding: 1rem; }
  .nav-toggle { display: flex; }
  .nav-wrapper .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    background: var(--color-bg-elevated);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .site-header.nav-open .nav-menu {
    display: flex;
  }
  .nav-menu li {
    border-bottom: 1px solid var(--color-border);
  }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu a {
    display: block;
    padding: 0.875rem 0;
  }
  .header-inner .btn-primary { display: none; }
}

@media (min-width: 641px) {
  .nav-wrapper .nav-menu { display: flex !important; }
}

/* ----- Service page (WP: single service template) ----- */
.service-page main { padding-bottom: 3rem; }

/* Service hero banner with background image (no repeat, single cover) */
.service-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin: 0;
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.97) 0%, rgba(10, 14, 20, 0.7) 45%, rgba(10, 14, 20, 0.4) 100%);
  pointer-events: none;
}
.service-hero--hipaa { background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600&q=80'); }
.service-hero--vciso { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1600&q=80'); }
.service-hero--smb { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80'); }
.service-hero--compliance { background-image: url('https://images.unsplash.com/photo-1553877522-56169e239f68?w=1600&q=80'); }

.service-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2.5rem;
}
.service-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.service-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.service-breadcrumb a:hover { color: var(--color-accent); }
.service-breadcrumb span { color: var(--color-border); margin: 0 0.5rem; }
.service-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.service-hero .service-hero-tagline {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 540px;
}

/* Mid-page image block (between content sections for visual break) */
.service-mid-image {
  max-width: var(--max-width);
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}
.service-mid-image-inner {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.service-mid-image-inner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}
.service-mid-image-caption {
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

/* Service body: sections with card-style and accent */
.service-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
}
.service-section {
  margin-bottom: 2rem;
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  border-left: 3px solid var(--color-accent);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-section:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(63, 185, 80, 0.08);
}
.service-section:last-of-type { margin-bottom: 0; }
.service-section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.service-section p {
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
  line-height: 1.65;
  font-size: 0.9375rem;
}
.service-section p:last-child { margin-bottom: 0; }
.service-section ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.service-section ul:last-child { margin-bottom: 0; }
.service-section li { margin-bottom: 0.35rem; }

/* CTA block on service page */
.service-cta {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-elevated) 100%);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.service-cta h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.service-cta p {
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
}
.service-cta .btn { margin: 0 0.25rem; }

@media (max-width: 640px) {
  .service-hero { min-height: 35vh; }
  .service-section { padding: 1.25rem; }
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}