@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;700&family=Noto+Sans+Sinhala:wght@300;400;600;700&display=swap');

:root {
  --primary: #0A192F;
  --secondary: #D4AF37;
  --accent: #64FFDA;
  --bg-dark: #020C1B;
  --text-primary: #CCD6F6;
  --text-secondary: #8892B0;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

body {
  font-family: 'Inter', 'Noto Sans Sinhala', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Noto Sans Sinhala', sans-serif;
  color: var(--white);
  line-height: 1.1;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 10%;
  background: transparent;
}

nav.scrolled {
  background: rgba(2, 12, 27, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  height: 80px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  margin-left: 12px;
}

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

.nav-links {
  display: flex;
  margin-left: auto;
  gap: 3.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 12px 30px !important;
  background: rgba(212, 175, 55, 0.1) !important;
  border: 1px solid var(--secondary) !important;
  border-radius: 4px !important;
  color: var(--secondary) !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  transition: all 0.3s ease !important;
}

.btn-nav:hover {
  background: var(--secondary) !important;
  color: var(--primary) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, rgba(2, 12, 27, 0.98), rgba(2, 12, 27, 0.3)), url('hero-bg-premium.png');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
}

.hero-tagline {
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 700;
  margin-bottom: 30px;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 18px 32px;
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(212, 175, 55, 0.3);
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-primary:hover {
  background: #C5A028;
  color: var(--primary);
}

/* Sections */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.section-header h2 {
  font-size: clamp(26px, 5vw, 32px);
  margin-right: 20px;
}

.section-header::after {
  content: '';
  height: 1px;
  flex-grow: 1;
  background: var(--glass-border);
}

/* Investment Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.plan-card {
  padding: 35px 25px;
  border-radius: 12px;
  background: #0D1629;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plan-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--white);
}

.plan-roi {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
}

.plan-roi-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  display: block;
}

.plan-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.p-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.p-stat span {
  display: block;
  font-size: 0.6rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.p-stat strong {
  font-size: 0.95rem;
  color: var(--white);
}

.plan-features {
  list-style: none;
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.plan-features li i {
  margin-right: 12px;
  font-size: 0.9rem;
}

.plan-features li i.fa-check { color: #64ffda; }
.plan-features li i.fa-times { color: #ff5555; opacity: 0.5; }

.btn-bronze { background: #E67E22; color: white; width: 100%; padding: 18px; }
.btn-gold { 
    background: #D4AF37; 
    color: var(--primary); 
    padding: 18px 32px; 
    font-weight: 700; 
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #FFD700;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.tier-featured {
  border-color: var(--secondary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.promo-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Director Board */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.member-card {
  background: #020C1B;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--glass-border);
}

.member-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary);
}

.member-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--primary);
  display: block;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: var(--transition);
}

.member-card:hover .member-img {
  filter: grayscale(0%) brightness(1);
}

.member-info {
  padding: 30px;
}

.member-role {
  color: var(--secondary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.member-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.member-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.linkedin-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.linkedin-link i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.linkedin-link:hover {
  color: var(--secondary);
}

/* Account Management Section */
.service-preview {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.service-image {
  width: 100%;
  height: 400px;
  background: var(--primary);
  border-radius: 12px;
  position: relative;
}

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--secondary), transparent);
  opacity: 0.1;
  border-radius: 12px;
}

/* Bot Widget */
#bot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.bot-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.bot-trigger:hover {
  transform: rotate(5deg) scale(1.1);
}

/* Footer */
footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  display: block;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.socials a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: var(--transition);
}

.socials a:hover {
  color: var(--secondary);
}

/* Comparison Table */
.comparison-container {
  overflow-x: auto;
  margin-top: 40px;
  background: #020C1B;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-secondary);
  min-width: 600px;
}

