
:root {
  --navy: #1B2533;
  --navy-soft: #232E40;
  --navy-700: #2C394E;
  --bg: #F1F2F5;
  --surface: #FFFFFF;
  --surface-alt: #E9EBF0;
  --border: #E1E4EA;
  --muted: #6B7686;
  --teal: #1FD1B8;
  --green: #3DDC84;
  --gradient: linear-gradient(135deg, var(--teal) 0%, var(--green) 100%);
  --blue: #4F8EF7;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.eyebrow.center { display: flex; width: fit-content; margin-inline: auto; }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-title.center { text-align: center; margin-inline: auto; }

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 48px;
}

.section-sub.center { margin-inline: auto; text-align: center; }

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons / shared bits ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-pill { border-radius: var(--radius-pill); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(27,37,51,0.25); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }

.btn-icon { padding-right: 8px; }

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-circle.small { width: 32px; height: 32px; }

.gradient-fill { background: var(--gradient); }

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-soft);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.logo .dot {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
}

.main-nav a {
  font-size: 19px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s ease;
}

.main-nav a:hover { color: #fff; }
.main-nav a.active { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.header-actions .btn-dark { background: #fff; color: var(--navy); }
.header-actions .btn-dark:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.3); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero { padding: 72px 0 90px; overflow: hidden; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-copy .lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 34px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.stats-row {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.stat span {
  font-size: 14px;
  color: var(--muted);
}

/* hero visual */
.hero-visual {
  position: relative;
  height: 460px;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

.orbit-ring {
  position: absolute;
  top: -10px;
  right: 0;
  width: 380px;
  height: 380px;
  border: 1.5px dashed rgba(27,37,51,0.18);
  border-radius: 50%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(27,37,51,0.18);
}

.circle-lg {
  width: 340px;
  height: 340px;
  top: 0;
  right: 0;
  background: var(--navy);
  border: 8px solid #fff;
}

.circle-sm {
  width: 200px;
  height: 200px;
  bottom: 0;
  left: 10px;
  background: #fff;
  border: 8px solid #fff;
}

/* ============================================
   HIGHLIGHT BAND
   ============================================ */
.highlight-band {
  background: var(--navy);
  padding: 36px 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.highlight-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.highlight-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 110px 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27,37,51,0.1);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.card-link svg { color: var(--teal); }

/* ============================================
   TRUST
   ============================================ */
.trust { padding: 0 0 110px; }

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.trust-copy p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 16px;
  max-width: 480px;
}

.check-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.check-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.trust-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.orbit-ring.small {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  border: 1.5px dashed rgba(27,37,51,0.18);
}

.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 30px 60px rgba(27,37,51,0.12);
  position: relative;
}

.policy-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.policy-card-head strong { display: block; font-size: 15px; }
.policy-card-head span { font-size: 13px; color: var(--muted); }

.policy-line {
  height: 8px;
  border-radius: 4px;
  background: var(--surface-alt);
  margin-bottom: 12px;
  width: 100%;
}

.policy-line.short { width: 60%; }

.policy-stamp {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   PROCESS
   ============================================ */
.process { padding: 110px 0; background: var(--surface-alt); }

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

.process-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.step-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--border);
}

.process-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 110px 0; }

.testimonial-grid { grid-template-columns: repeat(3, 1fr); }

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}

.stars { color: var(--teal); letter-spacing: 2px; margin-bottom: 16px; font-size: 14px; }

