/* =====================================================
AUREON WEALTH
FINAL CORE STYLE.CSS (BATCH 1)
Stable • Premium • Consistent • Mobile Ready
===================================================== */

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

:root {
  --primary: #10c69a;
  --primary-dark: #0ea57f;
  --dark: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;

  --shadow-sm: 0 8px 20px rgba(15, 23, 42, .05);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, .08);
  --shadow-green: 0 14px 28px rgba(16, 198, 154, .18);

  --radius: 18px;
  --container: 1240px;
  --section-gap-tight: 40px;
  --section-gap-normal: 80px;
}

/* ===============================
BASE
=============================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: .25s ease;
}

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

/* ===============================
TYPOGRAPHY
=============================== */
h1,
h2,
h3,
h4 {
  color: var(--dark);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  text-align: center;
  margin-bottom: 18px;
}

h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

/* ===============================
HEADER
=============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, .85);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav {
  max-width: var(--container);
  margin: auto;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--dark);
}

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

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.menu a {
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  padding: 8px 0;
  position: relative;
}

.menu a:not(.login-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: .25s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--dark);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

/* LOGIN */
.login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  font-weight: 800;
  box-shadow: var(--shadow-green);
}

.login-link:hover {
  transform: translateY(-2px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* ===============================
BUTTONS
=============================== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 16px;
  font-weight: 800;
  transition: .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid #dbe2ea;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 198, 154, .35);
  color: var(--primary);
}

/* ===============================
SECTIONS
=============================== */
.section {
  padding: 78px 0;
  position: relative;
}

.alt-bg {
  background: var(--soft);
}

/* ===============================
CARDS
=============================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #d8f7ef;
}

/* ===============================
UNIVERSAL CTA
=============================== */
.cta-section {
  background: linear-gradient(135deg, #09142d, #0f172a 60%, #13213f);
  color: #fff;
  padding: 42px 28px;
  border-radius: 26px;
  text-align: center;
  max-width: 1280px;
  margin: 46px auto 0;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .16);
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 12px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: #dbe6f2;
  font-size: 18px;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 22px;
}

/* ===============================
TICKER
=============================== */
.tv-bar {
  display: flex;
  align-items: center;
  height: 48px;
  background: #000;
  overflow: hidden;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.tv-left,
.tv-right {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  white-space: nowrap;
  color: #10c69a;
  background: #021a15;
  z-index: 2;
}

.tv-left {
  width: 170px;
  min-width: 170px;
  gap: 8px;
}

.tv-right {
  width: 170px;
  min-width: 170px;
}

.tv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10c69a;
  box-shadow: 0 0 8px #10c69a;
}

.tv-inner {
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tv-center {
  width: 100%;
  height: 48px;
}

.tradingview-widget-container,
.tradingview-widget-container iframe {
  width: 100% !important;
  height: 48px !important;
}

/* ===============================
FOOTER
=============================== */
.footer {
  background: #08152e;
  padding: 48px 0 18px;
  margin-top: 72px;
  color: #dbe7f7;
}

.footer-row,
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-copy {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a,
.footer a {
  font-size: 14px;
  font-weight: 700;
  color: #cbd5e1;
}

.footer a:hover {
  color: var(--primary);
}

.legal-links {
  justify-content: flex-end;
}

/* ===============================
UTILITIES
=============================== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

/* ===============================
TABLET
=============================== */
@media(max-width:1100px) {

  .footer-row,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .legal-links {
    justify-content: center;
  }

}

/* ===============================
MOBILE
=============================== */
@media(max-width:768px) {

  .container {
    padding: 0 16px;
  }

  body {
    font-size: 15px;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
  }

  .section {
    padding: 56px 0;
  }

  .logo {
    font-size: 26px;
  }

  /* NAV */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
    border-top: 1px solid #eef2f7;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }

  .menu.show {
    display: flex;
  }

  .menu a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .menu a::after {
    display: none !important;
  }

  .login-link {
    width: 100%;
  }

  /* TICKER */
  .tv-bar {
    height: 42px;
  }

  .tv-left,
  .tv-right {
    height: 42px;
    width: 115px;
    min-width: 115px;
    font-size: 11px;
  }

  .tradingview-widget-container,
  .tradingview-widget-container iframe {
    height: 42px !important;
  }

  /* CTA */
  .cta-section {
    padding: 30px 18px;
    margin: 34px auto 0;
    border-radius: 22px;
  }

  .cta-section h2 {
    font-size: 30px;
  }

  .cta-section p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  /* FOOTER */
  .footer {
    padding-bottom: 82px;
  }

  .footer-links {
    gap: 12px;
  }

  /* MOBILE BAR */
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
  }

  .mobile-bar a {
    padding: 14px;
    text-align: center;
    font-weight: 800;
    color: #fff;
  }

  .mobile-bar a:first-child {
    background: #0f172a;
  }

  .mobile-bar a:last-child {
    background: #25D366;
  }

}

/* ==================================
FINAL MOBILE BAR FIX
Desktop Hidden / Mobile Perfect
================================== */

.mobile-bar {
  display: none !important;
}

@media (max-width:768px) {

  .mobile-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .12);
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    margin: 0;
    padding: 0;
  }

  .mobile-bar a:first-child {
    background: #0f172a;
  }

  .mobile-bar a:last-child {
    background: #25D366;
  }

  body {
    padding-bottom: 56px;
  }

}

