
:root {
  --wc-navy:     #1a2d5a;
  --wc-blue:     #1e3f8f;
  --wc-deepblue: #0d1a3a;
  --wc-midblue:  #2e52a8;
  --wc-yellow:   #ffffff;
  --wc-white:    #ffffff;
  --wc-offwhite: #f4f6fb;
  --wc-light:    #eef1f8;
  --wc-text:     #2c3e6b;
  --wc-muted:    #5a6a7a;
  --wc-border:   #dde3ef;
}



/* ─────────────────────────────────
   HERO — dark navy, full width
───────────────────────────────── */
.atd-whychoseus-page-hero {
  background: linear-gradient(140deg, #0d1a3a 0%, #1a3a8f 55%, #1a2d5a 100%);
  padding: 100px 24px 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* dot texture */
.atd-whychoseus-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* decorative circles */
.atd-whychoseus-page-hero-circle-a {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: -200px; left: -160px;
  pointer-events: none;
}
.atd-whychoseus-page-hero-circle-b {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  bottom: -150px; right: -100px;
  pointer-events: none;
}

/* diagonal white cut at bottom */
.atd-whychoseus-page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--wc-white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.atd-whychoseus-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
}

.atd-whychoseus-page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,184,0,0.15);
  border: 1px solid rgba(212,184,0,0.28);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wc-yellow);
  margin-bottom: 26px;
}
.atd-whychoseus-page-hero-tag i { font-size: 10px; }

.atd-whychoseus-page-hero-title {
  font-size: clamp(34px, 5.5vw, 58px);
  color: var(--wc-white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.atd-whychoseus-page-hero-title span { color: var(--wc-yellow); }

.atd-whychoseus-page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* hero stat row */
.atd-whychoseus-page-hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.atd-whychoseus-page-stat {
  flex: 1;
  min-width: 130px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.atd-whychoseus-page-stat:last-child { border-right: none; }

.atd-whychoseus-page-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--wc-white);
  line-height: 1;
  margin-bottom: 4px;
}
.atd-whychoseus-page-stat-num span { color: var(--wc-yellow); font-size: 0.65em; vertical-align: super; }

.atd-whychoseus-page-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ─────────────────────────────────
   INTRO BAND
───────────────────────────────── */
.atd-whychoseus-page-intro {
  background: var(--wc-white);
  padding: 70px 24px 60px;
  text-align: center;
}

.atd-whychoseus-page-intro-inner {
  max-width: 680px;
  margin: 0 auto;
}

.atd-whychoseus-page-sup {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--wc-midblue);
  margin-bottom: 10px;
}

.atd-whychoseus-page-section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--wc-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.atd-whychoseus-page-section-title-white { color: var(--wc-white); }

.atd-whychoseus-page-bar {
  width: 48px; height: 3px;
  background: var(--wc-yellow);
  border-radius: 2px;
  margin: 0 auto 24px;
}
.atd-whychoseus-page-bar-left { margin: 0 0 24px; }
.atd-whychoseus-page-bar-white { background: rgba(255,255,255,0.35); }

.atd-whychoseus-page-body {
  font-size: 15px;
  color: var(--wc-muted);
  line-height: 1.8;
}

/* ─────────────────────────────────
   MAIN FEATURES GRID — 4 cols
───────────────────────────────── */
.atd-whychoseus-page-features {
  background: var(--wc-offwhite);
  padding: 70px 24px 80px;
}

.atd-whychoseus-page-features-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.atd-whychoseus-page-features-header {
  text-align: center;
  margin-bottom: 52px;
}
.atd-whychoseus-page-features-header .atd-whychoseus-page-bar { margin: 0 auto 0; }

.atd-whychoseus-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* feature card */
.atd-whychoseus-page-card {
  background: var(--wc-white);
  border: 1.5px solid var(--wc-border);
  border-radius: 10px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* top accent bar */
.atd-whychoseus-page-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wc-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.atd-whychoseus-page-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 44px rgba(26,45,90,0.13);
  border-color: transparent;
}
.atd-whychoseus-page-card:hover::before { transform: scaleX(1); }

.atd-whychoseus-page-card-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--wc-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.atd-whychoseus-page-card:hover .atd-whychoseus-page-card-icon-wrap {
  background: var(--wc-blue);
  transform: scale(1.08);
}
.atd-whychoseus-page-card-icon-wrap i {
  font-size: 22px;
  color: var(--wc-yellow);
}

.atd-whychoseus-page-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--wc-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.atd-whychoseus-page-card-text {
  font-size: 13.5px;
  color: var(--wc-muted);
  line-height: 1.72;
  flex: 1;
}

