:root {
  --ar-ink: #0f172a;
  --ar-muted: #5f6b7a;
  --ar-line: #e4e9f0;
  --ar-soft: #f7f8fb;
  --ar-gold: #f5b321;
  --ar-gold-dark: #d99400;
  --ar-white: #ffffff;
  --ar-radius: 22px;
  --ar-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
}

.ar-page,
.ar-page * {
  box-sizing: border-box;
}

.ar-page {
  color: var(--ar-ink);
  background: var(--ar-white);
}

.ar-container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.ar-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 74px;
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 179, 33, 0.20), transparent 28%),
    linear-gradient(135deg, #08101f 0%, #111c31 56%, #1c2739 100%);
}

.ar-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ar-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.ar-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.ar-breadcrumb a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.ar-eyebrow,
.ar-section-kicker {
  display: inline-block;
  color: var(--ar-gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ar-hero .ar-eyebrow {
  margin-bottom: 14px;
  color: var(--ar-gold);
}

.ar-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--ar-white);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.ar-hero-intro {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.ar-price-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin: 26px 0 22px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.ar-price-badge span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ar-price-badge strong {
  color: var(--ar-white);
  font-size: 19px;
}

.ar-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.ar-trust-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.ar-trust-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ar-gold);
  font-weight: 900;
}

.ar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ar-btn:hover {
  transform: translateY(-2px);
}

.ar-btn-primary {
  color: #18130a;
  background: var(--ar-gold);
  box-shadow: 0 12px 28px rgba(245, 179, 33, 0.24);
}

.ar-btn-primary:hover {
  color: #18130a;
  background: #ffc546;
}

.ar-btn-secondary {
  color: var(--ar-white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.ar-btn-secondary:hover,
.ar-btn-outline-light:hover {
  color: var(--ar-white);
  background: rgba(255, 255, 255, 0.12);
}

.ar-btn-light {
  color: var(--ar-ink);
  background: var(--ar-white);
}

.ar-btn-outline-light {
  color: var(--ar-white);
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

.ar-hero-media {
  position: relative;
}

.ar-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.28);
}

.ar-media-card {
  position: absolute;
  right: -18px;
  bottom: -22px;
  max-width: 290px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--ar-white);
  box-shadow: var(--ar-shadow);
}

.ar-media-card strong,
.ar-media-card span {
  display: block;
}

.ar-media-card strong {
  margin-bottom: 5px;
  color: var(--ar-ink);
}

.ar-media-card span {
  color: var(--ar-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ar-quick-answer {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.ar-answer-box {
  display: grid;
  grid-template-columns: 0.72fr 1.5fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid var(--ar-line);
  border-radius: var(--ar-radius);
  background: var(--ar-white);
  box-shadow: var(--ar-shadow);
}

.ar-answer-box h2 {
  margin: 6px 0 0;
  font-size: 25px;
  line-height: 1.22;
}

.ar-answer-box p {
  margin: 0;
  color: var(--ar-muted);
  line-height: 1.75;
}

.ar-text-link {
  white-space: nowrap;
  color: #a66b00;
  font-weight: 800;
  text-decoration: none;
}

.ar-section {
  padding: 86px 0;
}

.ar-section-muted {
  background: var(--ar-soft);
}

.ar-section-dark {
  color: var(--ar-white);
  background: #101827;
}

.ar-heading-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 32px;
}

.ar-heading-row h2,
.ar-section-heading h2,
.ar-comparison-grid > div:first-child h2,
.ar-zoom-grid h2,
.ar-final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(31px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.ar-heading-row > p,
.ar-section-heading > p,
.ar-comparison-grid > div:first-child > p,
.ar-zoom-grid > div:first-child > p {
  margin: 0;
  color: var(--ar-muted);
  line-height: 1.8;
}

.ar-section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.ar-section-heading > p {
  margin-top: 16px;
}

.ar-heading-light h2,
.ar-heading-light p {
  color: var(--ar-white);
}

.ar-heading-light p {
  opacity: 0.76;
}

.ar-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ar-line);
  border-radius: 20px;
  background: var(--ar-white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.ar-rate-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.ar-rate-table th,
.ar-rate-table td {
  padding: 19px 20px;
  border-bottom: 1px solid var(--ar-line);
  text-align: left;
  vertical-align: top;
}

.ar-rate-table th {
  color: var(--ar-white);
  background: var(--ar-ink);
  font-size: 13px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.ar-rate-table td {
  color: var(--ar-muted);
  line-height: 1.55;
}

.ar-rate-table td:first-child,
.ar-rate-table td strong {
  color: var(--ar-ink);
}

.ar-rate-table tbody tr:last-child td {
  border-bottom: 0;
}

.ar-rate-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--ar-gold);
  border-radius: 0 12px 12px 0;
  color: var(--ar-muted);
  background: #fffaf0;
  line-height: 1.7;
}

.ar-inline-cta {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding: 26px 28px;
  border-radius: 20px;
  color: var(--ar-white);
  background: var(--ar-ink);
}

.ar-inline-cta h3,
.ar-inline-cta p {
  margin: 0;
}

.ar-inline-cta h3 {
  margin-bottom: 5px;
  font-size: 24px;
}

.ar-inline-cta p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.ar-card-grid,
.ar-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ar-service-card,
.ar-benefit-grid article,
.ar-compare-card {
  border: 1px solid var(--ar-line);
  border-radius: var(--ar-radius);
  background: var(--ar-white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.ar-service-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
}

.ar-service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ar-gold), #ffcf69);
}

.ar-card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 12px;
  color: #8a5a00;
  background: #fff4d9;
  font-size: 13px;
  font-weight: 900;
}

