/* ================= ROOT ================= */
:root {
  --bg-main: #f8fafc;
  --bg-section: #ffffff;
  --bg-soft: #f1f5f9;

  --card-bg: rgba(255, 255, 255, 0.9);
  --card-border: rgba(15, 23, 42, 0.08);

  --text-main: #020617;
  --text-muted: #475569;

  --accent-green: #16a34a;
  --accent-green-dark: #064e3b;
  --accent-blue: #2563eb;

  --radius-lg: 22px;
  --radius-md: 16px;
}

/* ================= BASE ================= */
body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Ubuntu, sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ================= MAIN BANNER ================= */
.recon-banner {
  position: relative;
  height: 440px;
  margin-top: 62px;
  overflow: hidden;
}

.recon-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recon-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      circle at center,
      rgba(34, 197, 94, 0.217),
      transparent 60%
    ),
    linear-gradient(180deg, rgb(2 6 23 / 5%), rgb(2 6 23 / 48%));
}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px) {
  .recon-banner {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .recon-banner {
    height: 200px;
    margin-top: 56px;
  }
}


/* ================= INTRO ================= */
.recon-intro {
  padding: 90px 4% 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.recon-intro-text h1 {
  font-size: 46px;
  line-height: 1.15;
}

.recon-intro-text span {
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recon-intro-text p {
  margin-top: 18px;
  max-width: 740px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

/* IMAGE */
.recon-intro-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.recon-intro-image img:hover {
  transform: translateY(-8px);
  box-shadow:
    0 45px 90px rgba(15, 23, 42, 0.25);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .recon-intro {
    padding: 90px 6% 50px;
    grid-template-columns: 1fr;
  }

  .recon-intro-text h1 {
    font-size: 30px;
  }

  .recon-intro-text p {
    font-size: 14px;
  }
}


/* ================= VALUE ================= */
.recon-value {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  padding: 110px 10%;
  align-items: center;
  background: var(--bg-soft);
}

.value-left h2 {
  font-size: 38px;
  line-height: 1.2;
}

.value-left span {
  color: var(--accent-green);
}

.value-left p {
  margin: 18px 0 28px;
  max-width: 520px;
}

/* CTA BUTTON */
.primary-btn {
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-green-dark)
  );

  box-shadow:
    0 12px 30px rgba(22, 163, 74, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* ✨ HOVER EFFECT */
.primary-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    135deg,
    var(--accent-green-dark),
    var(--accent-green)
  );
}



/* VALUE CARDS */
.value-right {
  display: grid;
  gap: 20px;
}

.value-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 18px;

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

/* subtle glow layer */
.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(34,197,94,0.25),
    rgba(37, 235, 119, 0.22),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: linear-gradient(
    135deg,
    #ffffff,
    #51ec7f
  );

  box-shadow:
    0 45px 90px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(34,197,94,0.15);
}

.value-card:hover::after {
  opacity: 1;
}

/* icon animation */
.value-card:hover i {
  transform: scale(1.15);
  color: var(--accent-blue);
}

.value-card i {
  font-size: 22px;
  color: var(--accent-green);
  transition: transform 0.35s ease, color 0.35s ease;
}

/* ================= PROBLEM ================= */
.recon-problem {
  padding: 80px 10%;
}

.recon-problem h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 70px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 34px;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease;
}

.problem-card i {
  font-size: 26px;
  color: var(--accent-blue);
  margin-bottom: 14px;
}

.problem-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.problem-card:hover {
  transform: translateY(-12px);
}
/* ================= BENEFITS SECTION ================= */
.recon-benefits {
  padding: 120px 10%;
  background: linear-gradient(180deg, #ecfdf5, #ffffff);
  overflow: hidden;
}

.benefits-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 100px;
}

/* ===== ORBIT SYSTEM ===== */
.benefits-orbit {
  position: relative;
  width: 650px;
  height: 650px;
  margin: auto;
}

/* ===== DOTTED RINGS ===== */
.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.ring-left {
  border: 2px dashed rgba(16, 185, 129, 0.35);
  animation: spin 40s linear infinite;
}