/* ===============================
CALCULATOR UI POLISH (SAFE)
=============================== */

.calc-wrap {
  max-width: 1100px;
  margin: 120px auto 60px;
  padding: 0 20px;
}

.calc-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border: 1px solid #eef2f7;
}

/* FORM FIELDS */
.calc-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

/* FIX: remove inner border inside inputwrap */
.inputwrap input {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.calc-card input:focus {
  outline: none;
  border-color: #10c69a;
  box-shadow: 0 0 0 3px rgba(16, 198, 154, .15);
}

/* BUTTON */
.calc-card button {
  width: 100%;
  background: #10c69a;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: .2s;
}

.calc-card button:hover {
  background: #0ea985;
}

/* RESULT BOX */
.result-box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  color: #0f172a;
}

/* HEADING */
.calc-wrap h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* MOBILE */
@media(max-width:768px) {

  .calc-wrap {
    margin: 100px auto 40px;
  }

  .calc-wrap h1 {
    font-size: 28px;
  }

  .calc-card {
    padding: 20px;
  }

}

/* =========================================
CALCULATORS MOBILE FIX (SAFE GLOBAL PATCH)
========================================= */

/* FIX WRAP */
.wrap {
  padding: 24px 16px 60px !important;
}

/* HERO GRID MOBILE */
@media(max-width:900px) {

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* REMOVE STICKY ON MOBILE */
  .left {
    position: relative !important;
    top: auto !important;
  }

  /* HEADINGS */
  .left h1 {
    font-size: 34px !important;
    line-height: 1.15 !important;
  }

  .left p {
    font-size: 16px !important;
  }

  /* BADGES */
  .badges {
    gap: 10px;
  }

  .badges span {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* CARD */
  .card {
    padding: 20px !important;
    border-radius: 18px !important;
  }

  /* INPUT FIELD ALIGNMENT */
  .topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* INPUT BOX FULL WIDTH */
  .editbox {
    width: 100% !important;
    text-align: left !important;
  }

  /* RANGE SLIDER */
  input[type=range] {
    margin-top: 6px;
  }

  /* SECTION */
  .section {
    padding: 26px !important;
  }

  /* CTA */
  .cta {
    padding: 28px 18px !important;
  }

  .cta h2 {
    font-size: 26px !important;
  }

  .cta p {
    font-size: 15px !important;
  }

}

/* EXTRA SMALL DEVICES */
@media(max-width:480px) {

  .wrap {
    padding: 20px 14px 50px !important;
  }

  .left h1 {
    font-size: 28px !important;
  }

}

/* ==================================
STICKY FOOTER FIX (SAFE GLOBAL)
================================== */

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main,
.main-sec,
.wrap {
  flex: 1;
}

/* ===== TradingView Ticker Fix (All Devices) ===== */

.tradingview-widget-container {
  width: 100%;
  min-height: 70px;
  display: block;
}

.tradingview-widget-container__widget {
  width: 100%;
  min-height: 70px;
}

.tradingview-widget-container iframe {
  display: block !important;
  width: 100% !important;
  height: 70px !important;
  min-height: 70px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Prevent clipping */
.tv-bar,
.tv-inner,
.tv-center {
  overflow: visible !important;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 900px) {

  .tradingview-widget-container,
  .tradingview-widget-container__widget,
  .tradingview-widget-container iframe {
    height: 70px !important;
    min-height: 70px !important;
  }

  /* Ensure no parent hides it */
  .tv-bar,
  .tv-inner,
  .tv-center {
    overflow: visible !important;
  }

}

/* Hide ticker side labels on mobile */
@media (max-width: 900px) {

  .tv-left,
  .tv-right {
    display: none !important;
  }

}

.tv-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.tv-center {
  flex: 1;
  min-width: 0;
  /* VERY IMPORTANT */
}

@media (max-width: 900px) {

  .tv-inner {
    display: block;
  }

  .tv-center {
    width: 100%;
  }

}

.tradingview-widget-container iframe {
  display: block !important;
  height: 70px !important;
  min-height: 70px !important;
}

.tv-bar,
.tv-inner,
.tv-center {
  overflow: visible !important;
}

.tradingview-widget-container {
  width: 100%;
  max-width: 100%;
}

/* Reduce space between CTA and footer globally */
.cta-section {
  margin-top: -40px;
  /* adjust: 24px–48px sweet spot */
  margin-bottom: -80px;
  /* adjust: 24px–48px sweet spot */
}

/* Remove extra footer top gap */
footer {
  margin-top: 0;
  padding-top: 40px;
  /* keep internal spacing clean */
}

.fund-card {
  padding: 24px;
  margin-bottom: 16px;
}

.amc-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.amc-wrap {
  max-width: var(--container);
  /* SAME as header */
  margin: auto;
  padding: 0 24px;
}

.amc-card {
  text-align: center;
  padding: 28px 20px;
  cursor: pointer;
  transition: .25s ease;
}

.amc-card:hover {
  transform: translateY(-5px);
}

.amc-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f172a;
}

.amc-name {
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
}

.explore {
  font-size: 13px;
  color: var(--primary);
  opacity: 0;
  transition: .2s;
}

.amc-card:hover .explore {
  opacity: 1;
}

.fund-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  cursor: pointer;
  transition: .25s ease;
}

