/* ═══════════════════════════════════════════════════════════════════════════
   Zeono Landing Page — landing.css
   Stack: plain CSS (no framework), mobile-first responsive
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom properties ───────────────────────────────────────────────────── */
:root {
  --navy:        #1B2D5B;
  --navy-light:  #233874;
  --blue:        #3B82C4;
  --blue-dark:   #2d6aa8;
  --sky:         #7AB8F5;
  --bg:          #F0F6FF;
  --dark:        #0D1626;
  --muted:       #6B7A99;
  --white:       #FFFFFF;
  --border:      rgba(255,255,255,0.10);

  --r:           14px;
  --r-sm:        8px;
  --r-lg:        20px;

  --shadow-card: 0 4px 24px rgba(27,45,91,0.10);
  --shadow-lift: 0 12px 40px rgba(59,130,196,0.20);
  --glow-blue:   0 0 0 3px rgba(59,130,196,0.25);

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --dur:         0.35s;

  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --nav-h: 68px;
}

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility helpers ──────────────────────────────────────────────────────── */
.lp-mono    { font-family: var(--font-mono); }
.lp-green   { color: #22c55e; }
.lp-sky     { color: var(--sky); }

.lp-container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}

.lp-container--narrow {
  max-width: 760px;
}

/* ── Section titles ───────────────────────────────────────────────────────── */
.lp-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  text-align: center;
  margin-bottom: 3rem;
}

.lp-section-title--light {
  color: var(--white);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 10px 22px;
  transition: var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.lp-btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.lp-btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.lp-btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.lp-btn--outline:hover {
  background: rgba(59,130,196,0.08);
  transform: translateY(-1px);
}

.lp-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid transparent;
}
.lp-btn--ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.lp-btn--lg  { padding: 13px 30px; font-size: 1rem; border-radius: 10px; }
.lp-btn--xl  { padding: 16px 40px; font-size: 1.0625rem; border-radius: 12px; }
.lp-btn--full { width: 100%; }

/* ── Logo ─────────────────────────────────────────────────────────────────── */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */
.lp-grid { display: grid; gap: 24px; }
.lp-grid--3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .lp-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .lp-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-nav.lp-nav--scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.30);
}

.lp-nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
  gap: 32px;
}

.lp-nav__links {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  list-style: none;
}

.lp-nav__links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--dur), background var(--dur);
}
.lp-nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.lp-nav__cta {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Hamburger */
.lp-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

.lp-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-hamburger.is-open span:nth-child(2) { opacity: 0; }
.lp-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.lp-nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--navy);
  padding: 12px 24px 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.lp-nav__mobile.is-open {
  max-height: 360px;
  padding-bottom: 20px;
}

.lp-nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}
.lp-nav__mobile a:hover { color: var(--white); }

.lp-nav__mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.lp-nav__mobile-cta .lp-btn { flex: 1; }

@media (min-width: 780px) {
  .lp-nav__links { display: flex; }
  .lp-nav__cta   { display: flex; }
  .lp-hamburger  { display: none; }
  .lp-nav__mobile { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Faint grid */
.lp-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gradient mesh glow */
.lp-hero__bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(59,130,196,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(27,45,91,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px 100px;
}

@media (min-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-block: 100px 120px;
  }
}

/* Badge */
.lp-badge {
  display: inline-block;
  background: rgba(59,130,196,0.18);
  border: 1px solid rgba(59,130,196,0.35);
  color: var(--sky);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lp-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.lp-text-gradient {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.70);
  max-width: 480px;
  margin-bottom: 36px;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lp-hero__actions .lp-btn--outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.30);
}
.lp-hero__actions .lp-btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.50);
  color: var(--white);
}

/* ── Dashboard mockup ─────────────────────────────────────────────────────── */
.lp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.lp-mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

