/* ============================================================
   CAER Technologies — Global Stylesheet
   Design system matched to forward.html (navy + gold + stars)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

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

/* ── Design Tokens ── */
:root {
  --navy:         #0a1628;
  --navy-mid:     #0d1e38;
  --blue:         #10284c;
  --accent:       #1b4f93;
  --gold:         #c8922a;
  --gold-light:   #e8b84b;
  --gold-pale:    #f5dfa0;
  --tx-red:       #bf1a2f;
  --white:        #ffffff;
  --gray:         #a0aec0;
  --text-soft:    rgba(255,255,255,0.65);
  --text-muted:   rgba(255,255,255,0.4);
  --card-bg:      rgba(255,255,255,0.04);
  --card-border:  rgba(200,146,42,0.15);
  --radius:       10px;
  --shadow:       0 10px 30px rgba(0,0,0,0.35);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.55);
  --max-width:    1200px;
}

/* ── Base ── */
html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

/* ── Utility ── */
.gold        { color: var(--gold-light); }
.accent-text { color: var(--accent); }


/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,42,0.2);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  position: relative;
}

/* Logo */
.logo img {
  height: 62px;
  width: auto;
  display: block;
}

/* Nav-orb fallback if logo is missing */
.nav-orb {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 32% 32%, #a8c8e8, #2563b8 38%, #0a1628 76%);
  border-radius: 50%;
  border: 1.5px solid rgba(200,146,42,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.nav-orb span {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* Primary nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.site-nav > a,
.site-nav > .nav-item > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  transition: color 0.2s;
}

.site-nav > a:hover,
.site-nav > .nav-item > a:hover {
  color: var(--gold-light);
}

/* Dropdown caret */
.has-dropdown > a::after {
  content: "▾";
  font-size: 11px;
  margin-left: 5px;
  opacity: 0.7;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy-mid);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 10px 0;
  z-index: 1100;
}

.dropdown a {
  display: block;
  padding: 11px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover {
  background: rgba(200,146,42,0.08);
  color: var(--gold-light);
}

@media (min-width: 901px) {
  .nav-item .dropdown {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
  }
}

/* CTA button in nav */
.site-nav .cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  min-height: unset;
  transition: background 0.2s, transform 0.15s;
}

.site-nav .cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
  transform: translateY(-1px);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  background: var(--navy);
  overflow: hidden;
}

/* Animated star canvas */
#hero-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Blue-tinted diagonal panel */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(160deg, rgba(26,58,107,0.25) 0%, rgba(37,99,184,0.10) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  border-left: 1px solid rgba(200,146,42,0.12);
}

/* Gold left accent bar */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 2px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero {
  padding: 110px 0 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.35);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Gold divider */
.hero-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 28px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.45s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(200,146,42,0.5);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-1px);
}


/* ============================================================
   SECTION CHROME
   ============================================================ */
section { position: relative; }

section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,146,42,0.18), transparent);
}

.services,
.security,
.service-area {
  padding: 90px 0;
}

.services {
  background: var(--navy-mid);
}

.security {
  text-align: center;
  background: var(--navy);
}

.service-area {
  background: var(--blue);
  text-align: center;
}

.services h2,
.security h2,
.service-area h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 16px;
}

/* Gold underline on section headings */
.services h2::after,
.security h2::after,
.service-area h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 0;
  border-radius: 2px;
}

.security p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-soft);
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 35px;
  color: var(--text-soft);
}

.service-area p {
  color: var(--text-soft);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
}


/* ============================================================
   GRIDS
   ============================================================ */
.service-grid,
.benefits-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
}

.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 40px;
}

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


/* ============================================================
   CARDS
   ============================================================ */
.card,
.benefit-item,
.pricing-card,
.contact-info {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card p {
  color: var(--text-soft);
  margin-bottom: 20px;
}

.card .btn-primary {
  margin-top: auto;
  align-self: flex-start;
}

/* Shimmer on hover */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(200,146,42,0.07), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,146,42,0.45);
  box-shadow: var(--shadow-hover);
}

.card:hover::before { opacity: 1; }

.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.service-icon {
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(200,146,42,0.25));
}

/* Benefit cards */
.benefit-item {
  padding: 25px;
  text-align: left;
}

.benefit-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.benefit-item p {
  color: var(--text-soft);
  margin: 0;
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,146,42,0.4);
  box-shadow: var(--shadow-hover);
}

.featured-plan {
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(200,146,42,0.2), var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: var(--text-soft);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
}

.pricing-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,146,42,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.pricing-features li::before {
  content: '✓  ';
  color: var(--gold);
  font-weight: 700;
}

.pricing-btn {
  margin-top: auto;
  text-align: center;
}


