:root {
  --red: #dc2626;
  --red2: #b91c1c;
  --black: #0f172a;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --white: #ffffff;
  --max: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 45px -5px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

* {
  box-sizing: border-box;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  transition: all 0.25s ease;
}

.wrap {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 15px;
  top: 15px;
  z-index: 99;
  background: #ffffff;
  padding: 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffffff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
  transition: background 0.3s ease;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
}

.brand span {
  color: var(--red);
}

nav.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

nav.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #cbd5e1;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

nav.nav-links a:hover, nav.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.phone {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red2));
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.45);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: radial-gradient(circle at 80% 20%, #f1f5f9 0%, #ffffff 70%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--black);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 22px 0 24px;
  color: var(--black);
}

h1 em {
  font-style: normal;
  color: var(--red);
  background: linear-gradient(135deg, #dc2626, #991b1b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--black);
  margin: 0.25em 0 0.45em;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0.5em 0;
}

.lead {
  font-size: 1.15rem;
  max-width: 580px;
  color: var(--muted);
  line-height: 1.7;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 26px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.45);
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.secondary {
  background: #ffffff;
  color: var(--black);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.secondary:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.checks li:before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 8px;
}

.hero-media {
  height: 520px;
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  perspective: 1000px;
  transition: transform 0.5s ease;
}

.hero-media:hover {
  transform: scale(1.01) rotateY(-2deg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-logo {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  letter-spacing: -0.03em;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-md);
}

.image-logo span {
  color: var(--red);
}

/* Quick Bar */
.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin-top: -30px;
  z-index: 10;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.quick > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: background 0.3s ease;
}

.quick > div:hover {
  background: #f8fafc;
}

.quick > div:last-child {
  border-right: 0;
}

.quick b {
  font-size: 1.8rem;
  color: var(--red);
  font-weight: 900;
}

.quick span {
  font-size: 0.88rem;
  color: var(--muted);
  display: block;
}

.quick strong {
  display: block;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 800;
}

/* Sections & Cards */
.section {
  padding: 95px 0;
}

.intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card span {
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card b {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
}

.dark {
  background: var(--black);
  color: #ffffff;
  position: relative;
}

.dark h2 {
  color: #ffffff;
}

.dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
}

/* Process Section */
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.process > div {
  position: sticky;
  top: 110px;
  align-self: start;
}

.process ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process li > b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.15);
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 800;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.process li strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.process li span {
  color: #94a3b8;
  font-size: 0.98rem;
}

/* Documents & Evidence */
.evidence, .documents {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.factor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.factor-grid span {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.factor-grid span:before {
  content: "✓";
  color: var(--red);
  margin-right: 10px;
  font-weight: 900;
}

.documents ul {
  margin: 0;
  padding: 36px;
  background: #ffffff;
  border-left: 6px solid var(--red);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
}

.documents li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.documents li:last-child {
  border: 0;
}

.documents li:before {
  content: "✓";
  color: var(--red);
  margin-right: 12px;
  font-weight: 900;
}

/* FAQ */
.faq details {
  border-top: 1px solid var(--line);
  transition: background 0.3s ease;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 24px 8px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--black);
}

.faq summary::marker {
  color: var(--red);
}

.faq details p {
  color: var(--muted);
  margin: -6px 8px 24px;
  line-height: 1.7;
}

/* Form Section */
.form-section {
  background: var(--soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 28px;
  background: var(--black);
  color: #ffffff;
  border-radius: var(--radius-md);
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow-md);
}

.contact-box a {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  margin-top: 6px;
}

form {
  background: #ffffff;
  border-top: 6px solid var(--red);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  font: inherit;
  color: var(--ink);
  transition: all 0.25s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

.consent {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 15px;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--red);
}

form .button {
  width: 100%;
  margin-top: 20px;
}

/* Success Feedback Styling */
.form-success-message {
  display: none;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: #15803d;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeIn 0.4s ease;
}

.form-success-message svg {
  width: 48px;
  height: 48px;
  fill: #22c55e;
  margin-bottom: 12px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
  background: #090d16;
  color: #94a3b8;
  padding: 70px 0 30px;
  border-top: 5px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 55px;
}

.footer-grid .brand {
  color: #ffffff;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a:not(.brand) {
  text-decoration: none;
  margin: 6px 0;
  color: #cbd5e1;
}

.footer-grid a:not(.brand):hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-grid strong {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Subpage Components */
.service-crumb {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 15px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-crumb a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.service-hero .hero-grid {
  min-height: 580px;
}

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

.service-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.related-service-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.related-service-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.related-service-grid a span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-service-grid a strong {
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--black);
}

.related-service-grid a b {
  margin-top: auto;
  color: var(--red);
  font-size: 1.25rem;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  nav.nav-links {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 28px;
    gap: 20px;
    z-index: 99;
  }
  nav.nav-links.active {
    display: flex;
  }
  nav.nav-links a {
    font-size: 1.2rem;
    padding: 14px 20px;
  }
  .hero-grid, .process, .evidence, .documents, .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 40px 0 20px;
  }
  .hero-media {
    height: 380px;
  }
  .cards, .service-cards {
    grid-template-columns: 1fr;
  }
  .related-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process {
    gap: 40px;
  }
  .process > div {
    position: static;
  }
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }
  .phone {
    display: none;
  }
  h1 {
    font-size: 2.75rem;
  }
  .lead {
    font-size: 1.05rem;
  }
  .actions .button {
    width: 100%;
  }
  .hero-media {
    height: 280px;
  }
  .quick {
    grid-template-columns: 1fr;
  }
  .quick > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .factor-grid, .fields, .footer-grid, .related-service-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 55px 0;
  }
  form {
    padding: 24px 18px;
  }
  .copyright {
    flex-direction: column;
  }
}