/* Window bar */
.lp-mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.20);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-dot--red    { background: #FF5F57; }
.lp-dot--yellow { background: #FEBC2E; }
.lp-dot--green  { background: #28C840; }

.lp-mockup__title-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-left: 8px;
  font-family: var(--font-mono);
}

/* Stats row */
.lp-mockup__stats {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-mockup__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lp-mockup__stat:last-child { border-right: none; }

.lp-mockup__label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.lp-mockup__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Chart */
.lp-mockup__chart-wrap {
  padding: 16px 16px 8px;
  height: 90px;
}

.lp-mockup__chart {
  width: 100%;
  height: 100%;
}

/* AI chat bubble */
.lp-mockup__chat {
  padding: 12px 16px 16px;
}

.lp-bubble {
  display: flex;
  gap: 10px;
  background: rgba(59,130,196,0.14);
  border: 1px solid rgba(59,130,196,0.25);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}

.lp-bubble__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-bubble__body {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ── Redesigned mockup: TES + Metrics dual layout ────────────────────────── */
.lp-mockup__dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-mockup__tes {
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.lp-mockup__tes-grade {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.lp-mockup__tes-score {
  margin-top: 4px;
}

.lp-mockup__tes-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.lp-mockup__tes-max {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.40);
}

.lp-mockup__tes-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  margin-bottom: 12px;
}

.lp-mockup__tes-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.lp-mockup__bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-mockup__bar-name {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.50);
  width: 70px;
  flex-shrink: 0;
}

.lp-mockup__bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.lp-mockup__bar-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}

/* Key metrics grid */
.lp-mockup__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.lp-mockup__metric {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-mockup__metric:nth-child(even) {
  border-right: none;
}

.lp-mockup__metric:nth-last-child(-n+2) {
  border-bottom: none;
}

.lp-mockup__metric-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-mockup__metric-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.lp-mockup__metric-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.40);
}

.lp-red { color: #ef4444; }

@media (max-width: 480px) {
  .lp-mockup__dual {
    grid-template-columns: 1fr;
  }
  .lp-mockup__tes {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

/* Floating insight card */
.lp-float-card {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  white-space: nowrap;
}

.lp-float-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-float-card__label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-float-card__val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
}

/* ══════════════════════════════════════════════════════════════════════════
   PROBLEM SECTION  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-problem {
  background: var(--dark);
  padding: 100px 0;
}

.lp-glass-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,130,196,0.15);
}

.lp-glass-card__icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.lp-glass-card__icon svg {
  width: 36px;
  height: 36px;
}

.lp-glass-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   FEATURES SECTION  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-features {
  background: var(--bg);
  padding: 100px 0;
}

.lp-feature-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid rgba(27,45,91,0.07);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(59,130,196,0.15);
}

.lp-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,196,0.10);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.lp-feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.lp-feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.lp-feature-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   BROKERS / INTEGRATIONS  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-brokers {
  background: var(--bg);
  padding: 100px 0;
}

.lp-brokers__sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.0rem;
  max-width: 560px;
  margin: -8px auto 56px;
  line-height: 1.6;
}

.lp-brokers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.lp-broker-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 20px 24px;
  border: 1px solid rgba(27,45,91,0.07);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-broker-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(59,130,196,0.15);
}

.lp-broker-card__logo {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-broker-card__logo img {
  max-height: 44px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}

.lp-broker-card h3 {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.lp-broker-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.lp-broker-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  background: rgba(59,130,196,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 4px;
}

.lp-broker-card__tag svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.lp-brokers__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .lp-brokers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-brokers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-hiw {
  background: var(--navy);
  padding: 100px 0;
}

.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .lp-steps {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
  }
}

.lp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.lp-step__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* Connector line between steps */
.lp-step__connector {
  display: none;
  position: absolute;
  top: 80px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, rgba(122,184,245,0.5), rgba(122,184,245,0.1));
}

.lp-step__connector--last {
  display: none !important;
}

@media (min-width: 900px) {
  .lp-step__connector {
    display: block;
  }
}

.lp-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(59,130,196,0.15);
  border: 2px solid rgba(59,130,196,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sky);
  transition: background var(--dur), transform var(--dur) var(--ease);
}

.lp-step:hover .lp-step__icon {
  background: rgba(59,130,196,0.25);
  transform: scale(1.06);
}

.lp-step__icon svg {
  width: 28px;
  height: 28px;
}

.lp-step h3 {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.lp-step p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  max-width: 220px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════════
   STATS  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-stats {
  background: var(--dark);
  padding: 100px 0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

@media (min-width: 640px) {
  .lp-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .lp-stats-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.lp-stat__num {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 12px;
}

.lp-stat__num--sm {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.lp-stat__desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 220px;
  margin-inline: auto;
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-testimonials {
  background: var(--bg);
  padding: 100px 0;
}

.lp-tcard {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 28px;
  border: 1px solid rgba(27,45,91,0.07);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(59,130,196,0.20);
}

.lp-tcard__stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.lp-tcard__quote {
  font-size: 0.9375rem;
  color: var(--dark);
  line-height: 1.65;
  flex: 1;
}

.lp-tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.lp-tcard__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.lp-tcard__author span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.lp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   PRICING  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-pricing {
  background: var(--white);
  padding: 100px 0;
}

.lp-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 640px) {
  .lp-plans { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .lp-plans {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }
}

.lp-plan {
  border-radius: var(--r);
  padding: 36px 28px;
  border: 2px solid rgba(27,45,91,0.10);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.lp-plan--pop {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 8px 40px rgba(59,130,196,0.15);
}

.lp-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.lp-plan__name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.lp-plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.lp-plan__amount {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.lp-plan__period {
  font-size: 0.9rem;
  color: var(--muted);
}

.lp-plan__annual {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.lp-plan__annual em {
  color: #22c55e;
  font-style: normal;
  font-weight: 600;
}

.lp-plan__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(27,45,91,0.08);
  list-style: none;
}

.lp-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.4;
}

.lp-plan__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-plan__list li.yes::before {
  background-color: rgba(34,197,94,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.lp-plan__list li.ltd::before {
  background-color: rgba(245,158,11,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cline x1='2' y1='6' x2='10' y2='6' fill='none' stroke='%23F59E0B' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-plan__list li.ltd { color: var(--muted); }

.lp-plan__list li.no::before {
  background-color: rgba(107,122,153,0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cline x1='3' y1='3' x2='9' y2='9' fill='none' stroke='%236B7A99' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='9' y1='3' x2='3' y2='9' fill='none' stroke='%236B7A99' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.lp-plan__list li.no { color: var(--muted); opacity: 0.6; }

.lp-plan__list li em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.8125rem;
}

/* Override button color inside highlighted plan */
.lp-plan--pop .lp-btn--outline {
  color: var(--blue);
  border-color: var(--blue);
}

/* ══════════════════════════════════════════════════════════════════════════
   FAQ  (light)
══════════════════════════════════════════════════════════════════════════ */
.lp-faq {
  background: var(--bg);
  padding: 100px 0;
}

.lp-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq-item {
  background: var(--white);
  border-radius: var(--r-sm);
  border: 1px solid rgba(27,45,91,0.08);
  overflow: hidden;
  transition: box-shadow var(--dur);
}

.lp-faq-item.is-open {
  box-shadow: 0 4px 20px rgba(59,130,196,0.10);
  border-color: rgba(59,130,196,0.20);
}

.lp-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  background: transparent;
  transition: background var(--dur);
}

.lp-faq-item__q:hover {
  background: rgba(59,130,196,0.04);
}

.lp-faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.lp-faq-item.is-open .lp-faq-item__chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.lp-faq-item__a {
  border-top: 1px solid rgba(27,45,91,0.06);
}

.lp-faq-item__a p {
  padding: 18px 24px 22px;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* hidden/show via JS — we animate via max-height in JS approach */
.lp-faq-item__a[hidden] {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════════
   FINAL CTA  (dark)
══════════════════════════════════════════════════════════════════════════ */
.lp-cta {
  background: var(--navy);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(59,130,196,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.lp-cta__inner {
  position: relative;
  z-index: 1;
}

.lp-cta__h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.lp-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.lp-footer {
  background: var(--dark);
  padding: 48px 0 32px;
}

.lp-footer__top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

@media (min-width: 780px) {
  .lp-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lp-footer__brand {
  color: var(--white);
}

.lp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.lp-footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur);
}
.lp-footer__nav a:hover { color: var(--white); }

.lp-footer__social {
  display: flex;
  gap: 14px;
}

.lp-footer__social a {
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  transition: color var(--dur);
}
.lp-footer__social a:hover { color: var(--white); }

.lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════════ */

/* Initial state: hidden, shifted down */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.reveal-d1 { transition-delay: 0.12s; }
.reveal.reveal-d2 { transition-delay: 0.24s; }

/* Visible state */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fade-up (CSS only, runs on load) */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) forwards;
}

.fade-d1 { animation-delay: 0.15s; }
.fade-d2 { animation-delay: 0.30s; }
.fade-d3 { animation-delay: 0.45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Floating card animation */
.lp-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════════════════════════════
   MISC  — scrollbar, selection
══════════════════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(59,130,196,0.25);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(59,130,196,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Responsive tweaks ────────────────────────────────────────────────────── */
@media (max-width: 479px) {
  .lp-hero__actions { flex-direction: column; }
  .lp-btn--lg { width: 100%; }
  .lp-float-card { display: none; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .lp-plans > .lp-plan:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ══════════════════════════════════════════════════════════════════
   NEW SECTIONS — added during landing redesign
   ══════════════════════════════════════════════════════════════════ */

/* ── Lang toggle ─────────────────────────────────────────────────── */
.lp-lang-toggle {
  min-width: 40px; text-align: center;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  cursor: pointer; background: none; border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px; padding: 4px 10px; color: var(--lp-text);
  transition: background .15s, color .15s;
}
.lp-lang-toggle:hover { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }
.lp-lang-toggle--mobile {
  width: 100%; padding: 10px; border: none; border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 8px; font-size: .85rem; background: none; cursor: pointer;
  color: var(--lp-muted);
}

/* ── Badge light variant (for dark sections) ─────────────────────── */
.lp-badge--light {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}

/* ── Broker logo text fallback ───────────────────────────────────── */
.lp-broker-card__logo--text {
  height: 48px; display: flex; align-items: center; justify-content: center;
}
.lp-broker-card__tag--live {
  background: rgba(34,197,94,.12); color: #22c55e;
  border: 1px solid rgba(34,197,94,.25); font-size: .75rem; font-weight: 600;
}
.lp-brokers__coming {
  text-align: center; margin-top: 36px; padding-top: 28px;
  border-top: 1px solid #e5e7eb; color: #9ca3af; font-size: .875rem;
}
.lp-brokers__coming span { font-weight: 600; color: #6b7280; }

/* ── 7th feature card centering ──────────────────────────────────── */
@media (min-width: 768px) {
  .lp-feature-card--center:last-child:nth-child(3n+1) { grid-column: 2; }
}

/* ══════════════════════════════════════════════════════════════════
   TRADE EFFICIENCY SECTION
   ══════════════════════════════════════════════════════════════════ */
.lp-efficiency {
  background: #0b0f18;
  padding: 100px 0;
}
.lp-efficiency__header { text-align: center; margin-bottom: 64px; }
.lp-efficiency__sub {
  color: rgba(255,255,255,.58); max-width: 600px;
  margin: 16px auto 0; font-size: 1.05rem; line-height: 1.7;
}
.lp-efficiency__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
@media (max-width: 768px) { .lp-efficiency__body { grid-template-columns: 1fr; } }

/* Metric rows */
.lp-efficiency__metrics { display: flex; flex-direction: column; gap: 18px; }
.lp-metric-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: center; }
.lp-metric-row__head {
  display: flex; justify-content: space-between;
  grid-column: 1 / -1; margin-bottom: 2px;
}
.lp-metric-row__name { color: #e2e8f0; font-size: .875rem; font-weight: 500; }
.lp-metric-row__weight { color: rgba(255,255,255,.35); font-size: .775rem; }
.lp-metric-row__score {
  color: #60a5fa; font-size: .875rem; font-weight: 600;
  text-align: right; min-width: 30px;
}
.lp-metric-bar {
  height: 6px; background: rgba(255,255,255,.1);
  border-radius: 3px; overflow: hidden;
}
.lp-metric-fill {
  height: 100%; width: 0; border-radius: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 1.1s cubic-bezier(.4,0,.2,1);
}
.lp-metric-fill--warn {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.lp-metric-fill.animated { width: var(--lp-fill, 0%); }

/* Score total */
.lp-score-total {
  display: flex; align-items: center; gap: 20px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.lp-score-circle {
  display: flex; align-items: baseline; gap: 2px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 14px; padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(59,130,246,.35);
}
.lp-score-circle__num { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.lp-score-circle__den { font-size: .95rem; color: rgba(255,255,255,.65); }
.lp-score-total__label { display: flex; flex-direction: column; gap: 3px; }
.lp-score-total__label strong { color: #f1f5f9; font-size: .95rem; }
.lp-score-total__label span { color: rgba(255,255,255,.45); font-size: .8rem; }

/* AI card */
.lp-ai-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 28px;
}
.lp-ai-card__header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; color: rgba(255,255,255,.65);
  font-size: .82rem; font-weight: 600;
}
.lp-ai-card__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; margin-left: auto;
  box-shadow: 0 0 8px #22c55e;
  animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; } 50% { opacity: .4; }
}
.lp-ai-card__verdict {
  color: rgba(255,255,255,.88); font-size: .92rem;
  line-height: 1.65; margin-bottom: 18px; font-style: italic;
  border-left: 3px solid #3b82f6; padding-left: 12px;
}
.lp-ai-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.lp-ai-card__issue,
.lp-ai-card__fix {
  font-size: .855rem; line-height: 1.55;
  padding-left: 22px; position: relative;
}
.lp-ai-card__issue::before { content: "✗"; position: absolute; left: 0; color: #f87171; font-weight: 700; }
.lp-ai-card__fix::before   { content: "✓"; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.lp-ai-card__issue { color: rgba(255,255,255,.68); }
.lp-ai-card__fix   { color: rgba(255,255,255,.88); }

/* Bottom efficiency stats */
.lp-efficiency__stats {
  display: flex; justify-content: center; gap: 80px;
  margin-top: 72px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 600px) { .lp-efficiency__stats { gap: 40px; } }
.lp-efficiency__stat { text-align: center; }
.lp-efficiency__stat-num {
  display: block; font-size: 2.8rem; font-weight: 800;
  color: #3b82f6; line-height: 1;
}
.lp-efficiency__stat-label {
  display: block; color: rgba(255,255,255,.5);
  font-size: .8rem; margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCT STATS SECTION
   ══════════════════════════════════════════════════════════════════ */
.lp-product-stats { padding: 100px 0; background: #fff; }
.lp-product-stats__sub {
  text-align: center; color: #6b7280;
  max-width: 520px; margin: 12px auto 56px; font-size: .95rem;
}
.lp-product-stats__grid { gap: 24px; }
.lp-pstat-card {
  background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow .2s, transform .2s;
}
.lp-pstat-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.lp-pstat-card__num { font-size: 2.8rem; font-weight: 800; color: #3b82f6; line-height: 1; }
.lp-pstat-card__label { font-size: .95rem; font-weight: 600; color: #111827; line-height: 1.4; }
.lp-pstat-card__detail { font-size: .8rem; color: #6b7280; line-height: 1.5; margin-top: 4px; }

/* ── Video placeholder ───────────────────────────────────────────────────── */
.lp-video { background: #0D1626; padding: 80px 0; }
.lp-video__wrap { max-width: 860px; margin: 0 auto; }
.lp-video__placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0f1e3a 0%, #1a2d50 100%);
  border-radius: 16px;
  border: 1px solid rgba(59,130,196,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  overflow: hidden;
}
.lp-video__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59,130,196,0.12) 0%, transparent 70%);
}
.lp-video__play-icon { width: 80px; height: 80px; position: relative; z-index: 1; filter: drop-shadow(0 0 20px rgba(59,130,196,0.5)); }
.lp-video__ring { animation: lp-ring-fill 2s ease forwards 0.5s; }
@keyframes lp-ring-fill { to { stroke-dashoffset: 0; } }
.lp-video__label { font-size: 0.9rem; color: rgba(255,255,255,0.45); position: relative; z-index: 1; letter-spacing: 0.04em; }

/* ── Screenshots section ─────────────────────────────────────────────────── */
.lp-screenshots { background: #0D1626; padding: 80px 0; }
.lp-screenshots__header { text-align: center; margin-bottom: 36px; }
.lp-screenshots__sub { max-width: 560px; margin: 16px auto 0; color: rgba(255,255,255,0.55); font-size: 1.05rem; line-height: 1.6; }
.lp-scr-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.lp-scr-tab {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,196,0.3);
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-scr-tab:hover { border-color: rgba(59,130,196,0.6); color: rgba(255,255,255,0.8); }
.lp-scr-tab--active { background: rgba(59,130,196,0.2); border-color: #3B82C4; color: #fff; }
.lp-scr-frame {
  border-radius: 16px;
  border: 1px solid rgba(59,130,196,0.2);
  overflow: hidden;
  background: #0f1e3a;
  min-height: 420px;
}
.lp-scr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 420px;
  padding: 40px;
}
.lp-scr-placeholder__icon { font-size: 3rem; opacity: 0.3; }
.lp-scr-placeholder__text { color: rgba(255,255,255,0.3); font-size: 0.9rem; text-align: center; }

.lp-scr-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
}

/* ── Beta broker tag ─────────────────────────────────────────────────────── */
.lp-broker-card__tag--beta { background: rgba(251,191,36,0.1); color: #FBC224; border: 1px solid rgba(251,191,36,0.2); }