.fund-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.fund-top {
  margin-bottom: 10px;
}

.fund-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.fund-category {
  font-size: 12px;
  color: #64748b;
}

.fund-meta {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 13px;
}

.return span {
  font-weight: 700;
}

.risk {
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
}

.risk.high {
  background: #fee2e2;
  color: #b91c1c;
}

.risk.moderate {
  background: #fef3c7;
  color: #92400e;
}

.risk.low {
  background: #dcfce7;
  color: #166534;
}

.fund-actions {
  margin-top: 10px;
}

.fund-sip {
  margin-top: 40px;
}

.fund-sip h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.fund-sip .sub {
  color: #64748b;
  margin-bottom: 20px;
}

.sip-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sip-input {
  margin-bottom: 20px;
}

.sip-input input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  width: 120px;
  font-weight: 600;
}

.sip-table {
  width: 100%;
  border-collapse: collapse;
}

.sip-table th,
.sip-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eef2f7;
}

.sip-table th {
  color: #64748b;
  font-weight: 600;
}

.green {
  color: #16a34a;
  font-weight: 700;
}

.red {
  color: #dc2626;
  font-weight: 700;
}

/* Mobile */
@media(max-width:768px) {

  .sip-table th,
  .sip-table td {
    font-size: 13px;
    padding: 10px;
  }
}

/* HEADER */
.fund-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.amc-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* RISKOMETER */
.riskometer {
  margin-top: 25px;
}

.risk-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 6px;
}

.risk-bar {
  position: relative;
  height: 10px;
  border-radius: 20px;
  background: linear-gradient(to right,
      #22c55e,
      #84cc16,
      #eab308,
      #f97316,
      #ef4444,
      #991b1b);
}

.risk-pointer {
  position: absolute;
  top: -6px;
  width: 16px;
  height: 16px;
  background: #111;
  border-radius: 50%;
  transform: translateX(-50%);
}

.risk-text {
  margin-top: 8px;
  font-weight: 700;
  font-size: 13px;
}

/* RETURN COLOR */
.green {
  color: #16c784;
}

.red {
  color: #ef4444;
}

.fund-side {
  position: sticky;
  top: 100px;
}

#rangeBtns button {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}

#rangeBtns button.active {
  background: #10c69a;
  color: #fff;
  border-color: #10c69a;
}

.toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.toggle button {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}

.toggle button.active {
  background: #10c69a;
  color: #fff;
}

.amount-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 8px 12px;
  width: 160px;
  margin-bottom: 10px;
}

.amount-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  width: 100%;
}

#amountSlider {
  width: 100%;
  accent-color: #10c69a;
  margin-top: 6px;
}

/* FUND DETAIL GRID FIX */
.fund-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr;
  gap: 24px;
}

@media(max-width:900px) {
  .fund-grid {
    grid-template-columns: 1fr;
  }
}

.fund-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fund-header>div:last-child {
  flex: 1;
}

.chart-footnote {
  margin-top: 10px;
  font-size: 12px;
  color: #64748b;
}

.chart-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chart-card {
  height: 420px;
}

.chart-card canvas {
  height: 100% !important;
}

.calc-disclaimer {
  font-size: 12px;
  color: #64748b;
  margin-top: 10px;
  line-height: 1.6;
  white-space: normal;
}

#amountSlider {
  width: 100%;
  accent-color: #10c69a;
  margin-top: 10px;
  cursor: pointer;
}

.grid {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr;
  gap: 24px;
}

.calculator input {
  width: 100%;
}

/* ===== COMMON RANGE SLIDER (Calc UI Phase) ===== */