/* ============================================================
   RISK CHECK SECTION
   ============================================================ */
.risk-check {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
  border-top: 1px solid rgba(200,146,42,0.12);
  border-bottom: 1px solid rgba(200,146,42,0.12);
  padding: 4rem 0;
}

.risk-check-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.risk-check-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.9rem;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.risk-check h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1rem;
}

.risk-check p {
  color: var(--text-soft);
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

.risk-check-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.5rem;
}

.risk-check-points li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.risk-check-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.risk-check-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,146,42,0.15);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.risk-tier {
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.risk-tier--low  { background: rgba(39,174,96,0.12);  border-color: rgba(39,174,96,0.25);  color: #b8f0cb; }
.risk-tier--mid  { background: rgba(242,201,76,0.12); border-color: rgba(242,201,76,0.25); color: #f9e49a; }
.risk-tier--high { background: rgba(235,87,87,0.12);  border-color: rgba(235,87,87,0.25);  color: #ffc5c5; }

.risk-check-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0.25rem 0 0;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(200,146,42,0.2);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.contact-form button { border: none; cursor: pointer; }

.contact-info { padding: 30px; }

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.contact-info p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.contact-form-embed {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.contact-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: none;
  border-radius: 8px;
  background: #fff;
}


/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(200,146,42,0.15);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 28px;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 60px 0;
  background: #06101e;
  border-top: 1px solid rgba(200,146,42,0.15);
}

footer h3,
footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

footer ul { list-style: none; }

footer li { margin-bottom: 10px; }

footer a {
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color 0.2s;
}

footer a:hover { color: var(--gold-light); }

footer p {
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Gold separator between footer columns */
.footer-grid {
  border-top: 1px solid rgba(200,146,42,0.1);
  padding-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  border-top: 1px solid rgba(200,146,42,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}


/* ============================================================
   STAR FIELD  (used on hero via #hero-stars SVG or JS canvas)
   ============================================================ */
.star-dot {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.4); }
}


/* ============================================================
   PAGE-LEVEL HERO VARIANTS (service pages)
   ============================================================ */
.page-hero {
  padding: 110px 0 90px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 2px;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}


/* ============================================================
   SECURITY / COMPLIANCE NOTICE
   ============================================================ */
.compliance-notice {
  background: rgba(191,26,47,0.08);
  border: 1px solid rgba(191,26,47,0.25);
  border-radius: 10px;
  padding: 20px 24px;
  color: #ffc5c5;
}

.compliance-notice strong {
  color: #ff8a8a;
}


/* ============================================================
   TRUST / TESTIMONIALS
   ============================================================ */
.trust-section-bg {
  background: var(--navy-mid);
  border-top: 1px solid rgba(200,146,42,0.1);
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px;
  text-align: center;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: all 0.3s;
}

.trust-card:hover {
  border-color: rgba(200,146,42,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.trust-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.trust-quote {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.trust-item + .trust-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,146,42,0.2);
}

.trust-person {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.trust-biz {
  font-size: 12px;
  color: var(--gold-light);
  margin-top: 2px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .menu-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(200,146,42,0.15);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .site-nav > a,
  .site-nav > .nav-item > a {
    width: 100%;
    min-height: auto;
    padding: 8px 0;
    color: rgba(255,255,255,0.75);
  }

  .has-dropdown > a::after { content: ''; margin: 0; }

  .nav-item {
    width: 100%;
    display: block;
  }

  .dropdown {
    position: static;
    display: block;
    min-width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0 8px 14px;
    margin-top: 2px;
  }

  .dropdown a {
    padding: 8px 0;
    white-space: normal;
    color: var(--text-soft);
  }

  .site-nav .cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    border-radius: 8px;
  }

  .contact-grid    { grid-template-columns: 1fr; }
  .trust-cards     { grid-template-columns: 1fr; }
  .risk-check-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero,
  .page-hero { padding: 90px 0 70px; }

  .services,
  .security,
  .service-area { padding: 70px 0; }

  .trust-inner { padding: 60px 24px; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .logo img { height: 52px; }
}

/* ============================================================
   ZOHO iFrame Wrap
   ============================================================ */
   
.zoho-wrap {
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.zoho-header {
  background: #0d1e38;
}

.zoho-flag {
  display: flex;
  height: 6px;
}

.zf-red   { background: #bf1a2f; flex: 1; }
.zf-white { background: #ffffff; flex: 2; }
.zf-gold  { background: #c8922a; flex: 1; }

.zoho-header-body {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
}

.zoho-star {
  font-size: 52px;
  color: #e8b84b;
  line-height: 1;
  flex-shrink: 0;
}

.zoho-eyebrow {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8b84b;
  margin-bottom: 4px;
}

.zoho-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.zoho-sub {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}