/* ============================================================
   Gulf Shield Technologies — Global Stylesheet
   Consolidation of existing inline CSS + multi-page extensions
   No frameworks. No preprocessors. CSS custom properties only.
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --navy: #1a3a5c;
  --navy-deep: #122a44;
  --navy-darker: #0d1f33;
  --green: #27ae60;
  --green-bright: #34d058;
  --green-dark: #1a8a4a;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --gray-100: #c5ced6;
  --gray-300: #6b7c8a;
  --gray-500: #4a5c6a;
  --gray-700: #2e3e4a;
  --text: #1a1a2e;
  --red: #c0392b;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* --- ADA: Focus styles for keyboard navigation --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* --- ADA: Skip to content link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 0 0 6px 6px;
  z-index: 200;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 31, 51, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--green);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand svg { width: 32px; height: 36px; }
.nav-brand-text {
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-size: 10px;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-phone {
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ===== SHARED SECTION STYLES ===== */
section { padding: 80px 40px; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--gray-100); }
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 50%, var(--navy-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(39,174,96,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(39,174,96,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-phone { margin-top: 28px; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.hero-phone a { color: var(--white); text-decoration: none; }
.hero-phone a:hover { color: var(--green); }

/* ===== PAGE HERO (non-homepage) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 50%, var(--navy-darker) 100%);
  padding: 120px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .breadcrumb {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero .breadcrumb a:hover { color: var(--green); }

/* ===== STAT BAR ===== */
.stat-bar {
  background: var(--navy-darker);
  border-top: 1px solid rgba(39,174,96,0.2);
  border-bottom: 1px solid rgba(39,174,96,0.2);
  padding: 24px 40px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number { font-size: 28px; font-weight: 800; color: var(--green); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ===== PROBLEM SECTION ===== */
.problem { background: var(--off-white); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.problem-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: var(--green); }
.problem-icon {
  width: 44px; height: 44px;
  background: rgba(192,57,43,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.problem-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.problem-card p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }
.problem-stat {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 8px;
  padding: 28px;
  border-left: 4px solid var(--red);
  grid-column: 1 / -1;
}
.problem-stat p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7; }
.problem-stat strong { color: var(--white); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
  position: relative;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.service-icon {
  width: 40px; height: 40px;
  background: rgba(39,174,96,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.service-card p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* Services page: group labels */
.services-group-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 48px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
}
.services-group-label:first-of-type { margin-top: 0; }
.services-group-sub {
  font-size: 15px;
  color: var(--gray-500);
  margin: -12px 0 20px;
}

/* ===== PRICING ===== */
.pricing { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { border-color: var(--green); }
.price-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.price-card .price-desc { font-size: 15px; color: var(--gray-500); margin-bottom: 20px; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--gray-500); }
.price-amount-range { font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-amount-range span { font-size: 14px; font-weight: 500; color: var(--gray-500); }
.price-includes { list-style: none; margin-top: 20px; text-align: left; }
.price-includes li {
  font-size: 15px;
  color: var(--gray-700);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-includes li:last-child { border-bottom: none; }
.check { color: var(--green); font-weight: 700; font-size: 15px; flex-shrink: 0; }
.price-example { text-align: center; margin-top: 32px; font-size: 15px; color: var(--gray-500); }
.price-example strong { color: var(--navy); font-size: 20px; }

/* Highlight card (IT Essentials) */
.price-card--highlight {
  border-color: var(--green);
  position: relative;
}
.price-card--highlight::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 12px;
}

/* Compact card (Existing Clients) */
.price-card--compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-card--compact p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  text-align: left;
  margin: 12px 0 20px;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding-top: 14px;
}
.price-note {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
.why-item { text-align: center; padding: 20px; }
.why-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 2; }
.why-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* ===== VERTICALS ===== */
.verticals { background: var(--off-white); }
.vertical-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px;
}
.vtag {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 24px;
  letter-spacing: 0.5px;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 50%, var(--navy-darker) 100%);
  color: var(--white);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.contact .section-inner { position: relative; z-index: 1; }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: rgba(255,255,255,0.6); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--white);
}
.contact-line {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}
.contact-line svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-line a { color: rgba(255,255,255,0.85); text-decoration: none; }
.contact-line a:hover { color: var(--green); }
.contact-line-big { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.contact-line-big a { color: var(--white); text-decoration: none; }
.contact-line-big a:hover { color: var(--green); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--green); }
.contact-form select option { background: var(--navy-deep); color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.contact-form button:hover { background: var(--green-dark); }
.form-note { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 4px; }
/* Honeypot: positioned off-screen, not display:none */
.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
  tab-index: -1;
}

/* Contact page on light background */
.contact-page { background: var(--off-white); color: var(--text); }
.contact-page .section-title { color: var(--navy); }
.contact-page .section-sub { color: var(--gray-500); }
.contact-page .contact-info h3 { color: var(--navy); }
.contact-page .contact-line { color: var(--gray-700); }
.contact-page .contact-line a { color: var(--navy); }
.contact-page .contact-line a:hover { color: var(--green); }
.contact-page .contact-line-big a { color: var(--navy); }
.contact-page .contact-form input,
.contact-page .contact-form textarea,
.contact-page .contact-form select {
  background: var(--white);
  border-color: var(--gray-100);
  color: var(--text);
}
.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder { color: var(--gray-300); }
.contact-page .contact-form select option { background: var(--white); color: var(--text); }
.contact-page .form-note { color: var(--gray-500); }

/* ===== BLOG ===== */
.blog-list { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(26, 58, 92, 0.1);
  transform: translateY(-2px);
}
.blog-card-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(39, 174, 96, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.blog-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }
.blog-card-meta { font-size: 14px; color: var(--gray-300); font-weight: 500; }
.blog-card-meta strong { color: var(--gray-500); }

/* Blog article */
.blog-body { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
.blog-body p { font-size: 18px; line-height: 1.8; margin-bottom: 24px; color: var(--gray-700); }
.blog-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; font-weight: 400;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.blog-body h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 36px 0 12px; }
.blog-body strong { color: var(--text); }
.blog-body a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.blog-body a:hover { color: var(--green); }
.blog-body blockquote {
  border-left: 4px solid var(--green);
  background: var(--off-white);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}
.blog-body blockquote p { font-size: 16px; font-style: italic; margin-bottom: 0; color: var(--gray-700); }

/* Blog stat callout */
.stat-callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  border-left: 4px solid var(--red);
}
.stat-callout strong { color: var(--white); }

/* Blog CTA */
.blog-cta {
  background: var(--off-white);
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  margin: 48px 0 32px;
}
.blog-cta h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}
.blog-cta p { font-size: 15px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.6; }
.blog-cta .cta-contact { font-size: 16px; font-weight: 700; }
.blog-cta .cta-contact a { color: var(--navy); text-decoration: none; }
.blog-cta .cta-contact a:hover { color: var(--green); }

/* Blog author */
.blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  margin-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.blog-author-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-author-icon svg { width: 24px; height: 24px; }
.blog-author-info { font-size: 15px; color: var(--gray-500); line-height: 1.5; }
.blog-author-info strong { color: var(--navy); display: block; }

/* Blog process steps */
.process-step {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  align-items: flex-start;
}
.process-num {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.process-content h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.process-content p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 0; }

/* Blog related posts */
.blog-related { max-width: 720px; margin: 0 auto; padding: 0 24px 60px; }
.blog-related h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ===== PROSE CONTENT (about, security, privacy) ===== */
.prose { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
.prose h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; font-weight: 400;
  color: var(--navy);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 32px 0 10px; }
.prose p { font-size: 17px; line-height: 1.8; margin-bottom: 20px; color: var(--gray-700); }
.prose ul { margin: 0 0 20px 24px; }
.prose ul li { font-size: 17px; color: var(--gray-700); line-height: 1.8; margin-bottom: 6px; }
.prose a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--green); }
.prose strong { color: var(--text); }

/* Security page feature grid */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.security-item {
  padding: 24px;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--white);
}
.security-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.security-item p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA BANNER (reusable) ===== */
.cta-banner {
  background: var(--off-white);
  padding: 60px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px; font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-banner p { font-size: 17px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-darker);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 40px 28px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-brand strong { color: var(--white); font-size: 17px; display: block; margin-bottom: 8px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy-darker);
    padding: 20px;
    gap: 16px;
    border-bottom: 2px solid var(--green);
  }
  section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .page-hero { padding: 100px 20px 40px; }
  .stat-bar { gap: 24px; padding: 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-phone { font-size: 18px; }
  .blog-body { padding: 32px 20px 60px; }
  .prose { padding: 32px 20px 60px; }
  .blog-list { padding: 32px 20px 60px; }
  .cta-banner { padding: 40px 20px; }
  footer { padding: 28px 20px; }
  .stat-bar { flex-direction: column; align-items: center; gap: 20px; padding: 24px 20px; }
  .price-amount { font-size: 40px; }
  .price-card--highlight::before { font-size: 10px; padding: 3px 12px; }
  .hero h1 br { display: none; }
  .blog-related { padding: 0 20px 40px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