.testimonial-card p {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.avatar-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  color: #10141c;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-person strong { display: block; font-size: 14.5px; }
.testimonial-person span { font-size: 13px; color: var(--muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 0 0 110px; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.faq-intro p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 28px;
  max-width: 380px;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  text-align: left;
}

.chev { transition: transform 0.2s ease; color: var(--muted); flex-shrink: 0; }

.faq-item.open .chev { transform: rotate(180deg); color: var(--teal); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14.5px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  margin: 0 24px 110px;
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.18;
  filter: blur(40px);
  top: -120px;
  right: -80px;
}

.cta-inner {
  max-width: 640px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--navy-soft); color: #fff; padding-top: 70px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo.light { color: #fff; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14.5px;
  margin: 16px 0 24px;
  max-width: 300px;
}

.newsletter {
  display: flex;
  gap: 10px;
  max-width: 360px;
}

.newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.newsletter input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter .btn-dark { background: #fff; color: var(--navy); padding: 12px 20px; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}

.social-icons { display: flex; gap: 16px; }

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.15s ease, color 0.15s ease;
}

.social-icons a:hover { background: var(--gradient); color: #10141c; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-visual { order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy-soft);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .main-nav.open { max-height: 320px; padding: 10px 24px 22px; }

  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .header-actions .btn-pill.btn-dark { padding: 10px 18px; font-size: 14px; }

  .hero { padding: 48px 0 64px; }

  .hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: left; }

  .hero-visual { height: 320px; max-width: 320px; margin: 0 auto; }

  .circle-lg { width: 240px; height: 240px; }
  .circle-sm { width: 150px; height: 150px; }
  .orbit-ring { width: 270px; height: 270px; }

  .hero-cta-row { gap: 20px; margin-bottom: 44px; }

  .stats-row { gap: 28px; }
  .stat strong { font-size: 26px; }

  .highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .services, .process, .testimonials { padding: 70px 0; }
  .trust { padding: 0 0 70px; }
  .faq { padding: 0 0 70px; }

  .card-grid, .process-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }

  .section-sub { margin-bottom: 32px; }

  .cta-banner { margin: 0 16px 70px; padding: 50px 24px; border-radius: var(--radius-md); }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }

  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .newsletter { flex-direction: column; }
  .newsletter .btn-dark { justify-content: center; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 34px; }
  .stats-row { gap: 20px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}
@media (min-width: 769px) {
  .hero-visual {
    justify-self: end;
    max-width: 520px;
  }
  .circle-lg { width: 380px; height: 380px; }
  .circle-sm { width: 220px; height: 220px; }
  .orbit-ring { width: 420px; height: 420px; }
}


/* ---- image cards (services + process) ---- */
.img-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-700);
}

.img-card-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.img-card:hover .img-card-media { transform: scale(1.06); }

.img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,37,51,0) 40%, rgba(15,20,28,0.85) 100%);
}

.img-card-num {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-card-label {
  position: absolute;
  bottom: 22px; left: 22px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---- bigger testimonial photos ---- */
.avatar-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* ---- pricing ---- */
.pricing { padding: 110px 0; background: var(--surface-alt); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}

.price-card.featured { background: var(--navy); border-color: var(--navy); transform: scale(1.03); }

.price-badge {
  position: absolute; top: -14px; left: 30px;
  background: var(--gradient);
  color: #10141c;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.price-card.featured h3 { color: #fff; }
.price-card .price { font-family: var(--font-display); font-size: 16px; color: var(--muted); margin-bottom: 24px; }
.price-card .price span { font-size: 38px; font-weight: 700; color: var(--navy); }
.price-card.featured .price { color: rgba(255,255,255,0.6); }
.price-card.featured .price span { color: #fff; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-features li { font-size: 14.5px; padding-left: 22px; position: relative; color: var(--navy); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
.price-features li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

/* ---- team ---- */
.team { padding: 110px 0; }
.team-card { text-align: center; background: transparent; border: none; padding: 0; }
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  margin-bottom: 18px;
}
.team-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: 13.5px; color: var(--muted); }

@media (max-width: 768px) {
  .img-card { height: 220px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ---- full width fix + hero visual fills the column ---- */
:root {
  --container: 100%;
}

.container {
  padding: 0 40px;
}

@media (min-width: 769px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    width: 100%;
    max-width: none;
    height: clamp(340px, 38vw, 560px);
    justify-self: stretch;
  }

  .orbit-ring {
    width: clamp(300px, 34vw, 520px);
    height: clamp(300px, 34vw, 520px);
  }

  .circle-lg {
    width: clamp(300px, 30vw, 480px);
    height: clamp(260px, 30vw, 460px);
  }

  .circle-sm {
    width: clamp(150px, 18vw, 270px);
    height: clamp(150px, 18vw, 270px);
  }
}

/* ---- hero photos: bigger + actually intersecting ---- */
.circle {
  border: 8px solid #fff;

  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.circle-lg {
  width: 630px;
  height: 640px;
  top: 0;
  right: 0;
  position: relative;
}

.circle-sm {
  width: 48%;
  height: 48%;
  bottom: 0;
  position: absolute;
  right: -90%;
}

.orbit-ring {
  top: -40%;
  right: -100%;
  width: 92%;
  height: 92%;
  
}

@media (min-width: 769px) {
  .hero-visual {
    width: clamp(380px, 44vw, 580px);
    height: clamp(380px, 44vw, 580px);
    justify-self: end;
  }
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0B1628;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 100;
}

.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  font-weight: 700;
  text-decoration: none;
}

.bn-item span {
  font-size: 1.2rem;
}

.img-card-media{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bn-item:hover {
  color: #2EC4A0;
}
