:root {
  --ig-green: #16A34A;
  --ig-green-dark: #15803D;
  --ig-green-light: #DCFCE7;
  --ig-red: #DC2626;
  --ig-red-light: #FEE2E2;
  --ig-white: #FFFFFF;
  --ig-gray: #F8FAFC;
  --ig-border: #E2E8F0;
  --ig-text: #0F172A;
  --ig-muted: #64748B;
  --ig-shadow: 0 10px 30px -10px rgba(15, 23, 42, .15);
  --ig-shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, .25);
}

* {
  scroll-behavior: smooth
}

/* WCAG 2.2 — Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ig-green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* WCAG 2.2 — Visible focus indicator */
:focus-visible {
  outline: 3px solid var(--ig-green);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--ig-green);
  outline-offset: 2px;
}

html,
body {
  overflow-x: hidden
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ig-text);
  background: var(--ig-white);
  line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -.02em
}

h1 {
  font-weight: 800
}

a {
  text-decoration: none;
  color: var(--ig-green)
}

a:hover {
  color: var(--ig-green-dark)
}

/* Top bar */
.topbar {
  background: linear-gradient(90deg, var(--ig-green), #15803D);
  color: #fff;
  font-size: .85rem;
  padding: 8px 0
}

.topbar a {
  color: #fff;
  opacity: .95
}

.topbar .ticker {
  display: flex;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap
}

.topbar .ticker span b {
  color: #fff
}

.up {
  color: #bbf7d0
}

.down {
  color: #fecaca
}

/* Navbar */
.navbar-ig {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .06);
  transition: all .3s
}

.navbar-ig.scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08)
}

.navbar-ig .navbar-brand img {
  height: 44px
}

.navbar-ig .nav-link {
  color: var(--ig-text);
  font-weight: 500;
  margin: 0 6px;
  position: relative
}

.navbar-ig .nav-link:hover,
.navbar-ig .nav-link.active {
  color: var(--ig-green)
}

.navbar-ig .nav-link.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -4px;
  height: 3px;
  background: var(--ig-green);
  border-radius: 3px
}

/* Dropdown */
.dropdown-menu-ig {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 60px -10px rgba(15, 23, 42, .2);
  padding: 10px 8px;
  min-width: 240px;
  background: #fff;
  animation: dropIn .2s ease;
  margin-top: 10px !important
}

@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-8px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.dropdown-menu-ig .dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ig-text);
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 4px
}

.dropdown-menu-ig .dropdown-item:hover,
.dropdown-menu-ig .dropdown-item:focus {
  background: var(--ig-green-light);
  color: var(--ig-green-dark)
}

.dropdown-menu-ig .dropdown-divider {
  margin: 6px 8px;
  border-color: var(--ig-border)
}

.navbar-ig .nav-link.dropdown-toggle::after {
  display: none
}

.navbar-ig .nav-link.dropdown-toggle .bi-chevron-down {
  transition: transform .25s ease
}

.navbar-ig .nav-link.dropdown-toggle.show .bi-chevron-down {
  transform: rotate(180deg)
}

/* Buttons */
.btn-ig {
  background: var(--ig-green);
  color: #fff;
  border: 0;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  transition: .25s;
  box-shadow: 0 8px 20px -8px rgba(22, 163, 74, .6)
}

.btn-ig:hover {
  background: var(--ig-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(22, 163, 74, .7)
}

.btn-outline-ig {
  border: 2px solid var(--ig-green);
  color: var(--ig-green);
  padding: .6rem 1.3rem;
  border-radius: 10px;
  font-weight: 600;
  background: transparent;
  transition: .25s
}

.btn-outline-ig:hover {
  background: var(--ig-green);
  color: #fff
}

.btn-red {
  background: var(--ig-red);
  color: #fff;
  border: 0;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  font-weight: 600
}

.btn-red:hover {
  background: #b91c1c;
  color: #fff
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 90px;
  background: linear-gradient(180deg, #F0FDF4 0%, #ffffff 100%);
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 163, 74, .18), transparent 70%);
  border-radius: 50%
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, .12), transparent 70%);
  border-radius: 50%
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ig-green-light);
  color: var(--ig-green-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 20px
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px
}