.comparison-table th {
  padding: 15px 10px;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #020C1B;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 12px 10px;
  text-align: center;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--white);
  font-weight: 500;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.comparison-table i.fa-check { color: #64ffda; font-size: 1rem; }
.comparison-table i.fa-times { color: #ff5555; opacity: 0.2; font-size: 0.8rem; }
/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 100px auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding-bottom: 30px;
}

.faq-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.text-bronze { color: #E67E22; font-weight: 700; }
.text-gold { color: #D4AF37; font-weight: 700; }
.text-vip { color: #8E44AD; font-weight: 700; }

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .service-preview {
    grid-template-columns: 1fr;
  }
  .comparison-table { font-size: 0.75rem; }
  .comparison-table th, .comparison-table td { padding: 15px 10px; }
  .comparison-container { padding: 5px; }
}

/* Footer & Legal */
footer {
  background: #010814;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.legal-section h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  opacity: 0.9;
}

.legal-section span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-weight: 400;
  margin-left: 8px;
}

.legal-section p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 550px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
  transition: var(--transition);
}

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

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
/* Legal Modal */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.legal-modal-container {
  background: #020C1B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.legal-modal-header {
  padding: 25px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-modal-header h3 {
  font-size: 1.5rem;
  color: var(--secondary);
}

.legal-modal-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.legal-modal-close:hover {
  color: var(--white);
}

.legal-modal-body {
  padding: 40px;
  overflow-y: auto;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-modal-body h4 {
  color: var(--white);
  margin: 30px 0 15px;
  font-size: 1.1rem;
}

.legal-modal-body h4:first-child { margin-top: 0; }

.legal-modal-body p { margin-bottom: 15px; }

.legal-modal-body ul { margin-bottom: 20px; padding-left: 20px; }
.legal-modal-body li { margin-bottom: 8px; }

/* Scrollbar for legal modal */
.legal-modal-body::-webkit-scrollbar { width: 6px; }
.legal-modal-body::-webkit-scrollbar-track { background: transparent; }
.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: 10px;
}

/* --- PREMIUM ENHANCEMENTS --- */

/* Cursor Glow */
.cursor-glow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Market Ticker */
.market-ticker {
    background: #020c1b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    font-size: 0.75rem;
    font-weight: 700;
}

nav, nav.scrolled {
    top: 40px !important;
}

/* Ensure padding on body so content isn't hidden behind fixed elements */
body {
    padding-top: 40px;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: fit-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding-right: 50px;
    color: var(--white);
    gap: 8px;
}

.ticker-item span.up { color: #00ff88; }
.ticker-item span.down { color: #ff3366; }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    opacity: 0.7;
    filter: grayscale(1);
    transition: var(--transition);
}

.trust-badges:hover {
    opacity: 0.8;
    filter: grayscale(0);
}

.trust-badges img {
    height: 25px;
}

/* Animations */
@keyframes drawChart {
    from { stroke-dashoffset: 600; }
    to { stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE — all public pages
   ═══════════════════════════════════════════════════ */

/* ── Mobile Nav Hamburger ── */
.nav-hamburger {
    display: none;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1100;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 9px 10px;
    background: rgba(2,12,27,0.9);
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav backdrop */
.nav-mob-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 998;
}
.nav-mob-backdrop.open { display: block; }

/* Mobile nav drawer */
.nav-links.mob-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(280px, 82vw);
    height: 100vh;
    background: rgba(2,12,27,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.08);
    padding: 80px 28px 30px;
    gap: 0;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    overflow-y: auto;
}
.nav-links.mob-open a {
    font-size: 0.95rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    letter-spacing: 1px;
    width: 100%;
}
.nav-links.mob-open .btn-nav {
    margin-top: 20px;
    text-align: center;
    border-radius: 8px !important;
    display: block;
    padding: 14px !important;
}

@media (max-width: 768px) {
    /* Nav */
    nav {
        padding: 0 5%;
        height: 70px;
        max-width: 100vw;
        overflow: visible;
    }
    nav.scrolled { height: 60px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero { height: auto; min-height: 100vh; padding: 100px 5% 60px; }
    .hero-content { max-width: 100%; }
    .hero h1 { font-size: clamp(28px, 7vw, 48px); }
    .hero p { font-size: 1rem; }

    /* Sections */
    section { padding: 60px 0; }
    .container { width: 92%; }

    /* Plans grid */
    .plans-grid { grid-template-columns: 1fr; }

    /* Board */
    .board-grid { grid-template-columns: 1fr; }

    /* Service preview */
    .service-preview { grid-template-columns: 1fr; gap: 30px; }
    .service-image { height: 250px; }

    /* Section header */
    .section-header h2 { font-size: clamp(22px, 5vw, 28px); }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 15px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 15px; }

    /* FAQ */
    .faq-section { margin: 60px auto; padding: 0 5%; }
    .faq-header { padding: 20px; }
    .faq-header h3 { font-size: 0.95rem; }

    /* Trust badges */
    .trust-badges { flex-wrap: wrap; gap: 15px; }

    /* Bot widget */
    #bot-widget { bottom: 20px; right: 20px; }
    .bot-trigger { width: 50px; height: 50px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(24px, 8vw, 36px); }
    .hero p { font-size: 0.9rem; }
    .plan-card { padding: 25px 18px; }
    .member-info { padding: 20px; }
    .plan-roi { font-size: 2.2rem; }
    nav { padding: 0 4%; }
}
