/* ============================================
   ANDY PESA - DESIGN SYSTEM
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors from new design */
  --green: #10C648;
  /* Bright neon green from screenshot */
  --green-dark: #0a9935;
  --green-light: #e6fceb;
  --blue: #0E68CE;
  /* Deeper trust blue */
  --blue-dark: #094b98;
  --blue-light: #e8f2fb;
  --cyan: #31d1e1;
  --cyan-dark: #27b5c4;
  --cyan-light: #e8fafc;

  /* Strictly White / Minimalist Grays */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --dark: #0a1628;

  /* Typography */
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --section-padding: 80px 0;
  --container-max: 1200px;

  /* Softer, more modern corners */
  --radius: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Softer shadows for minimalist float effect */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, .06);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, .08);
  --shadow-green: 0 8px 30px rgba(16, 198, 72, 0.25);
  --shadow-blue: 0 8px 30px rgba(14, 104, 206, 0.25);

  /* Smoother Easing */
  --transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul,
ol {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: var(--section-padding)
}

.section-sm {
  padding: 60px 0
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center
}

.text-center {
  text-align: center
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900)
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem)
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem)
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem)
}

h4 {
  font-size: 1.25rem
}

p {
  color: var(--gray-600);
  line-height: 1.7
}

.text-green {
  color: var(--green)
}

.text-blue {
  color: var(--blue)
}

.text-cyan {
  color: var(--cyan)
}

.text-white {
  color: #fff
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px
}

.section-label.blue {
  background: var(--blue-light);
  color: var(--blue)
}

.section-label.cyan {
  background: var(--cyan-light);
  color: var(--cyan-dark)
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  align-items: center;
  text-align: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-green)
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(6, 201, 0, .35)
}

.btn-secondary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue)
}

.btn-secondary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300)
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px)
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px)
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35)
}

.btn-whatsapp:hover {
  background: #1fb856;
  transform: translateY(-2px)
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem
}

.btn-sm {
  padding: 10px 20px;
  font-size: .875rem
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: #fff;
  transition: var(--transition);
  border-bottom: 1px solid transparent
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gray-100)
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--green)
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center
}

.nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
  padding: 8px 0
}

.nav-link:hover,
.nav-link.active {
  color: var(--green)
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0
}

.nav-dropdown {
  position: relative
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 12px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 5px)
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  transition: var(--transition)
}

.nav-dropdown-item:hover {
  background: var(--gray-50);
  color: var(--green)
}

.nav-dropdown-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-light);
  flex-shrink: 0
}

.nav-dropdown-item .icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2
}

.navbar-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  flex-direction: column;
  gap: 5px;
  transition: var(--transition);
  border: 1px solid var(--gray-200)
}

.navbar-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition)
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0
}

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; /* overridden by JS to nav bottom */
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 8px;
  max-height: calc(100vh - 75px);
  overflow-y: auto
}

.mobile-menu.open {
  display: flex
}

.mobile-nav-link {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px
}

.mobile-nav-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--green-light);
  color: var(--green)
}

.mobile-menu-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 12px 0
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px
}

.mobile-menu-actions .btn {
  width: 100%
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  background: linear-gradient(135deg, rgba(230, 252, 235, 0.6) 0%, rgba(255, 255, 255, 1) 50%, rgba(232, 242, 251, 0.5) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 252, 235, 0.7) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}

.hero-title .highlight-blue {
  color: var(--blue);
}

.hero-title .highlight-green {
  color: var(--green);
}

.text-gradient {
  background: linear-gradient(90deg, var(--green) 0%, #00c070 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-actions .btn-outline {
  background: #fff;
  color: var(--gray-800);
  border-color: var(--gray-200);
}

.hero-actions .btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-trusted {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.hero-trusted-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* HERO VISUAL - Dashboard Card */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 30px 20px 40px;
}

.hero-dashboard {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(14, 30, 80, 0.12), 0 4px 16px rgba(14, 30, 80, 0.06);
  padding: 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
  border: 1px solid rgba(220, 230, 245, 0.8);
}

.hero-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hero-balance-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 4px;
  font-weight: 500;
}

.hero-balance-amount {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -2px;
  color: var(--gray-900);
  line-height: 1;
}