.hero h1 .accent {
  color: var(--ig-green);
  position: relative
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(22, 163, 74, .18);
  z-index: -1;
  border-radius: 4px
}

.hero p.lead {
  color: var(--ig-muted);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 560px;
  margin-top: 30px;
}

.hero-image {
  position: relative;
  z-index: 2
}

.hero-image .card-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--ig-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite
}

.hero-image .card-float .icon {
  width: 62px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem
}

.hero-image .card-float.c1 {
  top: 8%;
  left: -20px;
  animation-delay: .2s
}

.hero-image .card-float.c2 {
  bottom: 4%;
  right: -10px;
  animation-delay: .8s
}

.hero-image .card-float.c3 {
  top: 65%;
  right: -20px;
  animation-delay: 1.4s
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@media (max-width: 991px) {
  .hero-image .card-float {
    padding: 10px 14px;
    border-radius: 12px;
  }

  .hero-image .card-float .icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hero-image .card-float.c1 {
    left: -10px;
  }

  .hero-image .card-float.c2 {
    right: -10px;
  }

  .hero-image .card-float.c3 {
    right: -15px;
  }
}

@media (max-width: 767px) {
  .hero-image .card-float {
    padding: 8px 12px;
    border-radius: 10px;
    gap: 8px;
  }

  .hero-image .card-float .icon {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .hero-image .card-float strong {
    font-size: 0.85rem;
  }

  .hero-image .card-float.c1 {
    left: 0px;
    top: 5%;
  }

  .hero-image .card-float.c2 {
    right: 0px;
    bottom: 5%;
  }

  .hero-image .card-float.c3 {
    right: 0px;
    top: 40%;
  }
}

@media (max-width: 575px) {
  .hero-image .card-float {
    display: none;
    /* Hide floating badges on mobile screens to show the beautiful family illustration clearly */
  }
}

/* Page hero */
.page-hero {
  padding: 140px 0 20px;
  background: linear-gradient(180deg, #F0FDF4, #fff);
  position: relative;
  overflow: hidden
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem)
}

.page-hero p {
  color: var(--ig-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto
}

.breadcrumb-ig {
  display: inline-flex;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--ig-shadow);
  font-size: .9rem
}

.breadcrumb-ig a {
  color: var(--ig-muted)
}

.breadcrumb-ig .sep {
  margin: 0 8px;
  color: var(--ig-border)
}

.breadcrumb-ig .current {
  color: var(--ig-green);
  font-weight: 600
}

/* Section */
section {
  padding: 90px 0
}

.section-title {
  text-align: center;
  margin-bottom: 60px
}

.section-title .eyebrow {
  color: var(--ig-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  margin-bottom: 12px;
  display: block
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px
}

.section-title p {
  color: var(--ig-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem
}

/* Glass card */
.glass {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--ig-shadow);
  transition: .3s
}

.glass:hover {
  transform: translateY(-6px);
  box-shadow: var(--ig-shadow-lg)
}

/* Service card */
.service-card {
  background: #fff;
  border: 1px solid var(--ig-border);
  border-radius: 18px;
  padding: 32px;
  transition: .3s;
  height: 100%;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ig-green), var(--ig-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ig-shadow-lg);
  border-color: transparent
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--ig-green-light);
  color: var(--ig-green);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px
}

.service-card h4 {
  margin-bottom: 12px
}

.service-card p {
  color: var(--ig-muted);
  margin-bottom: 16px
}

.mission-card {
  display: flex;
  flex-direction: column;
  align-items: center
}

.mission-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 4px
}

.mission-animated-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ig-text)
}

.mission-prefix {
  color: var(--ig-green-dark);
  letter-spacing: .08em
}

.mission-rotator {
  position: relative;
  display: inline-block;
  min-width: 8ch;
  height: 1.3em;
  vertical-align: bottom
}

.mission-word {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px) scale(.98);
  filter: blur(2px);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
  letter-spacing: .08em
}

