:root {
  --blue: #152779;
  --orange: #ff7a1a;
  --bg: #eef1f5;
  --text: #111827;
  --muted: #5b6474;
  --white: #ffffff;
  --border: rgba(21, 39, 121, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(21, 39, 121, 0.14), transparent 28%),
    var(--bg);
}

.page {
  min-height: 100vh;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: min(1100px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  padding: 32px;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.logo {
  width: min(520px, 100%);
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 122, 26, 0.12);
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 999px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.main-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  color: var(--blue);
}

.lead {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}

.service-box,
.panel {
  border-radius: 22px;
  padding: 24px;
}

.service-box {
  background: linear-gradient(135deg, rgba(21, 39, 121, 0.04), rgba(255, 122, 26, 0.08));
  border: 1px solid rgba(21, 39, 121, 0.08);
}

h2 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  color: var(--blue);
}

.service-list,
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.service-list li,
.trust-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.service-list li::before,
.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.sidebar {
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid rgba(21, 39, 121, 0.08);
  background: var(--white);
}

.highlight {
  background: var(--blue);
  color: var(--white);
}

.highlight h2,
.highlight p {
  color: var(--white);
}

.highlight p {
  margin: 0 0 18px;
  line-height: 1.6;
}

.cta {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 16px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--orange);
  color: var(--white);
  margin-bottom: 12px;
}

.secondary {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
}

.contact p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: var(--muted);
}

.contact p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

.contact a {
  color: var(--blue);
  font-weight: 600;
}

@media (max-width: 860px) {
  .page {
    padding: 16px;
    align-items: flex-start;
  }

  .card {
    padding: 20px;
    border-radius: 22px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .brand-wrap {
    margin-bottom: 22px;
  }

  .service-box,
  .panel {
    padding: 20px;
  }
}
