/* ===== TradeFlare – style.css ===== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Variables ── */
:root {
  --navy:   #0b1f3a;
  --orange: #f4692a;
  --amber:  #f9a825;
  --sky:    #d6eaf8;
  --white:  #ffffff;
  --grey:   #f4f6f9;
  --text:   #1a2a3a;
  --muted:  #6b7c93;
  --radius: 12px;
  --shadow: 0 8px 40px rgba(11,31,58,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--muted); }

/* ── Helpers ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--grey  { background: var(--grey); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy p { color: rgba(255,255,255,.75); }

.tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244,105,42,.1);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.section--navy .tag { color: var(--amber); background: rgba(249,168,37,.15); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(244,105,42,.35);
}
.btn-primary:hover { background: #e05820; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,105,42,.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: #0f2a4e; transform: translateY(-2px); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__flare-icon {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(249,168,37,.5));
}
.nav__logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
}
.nav__logo-trade { color: #ffffff; }
.nav__logo-flare { color: #f4692a; }
/* Legacy fallback */
.nav__logo-text { display: none; }
.nav__logo-img  { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__cta { margin-left: 8px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__mobile a {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight: 500;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  opacity: .12;
}
/* Flare glow effect */
.hero__flare {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,105,42,.35) 0%, rgba(249,168,37,.1) 45%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
.hero__flare2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11,90,180,.2) 0%, transparent 70%);
  border-radius: 50%;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: .8; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__content { color: var(--white); }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,105,42,.2);
  border: 1px solid rgba(244,105,42,.4);
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__tag .dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
.hero__title { color: var(--white); margin-bottom: 24px; }
.hero__title em { color: var(--orange); font-style: normal; }
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero__stat {}
.hero__stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
}
.hero__stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}
.hero__visual {
  position: relative;
}
.hero__card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hero__card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: .85;
}
.hero__card-overlay {
  padding: 24px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,105,42,.9);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.hero__card-text {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}

/* ── RESULT BANNER ── */
.result-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e05820 100%);
  color: var(--white);
  padding: 28px 0;
  text-align: center;
}
.result-banner p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  font-weight: 500;
}
.result-banner strong { color: var(--white); font-weight: 700; }

/* ── PROBLEM ── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.problem__img img { width: 100%; height: 420px; object-fit: cover; }
.problem__items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.problem__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(11,31,58,.06);
  transition: var(--transition);
}
.problem__item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.problem__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  min-width: 36px;
}
.problem__item-text { font-size: .95rem; font-weight: 500; color: var(--text); line-height: 1.5; }
.problem__item-text small { color: var(--muted); font-weight: 400; display: block; margin-top: 2px; }

/* ── SOLUTION ── */
.solution__intro { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.solution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
}
.solution__card:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.solution__icon {
  width: 52px; height: 52px;
  background: rgba(244,105,42,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.solution__card h3 { color: var(--white); margin-bottom: 10px; }
.solution__card p { font-size: .9rem; }

/* ── HOW IT WORKS ── */
.how__intro { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.how__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  z-index: 0;
}
.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.how__num {
  width: 72px; height: 72px;
  background: var(--navy);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px rgba(244,105,42,.1);
}
.how__step h3 { font-size: 1rem; margin-bottom: 8px; }
.how__step p { font-size: .85rem; }

/* ── SERVICES ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.services__card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.services__card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,31,58,.18); }
.services__img { height: 200px; overflow: hidden; }
.services__img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.services__card:hover .services__img img { transform: scale(1.05); }
.services__body { padding: 28px; }
.services__body h3 { margin-bottom: 10px; }
.services__body p { font-size: .9rem; }

/* ── PRICING ── */
.pricing__wrap {
  max-width: 680px;
  margin: 0 auto;
}
.pricing__card {
  background: var(--white);
  border-radius: 24px;
  padding: 56px;
  box-shadow: 0 20px 80px rgba(11,31,58,.15);
  border: 2px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.pricing__card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,105,42,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.pricing__best {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.pricing__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.pricing__amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.pricing__period { font-size: 1.1rem; color: var(--muted); }
.pricing__sub { color: var(--muted); font-size: .9rem; margin-bottom: 40px; }
.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.pricing__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
}
.pricing__feat::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(244,105,42,.1);
  color: var(--orange);
  border-radius: 50%;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.pricing__guarantees {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid #e8ecf2;
  margin-top: 0;
}
.pricing__g {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}
.pricing__g::before { content: '🛡️'; font-size: 1rem; }

/* ── ABOUT ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about__img img { width: 100%; height: 460px; object-fit: cover; }
.about__points { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.about__point { display: flex; gap: 16px; }
.about__point-icon {
  width: 44px; height: 44px;
  background: rgba(244,105,42,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about__point h4 { font-size: 1rem; margin-bottom: 4px; }
.about__point p { font-size: .88rem; }

/* ── CTA ── */
.cta-band {
  background: linear-gradient(135deg, #0b1f3a 0%, #0f2d55 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}
.cta-band__flare {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,105,42,.2) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-band .supporting {
  margin-top: 20px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

/* ── CONTACT ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__item-icon {
  width: 48px; height: 48px;
  background: rgba(244,105,42,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact__item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact__item p, .contact__item a {
  font-size: .9rem;
  color: var(--muted);
}
.contact__item a:hover { color: var(--orange); }
.contact__form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid #e8ecf2;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 20px; }
.form__group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e6ee;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,105,42,.12);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form__success h3 { color: var(--navy); margin-bottom: 8px; }

/* ── FOOTER ── */
.footer {
  background: #07182d;
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: .9rem; margin-top: 16px; max-width: 300px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__flare-icon {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(249,168,37,.4));
}
.footer__logo-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.footer__logo-trade { color: #ffffff; }
.footer__logo-flare { color: #f4692a; }
.footer__logo-text  { display: none; }
.footer__logo-img   { display: none; }
.footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .88rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.footer__bottom a:hover { color: var(--orange); }

/* ── PAGE HEADER (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__flare {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,105,42,.2) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.7); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__img { display: none; }
  .solution__grid { grid-template-columns: 1fr 1fr; }
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .how__steps::before { display: none; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__img { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pricing__card { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .solution__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .pricing__guarantees { flex-direction: column; gap: 12px; }
  /* Hero mobile fixes */
  .hero {
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 112px;
    padding-bottom: 56px;
  }
  .hero__bg {
    background-position: 60% center;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800&q=80');
    opacity: .10;
  }
  .hero__flare {
    width: 320px;
    height: 320px;
    top: -60px;
    right: -60px;
  }
  .hero__title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero__sub { font-size: .95rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}