.mission-word-trader {
  color: var(--ig-green)
}

.mission-word-investor {
  color: var(--ig-red)
}

.mission-word.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0)
}

.mission-support {
  margin: 0;
  max-width: 26ch;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ig-muted)
}

@media (prefers-reduced-motion: reduce) {
  .mission-word {
    transition: none
  }
}

.service-card .arrow {
  color: var(--ig-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--ig-green), #15803D);
  color: #fff;
  border-radius: 24px;
  padding: 50px 30px;
  box-shadow: var(--ig-shadow-lg)
}

.stats .stat {
  text-align: center
}

.stats .stat .num {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: block
}

.stats .stat .lbl {
  opacity: .9;
  font-size: .95rem;
  margin-top: 4px
}

/* Table */
.table-ig {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ig-shadow)
}

.table-ig thead {
  background: var(--ig-gray)
}

.table-ig th {
  padding: 16px;
  font-weight: 700;
  color: var(--ig-text);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px
}

.table-ig td {
  padding: 16px;
  border-top: 1px solid var(--ig-border);
  font-weight: 500
}

.table-ig tr:hover td {
  background: #fafbfc
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700
}

.pill-buy {
  background: var(--ig-green-light);
  color: var(--ig-green-dark)
}

.pill-sell {
  background: var(--ig-red-light);
  color: var(--ig-red)
}

.pill-hold {
  background: #FEF3C7;
  color: #92400E
}

/* Testimonial */
.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--ig-border);
  height: 100%
}

.testimonial .stars {
  color: #F59E0B;
  margin-bottom: 12px
}

.testimonial p {
  color: var(--ig-text);
  font-style: italic;
  margin-bottom: 20px
}

.testimonial .who {
  display: flex;
  align-items: center;
  gap: 14px
}

.testimonial .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ig-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700
}

/* Blog card */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ig-border);
  transition: .3s;
  height: 100%
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ig-shadow-lg)
}

.blog-card .thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--ig-green), #15803D);
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 3rem
}

.blog-card .thumb.alt {
  background: linear-gradient(135deg, #0ea5e9, #0369a1)
}

.blog-card .thumb.alt2 {
  background: linear-gradient(135deg, var(--ig-red), #991b1b)
}

.blog-card .body {
  padding: 24px
}

.blog-card .meta {
  font-size: .85rem;
  color: var(--ig-muted);
  margin-bottom: 10px
}

.blog-card h5 {
  margin-bottom: 10px
}

/* Pricing */
.price-card {
  background: #fff;
  border: 1px solid var(--ig-border);
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  position: relative;
  transition: .3s
}

.price-card.featured {
  background: linear-gradient(180deg, #16A34A 0%, #15803D 100%);
  color: #fff;
  transform: scale(1.04);
  border: 0
}

.price-card.featured h3,
.price-card.featured .price {
  color: #fff
}

.price-card.featured ul li {
  color: rgba(255, 255, 255, .95)
}

.price-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ig-text);
  margin: 14px 0
}

.price-card .price small {
  font-size: 1rem;
  color: var(--ig-muted);
  font-weight: 500
}

.price-card.featured .price small {
  color: rgba(255, 255, 255, .85)
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0
}

.price-card ul li {
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: center
}

.price-card ul li i {
  color: var(--ig-green)
}

.price-card.featured ul li i {
  color: #bbf7d0
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ig-shadow-lg)
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-8px)
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--ig-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px
}

/* FAQ */
.accordion-ig .accordion-item {
  border: 1px solid var(--ig-border);
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff
}

.accordion-ig .accordion-button {
  font-weight: 600;
  padding: 20px 24px;
  background: #fff
}

.accordion-ig .accordion-button:not(.collapsed) {
  background: var(--ig-green-light);
  color: var(--ig-green-dark);
  box-shadow: none
}

.accordion-ig .accordion-button:focus {
  box-shadow: none;
  border: 0
}

.accordion-ig .accordion-body {
  color: var(--ig-muted);
  padding: 0 24px 22px
}

