:root {
  --ar-blue: #002868;
  --ar-blue-light: #14417f;
  --ar-blue-pale: #eaf0f8;
  --ar-red: #c8102e;
  --ar-red-dark: #a20d25;
  --ink: #1c2430;
  --ink-soft: #4a5568;
  --paper: #ffffff;
  --paper-soft: #f7f8fa;
  --border: #e1e5eb;
  --shadow: 0 4px 20px rgba(0, 40, 104, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 40, 104, 0.14);
  --radius: 10px;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top striped strip, subtle nod to state flag */
.top-strip {
  height: 5px;
  background: linear-gradient(90deg, var(--ar-red) 0 33.3%, var(--paper) 33.3% 66.6%, var(--ar-blue) 66.6% 100%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  height: 42px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ar-blue);
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--ar-red);
  transition: width 0.25s ease;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--ar-blue);
}

.site-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--ar-blue);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: var(--ar-blue-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ar-blue-pale) 0%, var(--paper) 65%);
  padding: 96px 0 64px;
}

.hero-diamond {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 480px;
  height: 480px;
  background: var(--ar-blue);
  opacity: 0.05;
  transform: rotate(45deg);
  border-radius: 60px;
  animation: float-diamond 12s ease-in-out infinite;
}

@keyframes float-diamond {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(24px); }
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ar-red);
  margin: 0 0 20px;
  opacity: 0;
  animation: rise 0.7s ease forwards;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ar-red);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(200, 16, 46, 0); }
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 700;
  color: var(--ar-blue);
  margin: 0 0 20px;
  line-height: 1.18;
  opacity: 0;
  animation: rise 0.7s ease 0.1s forwards;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 auto 36px;
  max-width: 620px;
  opacity: 0;
  animation: rise 0.7s ease 0.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
  opacity: 0;
  animation: rise 0.7s ease 0.3s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--ar-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ar-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--ar-blue);
  border-color: var(--ar-blue);
}

.btn-ghost:hover {
  background: var(--ar-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Trust bar */
.trust-bar {
  background: var(--ar-blue);
  color: #fff;
  padding: 14px 0;
}

.trust-bar-inner {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  font-weight: 500;
}

/* Services */
.services {
  padding: 96px 0;
  background: var(--paper);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ar-blue);
  text-align: center;
  margin: 0 0 12px;
  font-weight: 700;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
  margin: 40px 0 0;
}

.service-card {
  background: var(--paper-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--ar-blue);
  margin-bottom: 18px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.service-card:hover .service-icon {
  color: var(--ar-red);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 10px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin: 0;
}

/* Trust / seal */
.trust-section {
  padding: 96px 0;
  background: var(--ar-blue-pale);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-copy .section-title,
.trust-copy .section-sub {
  text-align: left;
  margin-left: 0;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ar-blue);
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.trust-seal {
  display: flex;
  justify-content: center;
}

.seal-svg {
  width: 260px;
  height: 260px;
  animation: seal-spin 40s linear infinite;
}

@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.seal-ring-outer {
  fill: none;
  stroke: var(--ar-blue);
  stroke-width: 2;
}

.seal-ring-inner {
  fill: none;
  stroke: var(--ar-red);
  stroke-width: 1;
}

.seal-text {
  font-size: 9px;
  letter-spacing: 2px;
  fill: var(--ar-blue);
  font-family: var(--sans);
  font-weight: 600;
}

.seal-diamond {
  fill: var(--ar-red);
  animation: seal-counter-spin 40s linear infinite;
  transform-origin: 100px 100px;
}

@keyframes seal-counter-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Coverage */
.coverage {
  padding: 96px 0;
  background: var(--paper);
}

.coverage-inner { text-align: center; }

.region-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.region {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ar-blue);
  background: var(--paper-soft);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.region:hover {
  background: var(--ar-blue);
  color: #fff;
  border-color: var(--ar-blue);
  transform: translateY(-2px);
}

/* CTA / Contact */
.cta-section {
  padding: 96px 0;
  background: var(--ar-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: var(--ar-red);
  opacity: 0.08;
  transform: rotate(45deg);
  border-radius: 50px;
}

.cta-inner {
  position: relative;
  max-width: 760px;
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 12px;
  text-align: center;
}

.cta-section > .container > p,
.cta-inner > p {
  text-align: center;
  color: #cdd8ea;
  margin: 0 0 40px;
}

.contact-box {
  display: flex;
  justify-content: center;
}

.btn-email {
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.02rem;
}

.email-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: #0d1b33;
  color: #b9c4d6;
  padding-top: 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-tag {
  color: #8fa1bd;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #b9c4d6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  color: #7488a5;
  text-align: center;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .site-nav { gap: 16px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-copy .section-title, .trust-copy .section-sub { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 48px; }
  .hero-stats { gap: 32px; }
  .contact-form { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
