
/* --- variables --- */
:root {
  --banner-height: 36px;
  --bg-dark: #020617;
  --bg-deep: #090d16;
  --bg-card: rgba(15, 23, 42, 0.45);
  --gold-light: #f5e3b5;
  --gold: #d4af37;
  --gold-gradient: linear-gradient(135deg, #f5e3b5 0%, #d4af37 50%, #aa7c11 100%);
  --gold-dark: #aa7c11;
  --teal: #0ea5e9;
  --teal-dark: #0d9488;
  --teal-glow: rgba(14, 165, 233, 0.15);
  --text-white: #f8fafc;
  --text-gray: #94a3b8;
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-teal: rgba(14, 165, 233, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-content: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
}

/* --- resets --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-content);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- custom scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* --- layout containers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

section[id] {
  scroll-margin-top: calc(80px + var(--banner-height));
}

/* --- glowing background radial shapes --- */
.glow-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.glow-hero {
  top: 10%;
  right: -10%;
}

.glow-strat {
  bottom: 10%;
  left: -15%;
}

.glow-cta {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
}

/* --- typographies --- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* --- glassmorphism card template --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px -15px rgba(14, 165, 233, 0.2);
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card * {
  position: relative;
  z-index: 2;
}

/* --- buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0f19;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 15px var(--teal-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
}

/* --- promo ticker banner --- */
.promo-ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--banner-height);
  background: rgba(9, 13, 22, 0.95);
  border-bottom: 1px solid var(--border-gold);
  z-index: 1001;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.promo-ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.promo-ticker-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 4rem;
  padding-right: 4rem;
}

.promo-ticker-content span {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- header / navigation --- */
body > header {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: var(--font-title);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu-cta {
  display: none;
}

.nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* --- language selector --- */
.lang-selector {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  padding: 2px;
}

.lang-btn {
  background: transparent;
  color: var(--text-gray);
  border: none;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--text-white);
}

.lang-btn.active {
  background: var(--gold-gradient);
  color: #0b0f19;
}

/* --- mobile menu toggle --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
}

/* --- hero section --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(120px + var(--banner-height));
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: var(--text-gray);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.15);
  color: var(--teal);
  font-size: 0.75rem;
  border: 1px solid var(--border-teal);
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-logo-frame {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 75%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(212, 175, 55, 0.05);
}

.hero-logo-large {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
}

/* --- stats section --- */
#stats {
  padding: 4rem 0;
  background: rgba(9, 13, 22, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-title);
  margin-bottom: 0.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* --- strategies section --- */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.strat-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strat-num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}

.strat-card h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.strat-card h3::before {
  content: '✦';
  color: var(--teal);
}

.strat-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- why choose section --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-bullets-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-bullet-card {
  display: flex;
  gap: 1.2rem;
}

.why-bullet-num-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-title);
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.why-bullet-content h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.why-bullet-content p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.why-visual-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  background: var(--bg-card);
  padding: 1rem;
}

.why-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* --- results section --- */
.results-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--text-gray);
  padding: 0.8rem 1.8rem;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--text-white);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #0b0f19;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tab-content {
  position: relative;
  min-height: 400px;
}

.tab-panel {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tab-panel.active {
  display: block;
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.results-image-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: var(--bg-card);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.5rem;
}

.results-image-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* --- advanced features section --- */
.advanced-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* --- testimonials section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.12);
}

.testimonial-quote-mark {
  font-size: 5rem;
  line-height: 0.75;
  color: var(--gold);
  font-family: Georgia, serif;
  opacity: 0.9;
  text-align: center;
  width: 100%;
  user-select: none;
}

.testimonial-text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.testimonial-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-top: 0.15rem;
}