/* Contact */
.contact-card {
  background: #fff;
  border: 1px solid var(--ig-border);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  height: 100%;
  transition: .3s
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ig-shadow)
}

.contact-card .ico {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--ig-green-light);
  color: var(--ig-green);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 16px
}

.form-control,
.form-select {
  border: 1.5px solid var(--ig-border);
  padding: .8rem 1rem;
  border-radius: 10px;
  font-size: .95rem
}

.form-control:focus,
.form-select:focus {
  border-color: var(--ig-green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12)
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden
}

.cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(22, 163, 74, .4), transparent 70%);
  border-radius: 50%
}

.cta h2 {
  color: #fff
}

.cta p {
  color: rgba(255, 255, 255, .8)
}

/* Footer */
footer {
  background: #0F172A;
  color: #cbd5e1;
  padding: 70px 0 20px
}

footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: 1.2px
}

footer a {
  color: #cbd5e1;
  display: block;
  padding: 6px 0;
  transition: .2s
}

footer a:hover {
  color: var(--ig-green);
  transform: translateX(4px)
}

footer .footer-logo {
  height: 48px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 10px
}

footer .socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1E293B;
  margin-right: 8px;
  color: #cbd5e1
}

footer .socials a:hover {
  background: var(--ig-green);
  color: #fff;
  transform: none
}

footer .copy {
  border-top: 1px solid #1E293B;
  padding-top: 20px;
  margin-top: 40px;
  font-size: .9rem;
  color: #94a3b8;
  text-align: center
}

/* Swiper */
.swiper {
  padding-bottom: 50px !important
}

.swiper-pagination-bullet-active {
  background: var(--ig-green) !important
}

/* Misc */
.bg-gray {
  background: var(--ig-gray)
}

.text-green {
  color: var(--ig-green-dark)
}

.text-red {
  color: var(--ig-red)
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ig-green-light);
  color: var(--ig-green);
  font-size: 1.4rem
}

@media (max-width:768px) {
  .hero {
    padding: 100px 0 60px;
    text-align: center
  }

  .hero p.lead {
    margin-left: auto;
    margin-right: auto
  }

  .hero-image {
    margin-top: 40px
  }

  section {
    padding: 60px 0
  }

  .price-card.featured {
    transform: none
  }

  .stats {
    padding: 30px 20px
  }

  .stats .stat {
    margin-bottom: 20px
  }
}

/* Compliance & Mission Styles */
.mission-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--ig-shadow);
  margin-top: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--ig-shadow-lg);
}

.mission-title {
  color: var(--ig-green-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mission-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--ig-text);
  line-height: 1.4;
  margin: 0;
}

.compliance-card {
  background: #ffffff;
  border: 1px solid var(--ig-border);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--ig-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ig-shadow-lg);
}

.compliance-header {
  border-bottom: 2px solid var(--ig-green-light);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.compliance-title {
  color: var(--ig-text);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0;
}

.compliance-subtitle {
  color: var(--ig-green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  row-gap: 16px;
  column-gap: 20px;
  font-size: 0.95rem;
}

.compliance-label {
  font-weight: 700;
  color: var(--ig-text);
}

.compliance-value {
  color: var(--ig-muted);
}

@media (max-width: 768px) {
  .compliance-grid {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}

/* Academy Page & Mock Video Player */
.video-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ig-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.video-mockup:hover .video-overlay {
  background: rgba(15, 23, 42, 0.3);
}

.play-btn-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ig-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
  padding-left: 6px;
  /* center play triangle slightly */
}

.video-mockup:hover .play-btn-circle {
  transform: scale(1.1);
  background: var(--ig-green-dark);
}

.video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Myth Buster Styles */
.myth-section {
  background: #0B132B;
  color: #fff;
  border-radius: 30px;
  padding: 60px 40px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.myth-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.15), transparent 70%);
  border-radius: 50%;
}

.myth-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s;
}

.myth-box.gambling {
  border-top: 4px solid var(--ig-red);
}

.myth-box.trading {
  border-top: 4px solid var(--ig-green);
  background: rgba(22, 163, 74, 0.02);
}

