/* ShieldSecure — blue & white theme */
:root {
  --bg-deep: #0a1628;
  --bg-card: #132a52;
  --bg-elevated: #1a3a6e;
  --surface: #ffffff;
  --surface-muted: #e8f1ff;
  --text: #0f1c3d;
  --text-muted: #5a6b8a;
  --accent: #1d6cdf;
  --accent-bright: #3b82f6;
  --accent-dark: #1e40af;
  --accent-soft: rgba(29, 108, 223, 0.12);
  --accent-glow: rgba(29, 108, 223, 0.35);
  --cyan: #38bdf8;
  --border: rgba(255, 255, 255, 0.12);
  --border-light: rgba(20, 60, 130, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 80px rgba(15, 40, 95, 0.2);
  --font-display: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --max: 1160px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-dark) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-main a {
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s, background 0.2s;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.nav-main a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-pill {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.phone-pill strong {
  color: var(--text);
  font-weight: 600;
}

@media (min-width: 900px) {
  .phone-pill {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--accent-dark);
  color: #fff;
}

.btn-dark:hover {
  background: #172554;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--accent-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .menu-toggle {
    display: flex;
  }

  .nav-main {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(15, 40, 95, 0.08);
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease;
  }

  .nav-main.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-main a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
  }

  .header-cta .btn-primary {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  background: var(--bg-deep);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a1628 0%, #0f2847 100%);
  pointer-events: none;
}

/* Hero banner photo (Securepress template — pg_hd.jpg) */
.hero.hero--with-banner::before {
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(15, 40, 95, 0.78) 45%, rgba(10, 22, 40, 0.92) 100%),
    url("../images/pg_hd.jpg") center/cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 5rem 1.5rem 6rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(147, 197, 253, 0.45);
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 420px;
}

.stat {
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #93c5fd;
  display: block;
  line-height: 1.2;
}

.stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  min-height: 320px;
}

.hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: #fff;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-feature svg {
  flex-shrink: 0;
  color: var(--cyan);
  margin-top: 2px;
}

.hero-float {
  position: absolute;
  bottom: -12px;
  right: -8px;
  padding: 0.75rem 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.hero-float strong {
  color: #93c5fd;
}

.hero-figure {
  margin: 0 0 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 570 / 390;
  max-height: 260px;
}

@media (min-width: 960px) {
  .hero-figure img {
    max-height: 300px;
  }
}

/* “Why choose” patterned section (why-choose-bg.jpg) */
.section--why-bg {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 252, 255, 0.98) 100%), url("../images/why-choose-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Testimonials with photo backdrop (testimonial_bg.jpg) */
.section--testimonials-photo {
  position: relative;
  background: var(--bg-deep);
}

.section--testimonials-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.93) 0%, rgba(10, 22, 40, 0.88) 100%), url("../images/testimonial_bg.jpg") center/cover no-repeat;
  pointer-events: none;
}

.section--testimonials-photo .section-inner {
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 2px solid rgba(147, 197, 253, 0.5);
}

/* Sections */
.section {
  padding: 4.5rem 1.5rem;
}

.section-tight {
  padding: 3rem 1.5rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  color: var(--text);
}

.section-intro {
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 2.5rem;
}

/* Highlights */
.bg-surface {
  background: var(--surface);
}

.bg-muted {
  background: var(--surface-muted);
}

.bg-dark {
  background: var(--bg-deep);
  color: #fff;
}

.bg-dark .section-intro,
.bg-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.bg-dark h2 {
  color: #fff;
}

.highlights-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.highlight-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(15, 40, 95, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.highlight-card p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

/* Service cards */
.services-preview {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  border-radius: var(--radius);
  padding: 1.75rem;
  background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}

.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-dark) 0%, #172554 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #1e40af 0%, var(--bg-deep) 100%);
  color: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band p {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border-light);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

/* Clients */
.clients-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  opacity: 0.85;
}

.client-pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px dashed rgba(29, 108, 223, 0.35);
}

/* Certifications */
.cert-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cert-item {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.15rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.25s;
}

.faq-item.is-open button::after {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  padding-bottom: 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Page header (inner pages) */
.page-hero {
  background: var(--bg-deep);
  color: #fff;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero.page-hero--banner::before {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(15, 40, 95, 0.85) 100%), url("../images/pg_hd.jpg") center/cover no-repeat;
}

.about-page-figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 40px rgba(15, 40, 95, 0.1);
}

.about-page-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero .section-inner {
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 52ch;
}

/* About layout */
.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 880px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.value-list li {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.mission-box {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: #fff;
  border: 1px solid var(--border);
}

.mission-box h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--accent);
}

.mission-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* Services detail */
.service-detail {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(15, 40, 95, 0.06);
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail h2 {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.service-detail .tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.service-detail ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.service-detail .hint {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  font-size: 0.9rem;
  border-left: 3px solid var(--accent);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: #fff;
  border: 1px solid var(--border);
}

.contact-card h2 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-list strong {
  color: var(--accent);
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.form-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 48px rgba(15, 40, 95, 0.08);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(29, 108, 223, 0.35);
  color: var(--accent-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  background: #060f24;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--border);
}

.site-footer .logo {
  color: #fff;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 1rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: #93c5fd;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  text-align: center;
}

.emergency-strip {
  background: linear-gradient(90deg, #1e3a8a 0%, var(--accent-dark) 50%, #1e3a8a 100%);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.emergency-strip a {
  color: #bfdbfe;
  text-decoration: underline;
}

/* Careers teaser */
.careers-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  color: #fff;
}

.careers-teaser p {
  margin: 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.85);
}

.careers-teaser strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