.ring-right {
  inset: 80px;
  border: 2px dashed rgba(15, 23, 42, 0.25);
  animation: spinReverse 55s linear infinite;
}

/* ===== CENTER IMAGE ===== */
.benefit-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 5;
}

.benefit-center img {
  width: 360px;
  /* border-radius: 50%;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 90px rgba(15,23,42,0.3); */
}

/* ===== ORBITS ===== */
.orbit {
  position: absolute;
  inset: 0;
}

.orbit-left {
  animation: spin 28s linear infinite;
}

.orbit-right {
  inset: 80px;
  animation: spinReverse 28s linear infinite;
}

/* ===== PLANETS ===== */
.benefit-card.circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: radial-gradient(circle at top, #ffffff, #ecfdf5);
  box-shadow: 0 18px 45px rgba(15,23,42,0.18);
  text-align: center;
  z-index: 4;
}

/* POSITIONS */
.pos-top {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.pos-bottom {
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

/* ICON */
.benefit-card i {
  font-size: 26px;
  color: var(--accent-green);
}

.benefit-card span {
  font-size: 12px;
  font-weight: 600;
  max-width: 150px;
}

/* KEEP TEXT STRAIGHT */
.orbit-left .benefit-card,
.orbit-right .benefit-card {
  animation: counterSpin 28s linear infinite;
}

.orbit-right .benefit-card {
  animation-direction: reverse;
}

/* ===== KEYFRAMES ===== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}

@keyframes counterSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(-360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .benefits-orbit {
    width: 520px;
    height: 520px;
  }

  .benefit-center img {
    width: 180px;
  }

  .benefit-card.circle {
    width: 120px;
    height: 120px;
  }

    .benefit-card span{
    font-size: 10px;
    max-width: 120px;
  }
}

@media (max-width: 600px) {
  .benefits-orbit {
    width: 400px;
    height: 400px;
  }

  .benefit-card span{
    font-size: 8px;
  }
}

/* ================= FEATURES ================= */
.recon-features {
  padding: 120px 10%;
  background: #ffffff;
}

.recon-features h2 {
  text-align: center;
  margin-bottom: 70px;
  font-size: 34px;
  font-weight: 800;
  color: var(--text-main);
}

/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

/* CARD */
.feature-card {
  background: linear-gradient(
    180deg,
    #ffffff,
    #f8fafc
  );
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;

  text-align: left;

  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.12);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;

  border-radius: 14px;
  background: #ecfdf5;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ICON STYLE */
.feature-icon i {
  font-size: 30px;
  color: var(--accent-green);
}


/* TEXT */
.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 40px 90px rgba(15, 23, 42, 0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .recon-features {
    padding: 90px 6%;
  }

  .recon-features h2 {
    font-size: 26px;
  }

  .feature-card {
    padding: 32px 26px;
  }
}

/* ================= FINAL FINTECH SECTION ================= */
.recon-final {
  padding: 130px 10%;
  background:
    radial-gradient(
      circle at top,
      #ecfdf5,
      #ffffff
    );
}

.final-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.final-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-main);
}

.final-content h2 span {
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--accent-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.final-content p {
  max-width: 680px;
  margin: 0 auto 46px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* STATS */
.final-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 56px;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-green);
}

.stat span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ACTIONS */
.final-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* SECONDARY BUTTON */
.secondary-btn {
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid var(--accent-green);
  background: transparent;
  color: var(--accent-green);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
}

.secondary-btn:hover {
  background: #ecfdf5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .final-stats {
    flex-direction: column;
    gap: 26px;
  }
}

@media (max-width: 600px) {
  .final-content h2 {
    font-size: 28px;
  }

  .final-actions {
    flex-direction: column;
  }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .recon-intro h1 {
    font-size: 40px;
  }

  .value-left h2 {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .recon-value {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-left p {
    margin-inline: auto;
  }
}

/* @media (max-width: 600px) {
  .recon-intro {
    padding: 90px 6% 60px;
  }

  .recon-intro h1 {
    font-size: 30px;
  }

  .recon-cta h2 {
    font-size: 26px;
  }
} */