.hero-rate-badge {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.hero-rate-usdt {
  width: 32px;
  height: 32px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-rate-text {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-bottom: 1px;
}

.hero-rate-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
}

/* Chart bars */
.hero-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
  margin-bottom: 20px;
  padding-bottom: 4px;
}

.hero-bar {
  flex: 1;
  border-radius: 6px 6px 4px 4px;
  transition: transform 0.3s ease;
}

.hero-bar:hover {
  transform: scaleY(1.05);
}

.hero-bar-blue-1 {
  background: #bfdbfe;
  height: 38%;
}

.hero-bar-blue-2 {
  background: #93c5fd;
  height: 52%;
}

.hero-bar-blue-3 {
  background: #60a5fa;
  height: 44%;
}

.hero-bar-green-1 {
  background: #86efac;
  height: 68%;
}

.hero-bar-green-2 {
  background: #4ade80;
  height: 82%;
}

.hero-bar-green-3 {
  background: var(--green);
  height: 100%;
}

/* Dashboard buttons */
.hero-dashboard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-btn-deposit {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.hero-btn-deposit:hover {
  background: #1e293b;
}

.hero-btn-withdraw {
  background: var(--gray-50);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.hero-btn-withdraw:hover {
  background: var(--gray-100);
}

/* Profit today floating chip */
.hero-profit-chip {
  position: absolute;
  bottom: -10px;
  left: -24px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(14, 30, 80, 0.12);
  border: 1px solid rgba(220, 230, 245, 0.8);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-profit-icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-profit-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.hero-profit-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray-900);
}


/* STATS BAR */
.stats-bar {
  background: var(--blue);
  padding: 40px 0;
  margin: 60px 0;
  border-radius: var(--radius-lg);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center
}

.stat-item {
  color: #fff;
  padding: 16px;
  position: relative
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2)
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1
}

.stat-label {
  font-size: .875rem;
  font-weight: 500
}

/* CARDS */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm)
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gray-200)
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  background: var(--blue-light);
  color: var(--blue)
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2
}

.card-icon.green {
  background: var(--green-light);
  color: var(--green)
}

.card-icon.cyan {
  background: var(--cyan-light);
  color: var(--cyan-dark)
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900)
}

.card-text {
  color: var(--gray-500);
  font-size: .95rem;
  line-height: 1.6
}

.service-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm)
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--gray-200)
}

.service-card-header {
  padding: 40px 32px 32px;
  text-align: center;
  position: relative
}

.service-card-header.green-bg {
  background: linear-gradient(180deg, var(--green-light) 0%, #fff 100%)
}

.service-card-header.blue-bg {
  background: linear-gradient(180deg, var(--blue-light) 0%, #fff 100%)
}

.service-card-header.cyan-bg {
  background: linear-gradient(180deg, var(--cyan-light) 0%, #fff 100%)
}

.service-card-icon {
  width: 72px;
  height: 72px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
  color: var(--blue)
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.5
}

.service-card-body {
  padding: 28px
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100)
}

.feature-item:last-child {
  border-bottom: none
}

.feature-item::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.667% + 36px);
  right: calc(16.667% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--blue));
  z-index: 0
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-400);
  margin: 0 auto 24px;
  transition: var(--transition)
}

.step-number.active {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-green)
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px
}

.step-text {
  font-size: .9rem;
  color: var(--gray-500)
}

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  position: relative
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--gray-100);
  line-height: 1
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: .875rem
}

.testimonial-text {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  color: #fff;
  flex-shrink: 0
}

.testimonial-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--gray-800)
}

.testimonial-role {
  font-size: .8rem;
  color: var(--gray-400)
}

/* CTA */
.cta-section {
  background: var(--gray-50);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100)
}

.cta-section h2 {
  color: var(--gray-900);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 2.5rem)
}

.cta-section p {
  color: var(--gray-600);
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

/* FOOTER */
.footer {
  background: #fff;
  color: var(--gray-600);
  padding: 80px 0 0;
  font-size: 14px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gray-100)
}

.footer-brand h3 {
  color: var(--gray-900);
  font-size: 1.4rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.02em
}

.footer-brand h3 span {
  color: var(--green)
}