/* ─────────────────────────────────
   DETAIL SECTION — alternating rows
───────────────────────────────── */
.atd-whychoseus-page-detail {
  padding: 80px 24px 90px;
  background: var(--wc-white);
}

.atd-whychoseus-page-detail-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.atd-whychoseus-page-detail-row {
  display: flex;
  gap: 56px;
  align-items: center;
}
.atd-whychoseus-page-detail-row-rev { flex-direction: row-reverse; }

/* icon panel */
.atd-whychoseus-page-detail-icon-panel {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  background: var(--wc-navy);
  border-radius: 12px;
  padding: 44px 28px;
  position: relative;
  overflow: hidden;
}
.atd-whychoseus-page-detail-icon-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.atd-whychoseus-page-detail-icon-panel i {
  font-size: 52px;
  color: var(--wc-yellow);
  position: relative;
  z-index: 1;
}
.atd-whychoseus-page-detail-icon-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* detail text */
.atd-whychoseus-page-detail-text { flex: 1; }

.atd-whychoseus-page-detail-title {
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--wc-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.atd-whychoseus-page-detail-body {
  font-size: 14.5px;
  color: var(--wc-muted);
  line-height: 1.8;
}

.atd-whychoseus-page-detail-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wc-light);
  border-left: 3px solid var(--wc-blue);
  border-radius: 0 6px 6px 0;
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wc-navy);
}
.atd-whychoseus-page-detail-highlight i {
  font-size: 15px;
  color: var(--wc-blue);
  flex-shrink: 0;
}

/* ─────────────────────────────────
   TRUST BAND — dark full-width
───────────────────────────────── */
.atd-whychoseus-page-trust {
  background: var(--wc-deepblue);
  padding: 70px 24px 80px;
  position: relative;
  overflow: hidden;
}
.atd-whychoseus-page-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.atd-whychoseus-page-trust::after {
  content: '';
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  bottom: -160px; right: -120px;
  pointer-events: none;
}

.atd-whychoseus-page-trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.atd-whychoseus-page-trust-header {
  text-align: center;
  margin-bottom: 48px;
}
.atd-whychoseus-page-trust-header .atd-whychoseus-page-bar-white { margin: 0 auto; }

.atd-whychoseus-page-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.atd-whychoseus-page-trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.atd-whychoseus-page-trust-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}
.atd-whychoseus-page-trust-card i {
  font-size: 28px;
  color: var(--wc-yellow);
  margin-bottom: 14px;
  display: block;
}
.atd-whychoseus-page-trust-country {
  font-size: 14px;
  font-weight: 700;
  color: var(--wc-white);
  margin-bottom: 6px;
}
.atd-whychoseus-page-trust-detail {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ─────────────────────────────────
   CTA
───────────────────────────────── */
.atd-whychoseus-page-cta {
  background: var(--wc-navy);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.atd-whychoseus-page-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.atd-whychoseus-page-cta-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.atd-whychoseus-page-cta-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--wc-white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.atd-whychoseus-page-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 36px;
}
.atd-whychoseus-page-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.atd-whychoseus-page-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wc-yellow);
  color: var(--wc-navy);
  border: none;
  border-radius: 6px;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.atd-whychoseus-page-btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
  color:black;
}
.atd-whychoseus-page-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--wc-white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.atd-whychoseus-page-btn-outline:hover {
  border-color: var(--wc-yellow);
  color: var(--wc-yellow);
  transform: translateY(-3px);
}

/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
@media (max-width: 1020px) {
  .atd-whychoseus-page-grid { grid-template-columns: repeat(2, 1fr); }
  .atd-whychoseus-page-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .atd-whychoseus-page-detail-row,
  .atd-whychoseus-page-detail-row-rev { flex-direction: column; gap: 28px; }
  .atd-whychoseus-page-detail-icon-panel { flex: none; width: 100%; flex-direction: row; padding: 28px 24px; gap: 20px; }
  .atd-whychoseus-page-detail-icon-panel i { font-size: 36px; }
  .atd-whychoseus-page-hero-stats { flex-direction: row; }
}
@media (max-width: 560px) {
  .atd-whychoseus-page-grid { grid-template-columns: 1fr; }
  .atd-whychoseus-page-trust-grid { grid-template-columns: 1fr 1fr; }
  .atd-whychoseus-page-hero-stats { flex-direction: column; }
  .atd-whychoseus-page-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .atd-whychoseus-page-stat:last-child { border-bottom: none; }
}