/* Shared trust / benefits family */
.trust-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(ellipse at 50% 105%, rgba(220, 38, 38, 0.055), transparent 45%),
    #f8fafc;
}

.trust-section::before,
.trust-section::after {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  bottom: -650px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.trust-section::before { left: -260px; }
.trust-section::after { right: -260px; }

.trust-container {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-head {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.trust-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-eyebrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-head h2 {
  max-width: 880px;
  margin: 0 auto 14px;
  color: #0b1735;
  font-size: clamp(2.35rem, 4.35vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.trust-head > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #4f5f79;
  font-size: 1.12rem;
  line-height: 1.5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.trust-card {
  min-height: 460px;
  padding: 28px 24px 26px;
  border: 1px solid #dfe6ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.trust-visual {
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  background: #fff;
  filter: drop-shadow(0 16px 18px rgba(15, 23, 42, 0.1));
}

.trust-visual img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.trust-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
}

.trust-number {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ef242b, #bd0d13);
  box-shadow: 0 7px 15px rgba(220, 38, 38, 0.2);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
}

.trust-card h3 {
  margin: 1px 0 0;
  color: #0b1735;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
}

.trust-card p {
  margin: 0;
  color: #4f5f79;
  font-size: 1rem;
  line-height: 1.65;
  text-align: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 14px;
  padding: 16px 18px;
  border: 1px solid #dfe6ef;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 12px;
  color: #0b1735;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.trust-strip span + span { border-left: 1px solid #dfe6ef; }

.trust-strip svg {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #0b1735;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip svg .accent { stroke: var(--red); }

.trust-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-cta .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(600px, 100%);
  min-height: 64px;
  border-radius: 999px;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.trust-cta .button svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-cta .trust-arrow { margin-left: auto; }
.trust-cta small { margin-top: 9px; color: #64748b; font-size: 0.94rem; }

@media (max-width: 1050px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-card { min-height: 440px; }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip span:nth-child(3) { border-left: 0; }
  .trust-strip span:nth-child(n+3) { border-top: 1px solid #dfe6ef; padding-top: 12px; margin-top: 12px; }
}

@media (max-width: 600px) {
  .trust-section { padding: 62px 0; }
  .trust-container { width: calc(100% - 28px); }
  .trust-head { margin-bottom: 28px; }
  .trust-head h2 { font-size: clamp(2rem, 10.5vw, 2.75rem); }
  .trust-head > p:last-child { font-size: 1rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-card { min-height: 0; padding: 26px 22px; }
  .trust-visual,
  .trust-visual img { width: 122px; height: 122px; }
  .trust-card-heading { justify-content: center; }
  .trust-card h3 { font-size: 1.2rem; }
  .trust-strip { padding: 14px 10px; }
  .trust-strip span { padding: 0 7px; font-size: 0.82rem; }
  .trust-strip svg { display: none; }
  .trust-cta .button { width: 96%; min-height: 58px; gap: 10px; padding: 12px 18px; font-size: 0.96rem; }
  .trust-cta .button svg { width: 25px; height: 25px; }
}
