/* =========================================================
   ZYPHRO FX — Premium Proprietary Trading Firm
   Stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --blue: #1565ff;
  --blue-light: #4f8bff;
  --sky: #dceeff;
  --text: #0f172a;
  --light-section: #f8fafc;
  --border: #e5e7eb;
  --white: #ffffff;
  --max-width: 1320px;
  --section-space: 120px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(21, 101, 255, 0.12);
  --gradient: linear-gradient(135deg, #1565ff 0%, #4f8bff 100%);
  --gradient-soft: linear-gradient(135deg, #dceeff 0%, #ffffff 100%);
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; color: var(--text); line-height: 1.2; }
p { line-height: 1.65; color: #475569; }
a { text-decoration: none; transition: color 0.25s ease; }
img { max-width: 100%; }
section { scroll-margin-top: 80px; }

/* ---------- Layout helpers ---------- */
.section { padding: var(--section-space) 0; }
.section-light { background: var(--light-section); }
.section-container { max-width: var(--max-width); }
.section-head { max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); font-weight: 800; margin: 0 0 16px; }
.section-sub { font-size: 1.05rem; color: #64748b; margin: 0; }
.section-lead { font-size: 1.02rem; color: #475569; margin-bottom: 16px; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Glassmorphism ---------- */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-head); font-weight: 600; border-radius: 12px; transition: all 0.3s ease; }
.btn-primary-gradient {
  background: var(--gradient);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(21, 101, 255, 0.32);
}
.btn-primary-gradient:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(21, 101, 255, 0.42); color: #fff; }
.btn-outline-soft {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline-soft:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); transform: translateY(-2px); }
.btn-login { color: var(--text); background: transparent; border: 1.5px solid var(--border); padding: 9px 20px; }
.btn-login:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); }
.btn-ripple { position: relative; overflow: hidden; }

/* ---------- Loader ---------- */
.loader-wrap {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wrap.hidden { opacity: 0; visibility: hidden; }
.loader-core { position: relative; display: flex; align-items: center; justify-content: center; width: 120px; height: 120px; }
.loader-ring {
  position: absolute; inset: 0;
  border: 4px solid var(--sky);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.loader-brand {
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  color: var(--blue); letter-spacing: 0.1em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; transition: all 0.35s ease; }
.site-header.scrolled .site-nav { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(14px); box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08); }
.site-nav { transition: all 0.35s ease; padding: 14px 0; }
.nav-container { max-width: var(--max-width); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--text); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--gradient); color: #fff; font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(21, 101, 255, 0.35);
}
.brand-accent { color: var(--blue); }
.nav-list { gap: 4px; }
.nav-link {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: #334155; padding: 8px 16px !important; border-radius: 10px;
  position: relative; transition: all 0.25s ease;
}
.nav-link:hover { color: var(--blue); background: var(--sky); }
.nav-link.active { color: var(--blue); background: var(--sky); }
.nav-link.active::after {
  content: ""; position: absolute; bottom: 2px; left: 16px; right: 16px; height: 2px;
  background: var(--gradient); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 22px; }

/* Toggler */
.custom-toggler { border: none; padding: 8px; background: transparent; }
.custom-toggler:focus { box-shadow: none; }
.toggler-bar { display: block; width: 26px; height: 3px; background: var(--text); border-radius: 3px; margin: 5px 0; transition: all 0.3s ease; }
.custom-toggler.open .toggler-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.custom-toggler.open .toggler-bar:nth-child(2) { opacity: 0; }
.custom-toggler.open .toggler-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 120px; overflow: hidden; }
.hero-container { max-width: var(--max-width); position: relative; z-index: 2; }
.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.shape-1 { width: 480px; height: 480px; background: var(--sky); top: -120px; right: -80px; }
.shape-2 { width: 360px; height: 360px; background: rgba(79, 139, 255, 0.18); bottom: -100px; left: -60px; }
.shape-3 { width: 220px; height: 220px; background: rgba(21, 101, 255, 0.1); top: 40%; left: 45%; }
.shape-4 { display: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--blue); background: var(--sky);
  padding: 8px 16px; border-radius: 50px; margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.3rem, 4.8vw, 3.6rem); font-weight: 800; line-height: 1.1; margin-bottom: 22px; }