.myth-box:hover {
  transform: translateY(-5px);
}

.myth-box h4 {
  font-weight: 800;
  margin-bottom: 20px;
}

.myth-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.myth-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.myth-list li:last-child {
  border-bottom: 0;
}

/* Video Feedback Card */
.feedback-video-card {
  background: #fff;
  border: 1px solid var(--ig-border);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: var(--ig-shadow);
  height: 100%;
}

.feedback-video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ig-shadow-lg);
}

.feedback-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-mini {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ig-green);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  padding-left: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.25s;
}

.feedback-video-card:hover .play-mini {
  transform: scale(1.1);
  background: var(--ig-green);
  color: #fff;
}

.feedback-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
}

/* Upgraded Bootcamp Styling */
.bootcamp-cta {
  background: linear-gradient(135deg, #052E16 0%, #16A34A 50%, #14532D 100%);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.25), var(--ig-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.bootcamp-cta::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.bootcamp-cta::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.3), transparent 70%);
  pointer-events: none;
}

.pulse-tag {
  animation: pulse-badge 2s infinite;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.bootcamp-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 22px 28px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s;
  flex: 1 1 240px;
  max-width: 320px;
  text-align: center;
}

.bootcamp-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-bootcamp {
  background: #ffffff !important;
  color: #16A34A !important;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-bootcamp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.4);
  background: #f8fafc !important;
}

.btn-bootcamp i {
  transition: transform 0.3s ease;
}

.btn-bootcamp:hover i {
  transform: translateX(4px);
}

/* Modal Form Styles */
.modal-ig .modal-content {
  border-radius: 24px;
  border: 0;
  box-shadow: var(--ig-shadow-lg);
  overflow: hidden;
}

.modal-ig .modal-header {
  background: linear-gradient(135deg, #052E16 0%, #16A34A 100%);
  color: #fff;
  border-bottom: 0;
  padding: 26px 30px;
  position: relative;
}

.modal-ig .modal-header .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: 0.8;
}

.modal-ig .modal-header .btn-close:hover {
  opacity: 1;
}

.modal-ig .modal-body {
  padding: 35px 30px;
  background: #fff;
}

.modal-ig .form-icon-group {
  position: relative;
}

.modal-ig .form-icon-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ig-muted);
  font-size: 1.1rem;
}

.modal-ig .form-icon-group .form-control {
  padding-left: 46px;
  height: 52px;
  border-radius: 12px;
}

.modal-ig .form-icon-group .form-control:focus {
  border-color: var(--ig-green);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.modal-ig .form-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ig-text);
}

.modal-success-screen {
  text-align: center;
  padding: 20px 10px;
}

.modal-success-screen i {
  font-size: 4rem;
  color: var(--ig-green);
  display: block;
  margin-bottom: 15px;
  animation: success-bounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes success-bounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Complaint Board & Table styles */
.complaint-board-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--ig-shadow);
  border: 1px solid var(--ig-border);
}
.table-ig {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .9rem;
}
.table-ig thead tr th {
  background: var(--ig-green);
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  text-align: left;
}
.table-ig thead tr th:first-child {
  border-radius: 10px 0 0 0;
}
.table-ig thead tr th:last-child {
  border-radius: 0 10px 0 0;
}
.table-ig tbody tr td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--ig-border);
  color: var(--ig-text);
}
.table-ig tbody tr:hover td {
  background: var(--ig-gray);
}
.complaint-grand-total td {
  background: var(--ig-green-light);
  color: var(--ig-green-dark);
  font-weight: 700;
}

/* Timeline Process */
.process-timeline {
  position: relative;
  padding-left: 20px;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ig-green-light);
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 24px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-badge {
  position: absolute;
  left: -20px;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ig-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--ig-green-light);
  z-index: 2;
}
.timeline-panel {
  background: #fff;
  border: 1px solid var(--ig-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--ig-shadow);
  transition: .3s;
}
.timeline-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--ig-shadow-lg);
}

/* WCAG 2.2 — Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}