.ar-service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.ar-service-card p,
.ar-benefit-grid p,
.ar-compare-card li {
  color: var(--ar-muted);
  line-height: 1.72;
}

.ar-service-card a {
  display: inline-block;
  margin-top: 12px;
  color: #996300;
  font-weight: 800;
  text-decoration: none;
}

.ar-comparison-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.ar-compare-card {
  padding: 28px;
}

.ar-compare-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.ar-compare-card ul {
  margin: 0;
  padding-left: 20px;
}

.ar-compare-card li + li {
  margin-top: 10px;
}

.ar-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ar-factor-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.ar-factor-grid strong,
.ar-factor-grid span {
  display: block;
}

.ar-factor-grid strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.ar-factor-grid span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.ar-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ar-process-grid li {
  padding: 24px 20px;
  border: 1px solid var(--ar-line);
  border-radius: 18px;
  background: var(--ar-white);
}

.ar-process-grid li > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #5d3c00;
  background: var(--ar-gold);
  font-weight: 900;
}

.ar-process-grid strong {
  display: block;
  margin-bottom: 8px;
}

.ar-process-grid p {
  margin: 0;
  color: var(--ar-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ar-zoom-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
}

.ar-zoom-grid > div:first-child > p {
  margin-top: 18px;
}

.ar-disclosure {
  padding: 15px 17px;
  border: 1px solid #f1d693;
  border-radius: 12px;
  background: #fff9e9;
  font-size: 14px;
}

.ar-contact-panel {
  padding: 32px;
  border-radius: 24px;
  color: var(--ar-white);
  background: var(--ar-ink);
  box-shadow: var(--ar-shadow);
}

.ar-contact-panel > span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ar-contact-panel > a:not(.ar-btn) {
  display: inline-block;
  margin: 8px 0 14px;
  color: var(--ar-white);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.ar-contact-panel p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.ar-benefit-grid article {
  padding: 25px;
}

.ar-benefit-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.ar-benefit-grid p {
  margin: 0;
}

.ar-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.ar-faq-item {
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  background: var(--ar-white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.ar-faq-item + .ar-faq-item {
  margin-top: 12px;
}

.ar-faq-item summary {
  position: relative;
  padding: 21px 54px 21px 22px;
  cursor: pointer;
  color: var(--ar-ink);
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.ar-faq-item summary::-webkit-details-marker {
  display: none;
}

.ar-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #9b6708;
  font-size: 26px;
}

.ar-faq-item[open] summary::after {
  content: "−";
}

.ar-faq-answer {
  padding: 0 22px 22px;
}

.ar-faq-answer p {
  margin: 0;
  color: var(--ar-muted);
  line-height: 1.75;
}

.ar-final-cta {
  padding: 74px 0;
  color: var(--ar-white);
  background: linear-gradient(135deg, #0a1222 0%, #17233a 100%);
}

.ar-final-cta-inner {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.ar-final-cta h2 {
  margin-top: 6px;
}

.ar-final-cta p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.ar-final-cta .ar-section-kicker {
  color: var(--ar-gold);
}

@media (max-width: 1024px) {
  .ar-hero-grid,
  .ar-zoom-grid {
    grid-template-columns: 1fr;
  }

  .ar-hero-media {
    max-width: 760px;
  }

  .ar-answer-box {
    grid-template-columns: 1fr;
  }

  .ar-heading-row,
  .ar-comparison-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ar-heading-row > div,
  .ar-comparison-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .ar-card-grid,
  .ar-benefit-grid,
  .ar-factor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ar-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ar-container {
    width: min(100% - 24px, 1180px);
  }

  .ar-hero {
    padding: 56px 0 64px;
  }

  .ar-hero-grid {
    gap: 36px;
  }

  .ar-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .ar-hero-intro {
    font-size: 16px;
    line-height: 1.72;
  }

  .ar-trust-list,
  .ar-card-grid,
  .ar-benefit-grid,
  .ar-factor-grid,
  .ar-process-grid,
  .ar-heading-row,
  .ar-comparison-grid {
    grid-template-columns: 1fr;
  }

  .ar-media-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -18px 14px 0;
  }

  .ar-quick-answer {
    margin-top: -18px;
  }

  .ar-answer-box,
  .ar-service-card,
  .ar-contact-panel {
    padding: 23px;
  }

  .ar-section {
    padding: 64px 0;
  }

  .ar-inline-cta,
  .ar-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ar-actions,
  .ar-actions .ar-btn,
  .ar-inline-cta .ar-btn {
    width: 100%;
  }

  .ar-btn {
    width: 100%;
  }

  .ar-heading-row h2,
  .ar-section-heading h2,
  .ar-comparison-grid > div:first-child h2,
  .ar-zoom-grid h2,
  .ar-final-cta h2 {
    font-size: 34px;
  }
}