.hero-desc { font-size: 1.1rem; color: #475569; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars .avatar { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; }
.trust-avatars .avatar:first-child { margin-left: 0; }
.trust-avatars .a1 { background: linear-gradient(135deg, #1565ff, #4f8bff); }
.trust-avatars .a2 { background: linear-gradient(135deg, #0ea5e9, #22d3ee); }
.trust-avatars .a3 { background: linear-gradient(135deg, #10b981, #34d399); }
.trust-avatars .a4 { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.trust-text { font-size: 0.92rem; color: #475569; }
.trust-text strong { color: var(--text); }

/* Hero Visual */
.hero-visual { position: relative; min-height: 460px; }
.dash-card { padding: 22px; position: relative; z-index: 2; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-pair { display: flex; gap: 6px; }
.pair-flag {
  font-family: var(--font-head); font-weight: 600; font-size: 0.7rem;
  background: var(--sky); color: var(--blue); padding: 4px 8px; border-radius: 6px;
}
.dash-price { display: flex; align-items: center; gap: 10px; }
.price-val { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }
.price-up { color: #10b981; font-weight: 600; font-size: 0.85rem; }

.candle-chart { height: 180px; display: flex; align-items: flex-end; gap: 6px; padding: 10px 4px; position: relative; }
.candle {
  flex: 1; position: relative; border-radius: 3px; min-height: 6px;
  animation: candleGrow 1s ease forwards;
  transform-origin: bottom;
}
.candle.up { background: linear-gradient(180deg, #4f8bff, #1565ff); box-shadow: 0 0 12px rgba(21, 101, 255, 0.25); }
.candle.down { background: linear-gradient(180deg, #fda4af, #f43f5e); }
.candle::before {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 2px; background: inherit; border-radius: 2px;
}
.candle.up::before { bottom: 100%; height: var(--wick, 14px); }
.candle.down::before { top: 100%; height: var(--wick, 14px); }
@keyframes candleGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.dash-foot { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.foot-stat { display: flex; flex-direction: column; }
.foot-stat span { font-size: 0.75rem; color: #94a3b8; }
.foot-stat strong { font-family: var(--font-head); font-size: 0.95rem; }

.float-card { position: absolute; padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 3; animation: floatY 4s ease-in-out infinite; }
.float-profit { top: -24px; right: -10px; }
.float-market { bottom: -20px; left: -20px; animation-delay: 1.5s; }
.fc-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--gradient); color: #fff; font-size: 1.1rem; }
.fc-icon.alt { background: linear-gradient(135deg, #10b981, #34d399); }
.fc-body { display: flex; flex-direction: column; }
.fc-body span { font-size: 0.72rem; color: #94a3b8; }
.fc-body strong { font-family: var(--font-head); font-size: 1.05rem; }
.fc-spark { width: 60px; height: 30px; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.float-coin {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient); color: #fff; font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(21, 101, 255, 0.35); z-index: 1;
  animation: floatY 5s ease-in-out infinite;
}
.coin-1 { top: 30%; right: -30px; }
.coin-2 { bottom: 18%; left: -24px; animation-delay: 2s; background: linear-gradient(135deg, #0ea5e9, #22d3ee); }

/* ---------- About ---------- */
.about-section { padding: var(--section-space) 0; }
.about-visual { position: relative; }
.about-illustration { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.ill-ring { position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 2px dashed var(--sky); animation: spin 30s linear infinite; }
.ill-core { width: 300px; height: 300px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; z-index: 2; }
.ill-chart { display: flex; align-items: flex-end; gap: 8px; height: 140px; }
.ill-chart .bar { flex: 1; background: var(--gradient); border-radius: 6px 6px 0 0; animation: barGrow 1.2s ease forwards; transform-origin: bottom; }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.ill-line { position: absolute; top: 30%; left: 20px; right: 20px; height: 3px; background: linear-gradient(90deg, transparent, var(--blue), transparent); opacity: 0.5; }
.ill-badge { position: absolute; padding: 10px 16px; display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--blue); z-index: 3; }
.ill-badge i { font-size: 1.1rem; }
.ill-badge { top: 10%; left: 0; }
.ill-badge.alt { top: auto; bottom: 12%; right: 0; left: auto; color: #10b981; }

.mini-feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; height: 100%; transition: all 0.3s ease; }
.mini-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sky); }
.mf-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--sky); color: var(--blue); font-size: 1.2rem; margin-bottom: 12px; }
.mini-feature h4 { font-size: 1rem; margin-bottom: 6px; }
.mini-feature p { font-size: 0.85rem; margin: 0; }

/* ---------- How It Works ---------- */
.steps-wrap { position: relative; }
.steps-line { position: absolute; top: 80px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--sky), var(--blue-light), var(--sky)); z-index: 0; }
.step-card {
  position: relative; z-index: 1; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center; height: 100%;
  transition: all 0.35s ease;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.step-card.highlight { background: var(--gradient); color: #fff; border: none; }
.step-card.highlight h3, .step-card.highlight p { color: #fff; }
.step-card.highlight .step-num { background: rgba(255, 255, 255, 0.2); color: #fff; }
.step-card.highlight .step-icon { background: rgba(255, 255, 255, 0.18); color: #fff; }
.step-num { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--blue); background: var(--sky); padding: 4px 12px; border-radius: 50px; }
.step-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--sky); color: var(--blue); font-size: 1.6rem; margin: 18px 0; transition: all 0.3s ease; }
.step-card:hover .step-icon { transform: scale(1.08); }
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; margin: 0; }

/* ---------- Funding Plans ---------- */
.plan-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; height: 100%; position: relative;
  transition: all 0.35s ease;
}
.plan-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.plan-card.popular { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.plan-card.popular:hover { transform: scale(1.03) translateY(-10px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 0.78rem; padding: 6px 16px; border-radius: 50px; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 16px rgba(21, 101, 255, 0.35);
}
.plan-head { text-align: center; margin-bottom: 24px; }
.plan-name { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.plan-price { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--text); margin: 8px 0; }
.plan-price .cur { font-size: 1.4rem; vertical-align: super; color: var(--blue); }
.plan-price .sub { font-size: 0.9rem; font-weight: 500; color: #94a3b8; }
.plan-tag { font-size: 0.82rem; color: #64748b; }
.plan-list { list-style: none; padding: 0; margin: 0 0 28px; }
.plan-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 0.92rem; }
.plan-list li i { color: var(--blue); font-size: 1rem; }
.plan-list li span { color: #64748b; flex: 1; }
.plan-list li strong { font-family: var(--font-head); color: var(--text); }
.btn-plan { width: 100%; background: #fff; color: var(--blue); border: 1.5px solid var(--blue); padding: 12px; }
.btn-plan:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-2px); }
.btn-plan-cta { width: 100%; padding: 12px; }

/* ---------- Benefits ---------- */
.benefit-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; height: 100%; transition: all 0.35s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.bn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gradient-soft); color: var(--blue); font-size: 1.4rem; margin-bottom: 18px;
  transition: all 0.3s ease;
}
.benefit-card:hover .bn-icon { background: var(--gradient); color: #fff; transform: rotate(-6deg) scale(1.05); }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.88rem; margin: 0; }

/* ---------- Why Choose Us ---------- */
.why-visual { position: relative; }
.why-image { padding: 30px; position: relative; overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; }
.why-chart { display: flex; align-items: flex-end; gap: 10px; height: 200px; width: 100%; position: relative; z-index: 2; }
.why-bar { flex: 1; background: var(--gradient); border-radius: 8px 8px 0 0; animation: barGrow 1.2s ease forwards; transform-origin: bottom; }
.why-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--sky); filter: blur(50px); top: -60px; right: -60px; z-index: 1; }
.why-float { position: absolute; top: 20px; right: 20px; padding: 12px 18px; display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--blue); z-index: 3; }
.why-float i { color: #f59e0b; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.stat-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; text-align: center; transition: all 0.3s ease; }
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-light); }
.stat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.85rem; color: #64748b; }

/* ---------- Instruments ---------- */
.instrument-card {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 32px 26px; height: 100%; overflow: hidden;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--gradient);
  background-origin: border-box; background-clip: padding-box, border-box;
  transition: all 0.35s ease;
}
.instrument-card::before {
  content: ""; position: absolute; inset: 0; background: var(--gradient); opacity: 0; transition: opacity 0.35s ease; z-index: 0;
}
.instrument-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.instrument-card:hover::before { opacity: 0.04; }
.instrument-card > * { position: relative; z-index: 1; }
.ins-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--gradient-soft); color: var(--blue); font-size: 1.5rem; margin-bottom: 18px;
  transition: all 0.3s ease;
}
.instrument-card:hover .ins-icon { background: var(--gradient); color: #fff; transform: scale(1.08); }
.instrument-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.instrument-card p { font-size: 0.9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-slider { position: relative; max-width: 100%; overflow: hidden; }
.t-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.t-slide { min-width: 100%; padding: 8px; }
.t-card { padding: 36px 32px; height: 100%; }
.t-stars { color: #f59e0b; margin-bottom: 16px; font-size: 1rem; display: flex; gap: 2px; }
.t-review { font-size: 1.05rem; color: var(--text); font-style: italic; margin-bottom: 24px; }
.t-foot { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.t-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.t-meta { display: flex; flex-direction: column; flex: 1; }
.t-meta strong { font-family: var(--font-head); font-size: 0.98rem; }
.t-meta span { font-size: 0.82rem; color: #94a3b8; }
.t-profit { text-align: right; }
.t-profit span { display: block; font-size: 0.72rem; color: #94a3b8; }
.t-profit strong { font-family: var(--font-head); color: #10b981; font-size: 1.05rem; }
.t-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.t-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.t-btn:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: scale(1.08); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: all 0.3s ease; }
.t-dot.active { background: var(--gradient); width: 28px; border-radius: 50px; }

/* ---------- FAQ ---------- */
.custom-accordion .acc-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: all 0.3s ease; }
.custom-accordion .acc-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }
.custom-accordion .accordion-button { font-family: var(--font-head); font-weight: 600; font-size: 1rem; padding: 20px 24px; background: #fff; color: var(--text); }
.custom-accordion .accordion-button:not(.collapsed) { background: var(--sky); color: var(--blue); box-shadow: none; }
.custom-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.custom-accordion .accordion-button::after { background-image: none; content: "\F282"; font-family: "bootstrap-icons"; font-size: 1.2rem; color: var(--blue); }
.custom-accordion .accordion-body { padding: 0 24px 22px; color: #475569; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-info { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 30px; height: 100%; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.ci-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.ci-label { display: block; font-size: 0.78rem; color: #94a3b8; margin-bottom: 2px; }
.ci-item a, .ci-item span { color: var(--text); font-weight: 500; }
.ci-item a:hover { color: var(--blue); }
.contact-socials { display: flex; gap: 10px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border); }
.contact-socials a { width: 40px; height: 40px; border-radius: 10px; background: var(--light-section); color: var(--text); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s ease; }
.contact-socials a:hover { background: var(--gradient); color: #fff; transform: translateY(-3px); }

.contact-form { padding: 36px 30px; }
.contact-form .form-label { font-family: var(--font-head); font-weight: 500; font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.contact-form .form-control, .contact-form .form-select {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 0.95rem;
  transition: all 0.25s ease;
}
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21, 101, 255, 0.12); }
.form-feedback { font-size: 0.9rem; min-height: 20px; }
.form-feedback.success { color: #10b981; }
.form-feedback.error { color: #ef4444; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; filter: grayscale(0.2) contrast(1.05); }

/* ---------- CTA ---------- */
.cta-section { position: relative; padding: 100px 0; background: var(--gradient); overflow: hidden; text-align: center; }
.cta-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); top: -200px; right: -100px; filter: blur(40px); }
.cta-section .section-container { position: relative; z-index: 2; }
.cta-eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: rgba(255, 255, 255, 0.18); padding: 6px 14px; border-radius: 50px; margin-bottom: 18px; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 1.08rem; color: rgba(255, 255, 255, 0.9); max-width: 620px; margin: 0 auto 32px; }
.btn-light-cta { background: #fff; color: var(--blue); border: none; padding: 14px 36px; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }
.btn-light-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28); color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer { background: #0b1220; color: #cbd5e1; padding: 80px 0 30px; }
.footer-brand { color: #fff; margin-bottom: 18px; }
.footer-desc { font-size: 0.9rem; color: #94a3b8; margin-bottom: 22px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, 0.06); color: #cbd5e1; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s ease; }
.footer-socials a:hover { background: var(--gradient); color: #fff; transform: translateY(-3px); }
.footer-title { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #fff; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; font-size: 0.9rem; }
.footer-links a:hover { color: var(--blue-light); padding-left: 4px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: #94a3b8; }
.footer-contact i { color: var(--blue-light); }
.footer-contact a { color: #94a3b8; }
.footer-contact a:hover { color: var(--blue-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.fb-left { font-size: 0.86rem; color: #94a3b8; }
.fb-right { display: flex; gap: 22px; }
.fb-right a { color: #94a3b8; font-size: 0.86rem; }
.fb-right a:hover { color: var(--blue-light); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%; border: none;
  background: var(--gradient); color: #fff; font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(21, 101, 255, 0.4);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.35s ease; cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  :root { --section-space: 80px; }
  .nav-collapse {
    position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; padding: 20px; box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border-top: 1px solid var(--border);
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-list { flex-direction: column; gap: 4px; margin: 0 0 20px; }
  .nav-link { padding: 12px 16px; }
  .nav-link.active::after { display: none; }
  .nav-cta { justify-content: stretch; }
  .nav-cta .btn { flex: 1; }
  .hero { padding: 40px 0 80px; }
  .hero-visual { min-height: 380px; margin-top: 20px; }
  .steps-line { display: none; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-10px); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
  :root { --section-space: 64px; }
  .hero-title { font-size: 2rem; }
  .hero-actions .btn { flex: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-num { font-size: 1.7rem; }
  .float-profit { right: 0; }
  .float-market { left: 0; }
  .coin-1 { right: 0; }
  .coin-2 { left: 0; }
  .t-foot { flex-wrap: wrap; }
  .t-profit { width: 100%; text-align: left; margin-top: 8px; }
  .contact-form, .contact-info { padding: 26px 20px; }
  .fb-right { flex-wrap: wrap; gap: 14px; justify-content: center; }
}

@media (max-width: 575px) {
  .hero-visual { min-height: 340px; }
  .dash-card { padding: 16px; }
  .float-card { padding: 10px 12px; }
  .fc-body strong { font-size: 0.92rem; }
  .plan-price { font-size: 2.2rem; }
}

/* ---------- AOS fallback (no-JS graceful) ---------- */
.no-aos [data-aos] { opacity: 1; transform: none; }