.adv-card {
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.adv-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid var(--border-teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.adv-card h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
}

.adv-card p {
  color: var(--text-gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- faq section --- */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0.5rem;
  cursor: pointer;
  color: var(--text-white);
  font-weight: 600;
  font-family: var(--font-title);
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-trigger {
  font-size: 1.2rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-trigger {
  transform: rotate(45deg);
  color: var(--teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  color: var(--text-gray);
  font-size: 0.95rem;
  padding: 0.5rem 0.5rem 1.5rem 0.5rem;
  line-height: 1.6;
}

/* --- call to action section --- */
#cta-banner {
  padding: 10rem 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.8) 0%, rgba(2, 6, 23, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(14, 165, 233, 0.3);
}

.cta-logo {
  height: 80px;
  width: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.cta-box h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-box p {
  color: var(--text-gray);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* --- footer --- */
footer {
  background-color: #010309;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem 0;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-links h4, .footer-risk h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--gold);
}

.footer-risk p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.footer-brand-huge {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-white);
  margin-top: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  opacity: 0.95;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

/* --- animations --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* --- responsive media queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bullets {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-visual-frame {
    max-width: 600px;
    margin: 0 auto;
  }

  .advanced-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(80px + var(--banner-height));
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .header-actions {
    margin-right: 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .strategies-grid {
    grid-template-columns: 1fr;
  }

  .advanced-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-cta {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.15rem;
  }
  .logo-img {
    height: 34px;
  }
  .lang-selector {
    padding: 1px;
  }
  .lang-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
  .header-container {
    height: 70px;
  }
  .nav-menu {
    top: calc(70px + var(--banner-height));
  }
  section[id] {
    scroll-margin-top: calc(70px + var(--banner-height));
  }
}


/* ======================================================
   ANIMATED TRADING BACKGROUND
   ====================================================== */
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  25%  { transform: scale(1.06) translate(-1%, -1%); }
  50%  { transform: scale(1.1)  translate(1%, 1%); }
  75%  { transform: scale(1.06) translate(-1%, 1%); }
  100% { transform: scale(1)    translate(0, 0); }
}

.trading-bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url('assets/trading_bg.webp');
  background-size: cover;
  background-position: center;
  animation: kenBurns 30s ease-in-out infinite;
  will-change: transform;
}

/* Dark overlay so text stays readable */
.trading-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
}

/* ======================================================
   EXPANDABLE IMAGE / LIGHTBOX
   ====================================================== */
.expandable-img-wrap {
  position: relative;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expandable-img-wrap:hover {
  transform: scale(1.015);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.expand-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.expandable-img-wrap:hover .expand-hint {
  opacity: 1;
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 6, 23, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  font-size: 1.4rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(212, 175, 55, 0.35);
  transform: rotate(90deg) scale(1.1);
}

/* ======================================================
   TESTIMONIALS CAROUSEL
   ====================================================== */
.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track .testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
}

/* Carousel navigation buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.carousel-dot {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  padding: 0;
  margin: 0;
}

.carousel-dot::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: background 0.25s ease, width 0.3s ease;
}

.carousel-dot.active::after {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Responsive carousel */
@media (max-width: 1024px) {
  .carousel-track .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .carousel-track .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ======================================================
   BLOG SECTION STYLES
   ====================================================== */

/* Breadcrumbs */
.breadcrumb {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: calc(120px + var(--banner-height));
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* Blog Listing */
.blog-hero {
  padding-top: calc(140px + var(--banner-height));
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.blog-card-category {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-card-title {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-card-title {
  color: var(--gold-light);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.blog-card-link:hover {
  color: var(--gold-light);
  gap: 0.6rem;
}

/* Detailed Article View */
.blog-article {
  padding-top: 2rem;
  padding-bottom: 8rem;
}

.blog-article .container {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 3rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.article-category {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.article-header h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.article-author {
  font-size: 0.95rem;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Answer block (AEO / Snippet) */
.answer-block {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid var(--border-teal);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.6;
}

/* Article Body Content */
.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e2e8f0;
}

.article-body h2 {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 0.5rem;
}

.article-body h3 {
  font-size: 1.35rem;
  color: var(--text-white);
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
}

.article-body p {
  margin-bottom: 1.6rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
}

.article-body strong {
  color: var(--text-white);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.article-body th, .article-body td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-body th {
  background: rgba(212, 175, 55, 0.08);
  font-family: var(--font-title);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.article-body tr:last-child td {
  border-bottom: none;
}

.article-body tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Callout and disclaimer */
.risk-disclaimer {
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.15);
  border-left: 4px solid #f43f5e;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 3rem 0;
}

.risk-disclaimer h4 {
  color: #fda4af;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.risk-disclaimer p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.faq-section {
  background: rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 4rem;
}

.faq-section h2 {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

.faq-section .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
}

.faq-section .faq-item:last-child {
  border-bottom: none;
}

.faq-section h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.faq-section p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Article CTA */
.article-cta {
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 80%), var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.article-cta h3 {
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.article-cta .btn {
  margin: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .article-header h1 {
    font-size: 2.25rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
