:root {
  --navy: #0a3c5a;
  --navy-900: #072e45;
  --orange: #f49a1a;
  --slate: #6b7786;
  --light: #f7f8fa;
  --mid: #e7ecf2;
  --white: #ffffff;
  --success: #2aa773;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(7, 59, 92, .15);
}

/* Base */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #0d1b2a;
  background: var(--light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--orange);
  color: #1f2937;
  border: 0;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.btn:hover {
  filter: brightness(.98);
}

.btn.secondary {
  background: var(--navy);
  color: #fff;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 1px 0 rgba(7, 59, 92, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 25px 14px 5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* moved from inline */
}

.logo img {
  height: 72px; /* moved from inline */
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
  font-weight: 800;
}

.logo-text {
  font-weight: 800;
  letter-spacing: .2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #0f172a;
  font-weight: 600;
}

nav a:hover {
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  background: var(--navy);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  padding: 64px 0;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  margin: .2rem 0 1rem;
}

.hero p {
  font-size: clamp(16px, 2.2vw, 20px);
  opacity: .95;
}

.hero-card {
  background: #0b3a5c;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 18px; /* moved from inline */
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.hero img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* hero CTA wrapper (moved from inline) */
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

/* Sections */
section {
padding: 80px 25px;
}

h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0 0 14px;
}

.sub {
  color: var(--slate);
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid #e7edf4;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: .2rem 0 8px;
  font-size: 20px;
}

.check {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(42, 167, 115, .12);
  color: var(--success);
  margin-right: .5rem;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-section {
  background: var(--white); /* moved from inline */
}

.step {
  background: var(--white);
  border: 1px dashed #cfd9e4;
  border-radius: 16px;
  padding: 18px;
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Contact */
.contact {
  background: linear-gradient(180deg, #fff, var(--mid));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
}

.info {
  background: var(--white);
  border: 1px solid #e7edf4;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info .row {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #dbe5ef;
  background: #fff;
}

/* Form */
form {
  background: var(--white);
  border: 1px solid #e7edf4;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
textarea,
select {
  width: 95%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid #cfd9e4;
  outline: 0;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.muted {
  color: var(--slate);
  font-size: 14px;
}

/* hidden anti-bot helper moved from inline */
.hidden-field {
  position: absolute;
  left: -5000px;
}

/* form actions moved from inline */
.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.info .tiny {
  margin-top: 10px; /* moved from inline */
}

/* CTA band moved from inline */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #0a4f7a);
  color: #fff;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

/* Footer */
footer {
  padding: 40px 0;
  color: #445468;
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.tiny {
  font-size: 13px;
  color: #6b7786;
}

/* --- Privacy page specific rules moved from privacy-new.html --- */
/* keep selectors scoped to .policy so they won't overwrite global styles */

.policy-container {
  max-width: 900px;
  padding: 48px 20px;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto;
}

.policy-header {
  text-align: center;
  margin-bottom: 28px;
  border-bottom: 3px solid var(--navy);
  padding-bottom: 18px;
}

.policy h1 {
  font-size: 28px;
  margin: 8px 0;
}

.policy .last-updated {
  color: var(--slate);
  font-size: 0.95rem;
}

/* spacing for headings/paragraphs/lists inside policy */
.policy h2,
.policy p,
.policy .highlight {
  margin-top: 18px;
}

.policy ul {
  margin-top: 12px;
  margin-left: 20px;
  padding-left: 0;
}

.policy ul li {
  margin: 6px 0; /* reduced spacing between list items */
}

/* highlight box */
.highlight {
  background: #fff3cd;
  padding: 15px;
  border-left: 4px solid #ffc107;
  border-radius: 6px;
}

/* Re-style all body copy in the policy to fixed-width with no extra formatting */
.policy p,
.policy ul,
.policy li,
.policy .highlight,
.policy .last-updated,
.policy a {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", "Segoe UI Mono", "Oxygen Mono", "Ubuntu Mono", "Courier New", monospace;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  color: inherit;
  text-align: left;
  white-space: normal;
}

/* remove strong/emphasis styling inside policy text */
.policy strong,
.policy b,
.policy em,
.policy i {
  font-weight: 400;
  font-style: normal;
}

/* policy footer (moved from inline) */
.policy-footer {
  margin-top: 22px;
  text-align: center;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  nav ul {
    display: none;
  }
}

/* Utility */
#contact-heading {
  margin-top: 0; /* moved from inline */
}