.footer-brand p {
  color: var(--gray-500);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px
}

.footer-social {
  display: flex;
  gap: 12px
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition);
  border: 1px solid var(--gray-100)
}

.footer-social a:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px)
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor
}

.footer-col h5 {
  color: rgba(255, 255, 255, .9);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-links a {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  transition: var(--transition)
}

.footer-links a:hover {
  color: var(--green)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: var(--transition)
}

.footer-bottom a:hover {
  color: var(--green)
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 16px 0;
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
  text-align: center;
  line-height: 1.6
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px
}

.whatsapp-tooltip {
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  color: var(--gray-700);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--gray-100)
}

.whatsapp-tooltip strong {
  color: var(--gray-800);
  display: block;
  font-size: .875rem;
  margin-bottom: 2px
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0)
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
  transition: var(--transition);
  position: relative;
  color: #fff;
  font-size: 1.6rem
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, .5)
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .3);
  animation: wa-pulse 2.5s ease-in-out infinite
}

@keyframes wa-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7
  }

  50% {
    transform: scale(1.15);
    opacity: 0
  }
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2a5c 50%, #0a3a4a 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px
}

.page-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: .875rem;
  color: rgba(255, 255, 255, .5)
}

.breadcrumb a {
  color: rgba(255, 255, 255, .5);
  transition: var(--transition)
}

.breadcrumb a:hover {
  color: var(--green)
}

.breadcrumb span {
  color: var(--green);
  font-weight: 600
}

/* FAQ */
.faq-search {
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative
}

.faq-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  font-size: .95rem;
  color: var(--gray-700);
  outline: none;
  transition: var(--transition)
}

.faq-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(6, 201, 0, .1)
}

.faq-search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400)
}

.faq-category {
  margin-bottom: 40px
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.faq-category-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.faq-category-title {
  font-size: 1.2rem;
  font-weight: 700
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition)
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300)
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none
}

.faq-question-text {
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-800)
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--transition)
}

.faq-item.open .faq-toggle {
  background: var(--green-light);
  color: var(--green);
  transform: rotate(180deg)
}

.faq-answer {
  display: none;
  padding: 16px 20px 20px;
  color: var(--gray-500);
  font-size: .9rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-100)
}

.faq-item.open .faq-answer {
  display: block
}

.faq-answer a {
  color: var(--green);
  font-weight: 600
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  margin-bottom: 16px;
  cursor: pointer
}

.contact-method:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
  transform: translateY(-2px)
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0
}

.contact-method-title {
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px
}

.contact-method-sub {
  color: var(--gray-500);
  font-size: .875rem
}

.contact-method-arrow {
  margin-left: auto;
  color: var(--gray-400);
  align-self: center
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  padding: 36px;
  box-shadow: var(--shadow-md)
}

.form-group {
  margin-bottom: 20px
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--gray-700);
  margin-bottom: 8px
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: .95rem;
  color: var(--gray-800);
  outline: none;
  transition: var(--transition)
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(6, 201, 0, .1)
}

.form-control::placeholder {
  color: var(--gray-300)
}

textarea.form-control {
  resize: vertical;
  min-height: 120px
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px
}

/* TRUST BADGES */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

.trust-badge-text strong {
  font-size: .9rem;
  color: var(--gray-800);
  display: block
}

.trust-badge-text span {
  font-size: .8rem;
  color: var(--gray-500)
}

/* TERMS */
.terms-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start
}

.terms-nav {
  position: sticky;
  top: 90px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 20px;
  max-height: calc(100vh - 120px);
  overflow-y: auto
}

.terms-nav-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .85rem;
  color: var(--gray-500);
  transition: var(--transition);
  margin-bottom: 2px
}

.terms-nav-link:hover,
.terms-nav-link.active {
  background: var(--green-light);
  color: var(--green);
  font-weight: 600
}

.terms-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100)
}

.terms-content h2:first-child {
  margin-top: 0
}

.terms-content p {
  margin-bottom: 16px;
  color: var(--gray-600);
  font-size: .95rem
}

.terms-content ul,
.terms-content ol {
  margin-bottom: 16px;
  padding-left: 20px
}

.terms-content li {
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: 8px;
  padding-left: 8px
}