input[type=range] {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 99px;
  outline: none;

  /* dynamic fill */
  background: linear-gradient(to right,
      #10c69a 0%,
      #10c69a var(--progress, 50%),
      #e2e8f0 var(--progress, 50%),
      #e2e8f0 100%);
}

/* slider thumb */
input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10c69a;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(16, 198, 154, .35);
}

/* Firefox */
input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10c69a;
  cursor: pointer;
}

/* ===== CALC UI PHASE — NUMBER STYLING ===== */

/* Input boxes (all calculators) */
.editbox,
.inputwrap input {
  font-size: 20px;
  /* bigger */
  font-weight: 800;
  color: #10c69a;
  /* brand green */
  letter-spacing: 0.5px;
}

/* Focus state (premium glow) */
.editbox:focus,
.inputwrap:focus-within {
  border-color: #10c69a;
  box-shadow: 0 0 0 3px rgba(16, 198, 154, .15);
}

/* Labels slightly refined */
.label {
  font-size: 14px;
  color: #64748b;
  font-weight: 700;
}

/* Main result number (big amount) */
.big {
  font-size: 44px;
  font-weight: 900;

  background: linear-gradient(90deg, #10c69a, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 0.5px;
}

/* Breakdown numbers (Invested / Returns etc.) */
.stat span:last-child {
  font-weight: 800;
  color: #0f172a;
}

/* Highlight important numbers */
.green {
  color: #10c69a;
  font-weight: 900;
}


/* ===== CALC UI PHASE CORE ===== */

/* INPUT BOX */
.editbox {
  width: 150px;
  padding: 10px 14px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 800;
  text-align: right;
  outline: none;
  color: #10c69a;
}

/* RESULT NUMBER */
.big {
  font-size: 44px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 18px;

  background: linear-gradient(90deg, #10c69a, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RANGE SLIDER */
input[type=range] {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 99px;
  outline: none;

  background: linear-gradient(to right,
      #10c69a 0%,
      #10c69a var(--progress, 50%),
      #e2e8f0 var(--progress, 50%),
      #e2e8f0 100%);
}

input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10c69a;
  cursor: pointer;
}

/* ===== Input Wrapper (Global) ===== */
.inputwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px;
  min-width: 150px;
  gap: 6px;
}

.inputwrap span {
  font-weight: 700;
  color: #64748b;
  font-size: 14px;
}

.inputwrap input {
  border: none;
  outline: none;
  background: transparent;
}

.inputwrap:focus-within {
  border-color: #10c69a;
  box-shadow: 0 0 0 3px rgba(16, 198, 154, .12);
}

.editbox {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.inputwrap span:first-child {
  margin-right: 4px;
}

.inputwrap span:last-child {
  margin-left: 4px;
}

/* REMOVE NUMBER INPUT DEFAULT UI */
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Blur Effect */
.aw-blur *:not(#aw-protection-overlay):not(#aw-protection-overlay *) {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

/* Overlay */
#aw-protection-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeIn 0.3s ease;
}

/* Content */
.aw-protection-content {
  text-align: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.aw-protection-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.aw-protection-content p {
  font-size: 16px;
  opacity: 0.8;
}

.aw-protection-content span {
  font-size: 13px;
  opacity: 0.5;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ==========================================
FOOTER — AUREON WEALTH
========================================== */

.footer {
  background: #08152e;
  padding: 70px 0 26px;
  margin-top: 120px;
  color: #dbe7f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.footer-brand h3 {
  font-size: 34px;
  margin: 0 0 16px;
  font-weight: 800;
  color: #ffffff;
}

.footer-nav-group h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 18px;
  color: #ffffff;
  white-space: nowrap;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-col a {
  text-decoration: none;
  color: #aebed4;
  font-size: 15px;
  font-weight: 600;
  transition: .25s ease;
  line-height: 1.5;
}

.footer-links-col a:hover {
  color: #14b88f;
  transform: translateX(3px);
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.9;
  color: #b8c7dd;
  max-width: 420px;
  margin: 0 0 18px;
}

.footer-trust {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 600;
  color: #b8d8ff;
  text-decoration: none;
  margin-top: 6px;
  position: relative;
  transition: .25s ease;
  backdrop-filter: blur(10px);
}

.footer-trust::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  z-index: -1;
}

.footer-trust:hover {
  border-color: rgba(20, 184, 143, .35);
  color: #d7fff3;
  transform: translateY(-1px);
}

.footer h4 {
  font-size: 18px;
  margin: 0 0 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-col a {
  text-decoration: none;
  color: #c8d4e7;
  font-size: 15px;
  transition: .25s ease;
}

.footer-links-col a:hover {
  color: #14b88f;
  transform: translateX(3px);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 14px;
  color: #9fb0c9;
}

@media(max-width:900px) {

  .footer {
    padding: 60px 0 24px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .footer-brand h3 {
    font-size: 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}