.terms-content ul li {
  list-style: disc
}

.terms-content ol li {
  list-style: decimal
}

.risk-box {
  background: linear-gradient(135deg, #fff8e6, #fff3d6);
  border: 2px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0
}

.risk-box h4 {
  color: #d97706;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.risk-box p,
.risk-box li {
  color: #92400e
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan-light));
  border-radius: var(--radius-lg);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue);
  margin-bottom: 24px;
  border: 2px dashed var(--gray-200)
}

.map-placeholder .map-pin {
  font-size: 3rem;
  animation: bounce 1.5s ease-in-out infinite
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* SCROLL TOP */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  color: var(--gray-600);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all
}

.scroll-top:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px)
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

.delay-5 {
  transition-delay: .5s
}

/* NOTICE BANNER */
.notice-banner {
  background: linear-gradient(90deg, var(--blue), var(--cyan-dark));
  color: #fff;
  padding: 10px 24px;
  text-align: center;
  font-size: .875rem;
  font-weight: 500
}

.notice-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600
}

.badge-green {
  background: var(--green-light);
  color: var(--green-dark)
}

.badge-blue {
  background: var(--blue-light);
  color: var(--blue)
}

.badge-gray {
  background: var(--gray-100);
  color: var(--gray-600)
}

/* GRADIENT TEXT UTILITY */
.text-gradient {
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* GRADIENT CTA BOX */
.cta-gradient {
  background-color: var(--dark);
  background-image: radial-gradient(circle at 10% 90%, rgba(14, 104, 206, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(16, 198, 72, 0.3) 0%, transparent 40%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: -100px;
  z-index: 10;
}

.cta-gradient h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-gradient p {
  color: var(--gray-300);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* MODERN FOOTER */
.footer-modern {
  background: var(--gray-50);
  padding: 180px 0 40px;
  /* extra top padding for CTA overlap */
  color: var(--gray-600);
}

.footer-modern-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gray-900);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 34px;
  width: auto;
}

.footer-social-new {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
}

.footer-social-circle:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.footer-links a {
  display: block;
  color: var(--gray-600);
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-subscribe p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-subscribe .form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-subscribe input {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
}

.footer-subscribe input:focus {
  border-color: var(--green);
}

.footer-subscribe .btn {
  width: 100%;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero-content {
    gap: 40px
  }

  .hero-mini-card {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  :root {
    --section-padding: 48px 0
  }

  .container {
    padding: 0 16px
  }

  .navbar-nav,
  .navbar-actions {
    display: none
  }

  .navbar-toggle {
    display: flex
  }

  .hero-content {
    grid-template-columns: 1fr
  }

  .hero-visual {
    display: none
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .steps-grid {
    grid-template-columns: 1fr
  }

  .steps-grid::before {
    display: none
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .terms-grid-layout {
    grid-template-columns: 1fr
  }

  .terms-nav {
    position: static;
    max-height: none
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem
  }

  .whatsapp-tooltip {
    display: none
  }

  .page-hero {
    padding: 120px 0 60px
  }
}

@media(max-width:480px) {
  .stat-number {
    font-size: 1.75rem
  }
}
/* COPY TRADING SPECIFIC */
.trader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.trader-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}

.trader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.trader-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.trader-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-100);
}

.trader-info h4 {
  margin-bottom: 4px;
  color: var(--gray-900);
}

.trader-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.risk-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.risk-low { background: #eefdf3; color: #10b981; }
.risk-med { background: #fffbeb; color: #f59e0b; }

.trader-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-50);
}

.stat-group h5 {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-value.positive { color: #10b981; }

.win-rate-container {
  margin-bottom: 24px;
}

.win-rate-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-track {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
}

.security-dark-section {
  background: #0f172a;
  color: #fff;
  border-radius: 24px;
  padding: 60px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.security-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .security-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.security-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.security-content p {
  color: var(--gray-400);
  margin-bottom: 40px;
  line-height: 1.7;
}

.security-features {
  display: flex;
  gap: 32px;
}

.sec-feat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-feat .icon {
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
}

.disclaimer-box h4 {
  color: #fff;
  margin-bottom: 16px;
}

.disclaimer-box p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* CUSTOM SELECT DROPDOWN */
.custom-select {
  position: relative;
  width: 100%;
  font-family: var(--font-body);
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.custom-select-trigger:hover {
  border-color: var(--gray-300);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(6, 201, 0, 0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-value[data-placeholder="true"] {
  color: var(--gray-300);
}

.custom-select-arrow {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--green);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border: 2px solid var(--green);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-options li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-options li:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.custom-select-options li.selected {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
}

.custom-select-options li svg {
  flex-shrink: 0;
  color: var(--gray-400);
}

.custom-select-options li:hover svg,
.custom-select-options li.selected svg {
  color: var(--green);
}

.custom-select-options::-webkit-scrollbar {
  width: 6px;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 3px;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   Breakpoints: 1024px | 768px | 480px | 360px
   ============================================================ */

/* ── Responsive utility: 2-col grid that stacks on mobile ── */
.resp-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.resp-2col-wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── 1024px — Tablets landscape ─────────────────────────── */
@media(max-width:1024px) {
  .resp-2col,
  .resp-2col-wide {
    gap: 40px;
  }
  .hero-content {
    gap: 40px;
  }
  .security-dark-section {
    padding: 48px;
  }
  .footer-modern-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ── 768px — Tablets portrait & large phones ─────────────── */
@media(max-width:768px) {
  /* Layout resets */
  .resp-2col,
  .resp-2col-wide {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Page hero — reduce massive padding */
  .page-hero {
    padding: 80px 0 40px !important;
  }
  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* Section spacing */
  .section {
    padding: 48px 0;
  }

  /* Hero blob — prevent overflow */
  .hero::before {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
  }

  /* Security dark section */
  .security-dark-section {
    padding: 32px 24px;
    border-radius: 16px;
    margin-top: 40px;
  }
  .security-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .security-features {
    flex-direction: column;
    gap: 16px;
  }

  /* Footer modern */
  .footer-modern-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Navbar logo size */
  .navbar-logo img,
  .navbar-logo svg {
    height: 32px;
  }

  /* Card padding reduction */
  .card {
    padding: 24px 20px;
  }

  /* Section headings */
  h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  /* Gap reduction for large inline gaps */
  [style*="gap:64px"] { gap: 32px !important; }
  [style*="gap: 64px"] { gap: 32px !important; }
  [style*="gap:80px"] { gap: 40px !important; }
  [style*="gap: 80px"] { gap: 40px !important; }

  /* Margin reductions */
  [style*="margin-bottom:80px"] { margin-bottom: 48px !important; }
  [style*="margin-bottom: 80px"] { margin-bottom: 48px !important; }
  [style*="margin-top:80px"] { margin-top: 48px !important; }
  [style*="margin-top: 80px"] { margin-top: 48px !important; }

  /* Inline multi-col grids — force single column */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1.5fr 1fr"],
  [style*="grid-template-columns: 1.5fr 1fr"],
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"],
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Inline repeat() grids — force single column */
  [style*="grid-template-columns:repeat("],
  [style*="grid-template-columns: repeat("] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }


  /* iframes — prevent horizontal scroll */
  iframe {
    max-width: 100%;
  }

  /* Tables — horizontal scroll */
  .table-wrap,
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── 480px — Small phones (iPhone SE, Galaxy A) ──────────── */
@media(max-width:480px) {
  :root {
    --section-padding: 40px 0;
  }

  .container {
    padding: 0 14px;
  }

  /* Page hero */
  .page-hero {
    padding: 70px 0 32px !important;
  }
  .page-hero h1 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .page-hero p {
    font-size: .9rem;
  }

  /* Main hero */
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem) !important;
  }
  .hero-subtitle {
    font-size: .95rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .stat-number {
    font-size: 1.6rem;
  }

  /* Cards */
  .card {
    padding: 20px 16px;
  }
  .card-icon {
    width: 48px;
    height: 48px;
  }

  /* Buttons */
  .btn-lg {
    padding: 14px 24px;
    font-size: .9rem;
  }

  /* Steps */
  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  /* Section labels */
  .section-label {
    font-size: .7rem;
  }

  /* Section headings */
  h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  /* Footer */
  .footer-modern-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Inline padding reduction */
  [style*="padding:60px"] { padding: 28px 20px !important; }
  [style*="padding: 60px"] { padding: 28px 20px !important; }

  /* Services hero background numbers — smaller */
  .svc-bg-num {
    font-size: 80px !important;
  }

  /* Service pills — stack */
  .svc-pills {
    flex-direction: column;
    align-items: stretch;
  }
  .svc-pill {
    width: auto;
    min-width: unset;
  }
}

/* ── 360px — Very small phones ───────────────────────────── */
@media(max-width:360px) {
  .container {
    padding: 0 12px;
  }
  .page-hero {
    padding: 64px 0 28px !important;
  }
  h2 {
    font-size: 1.2rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: .82rem;
  }
  .card {
    padding: 16px 14px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-number {
    font-size: 1.4rem;
  }
  .navbar-brand span {
    font-size: .95rem;
  }
}

/* ── Terms sidebar grid ──────────────────────────────────── */
.terms-grid-layout {
  grid-template-columns: 260px 1fr !important;
}
@media(max-width:768px) {
  .terms-grid-layout {
    grid-template-columns: 1fr !important;
  }
  .terms-nav {
    position: static !important;
    max-height: none !important;
  }
}

/* ── Notice banner — fit small screens ───────────────────── */
.notice-banner {
  font-size: clamp(.7rem, 2.5vw, .85rem);
  padding: 8px 16px;
  text-align: center;
}
@media(max-width:480px) {
  .notice-banner { padding: 6px 12px; }
}

/* ============================================================
   HERO, HEADER, FOOTER — MOBILE FIXES
   ============================================================ */

/* ── Navbar ──────────────────────────────────────────────── */
@media(max-width:768px) {
  .navbar {
    padding: 12px 0;
  }
  .navbar.scrolled {
    padding: 10px 0;
  }
  /* Mobile menu: pushed below notice banner + navbar */
  .mobile-menu {
    top: 0;
  }
  /* Notice banner wraps gracefully */
  .notice-banner {
    white-space: normal;
    line-height: 1.4;
    padding: 8px 12px;
    font-size: .72rem;
  }
}

/* ── Home Hero ───────────────────────────────────────────── */
@media(max-width:768px) {
  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 48px;
    overflow: hidden; /* clip blob */
  }
  .hero::before {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -80px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-text {
    text-align: center;
  }
  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.8rem) !important;
  }
  .hero-description {
    font-size: .95rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-trusted {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width:480px) {
  .hero {
    padding-top: 76px;
    padding-bottom: 40px;
  }
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem) !important;
  }
}

/* ── Services & page heroes (dark) ──────────────────────── */
@media(max-width:768px) {
  .svc-hero {
    padding: 72px 0 48px;
    min-height: auto;
  }
  .svc-hero-headline {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
  }
  .svc-hero-content {
    max-width: 100%;
  }
  .svc-bg-num {
    opacity: .015; /* reduce distraction on small screens */
  }
  .svc-pills {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .svc-pill {
    width: auto;
    min-width: unset;
  }
}

/* ── CTA section ─────────────────────────────────────────── */
@media(max-width:768px) {
  .cta-gradient {
    padding: 40px 24px;
    border-radius: 20px;
    margin-bottom: -80px;
  }
  .cta-gradient h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .cta-gradient p {
    font-size: .92rem;
    margin-bottom: 28px;
  }
  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ── Footer ──────────────────────────────────────────────── */
@media(max-width:1024px) {
  .footer-modern {
    padding-top: 140px;
  }
  .footer-modern-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media(max-width:768px) {
  .footer-modern {
    padding: 110px 0 32px;
  }
  .footer-modern-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .footer-col:first-child {
    grid-column: 1 / -1; /* brand col spans full width */
  }
  .footer-col:first-child p {
    max-width: 100%;
  }
  .footer-copyright {
    font-size: .8rem;
    padding-bottom: 16px;
  }
}

@media(max-width:480px) {
  .footer-modern {
    padding: 90px 0 24px;
  }
  .footer-modern-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-col:first-child {
    grid-column: auto;
  }
  .footer-subscribe .form-group {
    flex-direction: column;
  }
  .cta-gradient {
    padding: 32px 16px;
    margin-bottom: -60px;
  }
}
