:root {
  --bg: #020304;
  --surface: #0c0f12;
  --surface2: #141820;
  --text: #f2f5fa;
  --muted: #a4acb8;
  --accent: #ff7a00;
  --accent-dim: rgba(255, 122, 0, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(255, 122, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.site-shell {
  min-height: 100vh;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(2, 3, 5, 0.9) 0%, rgba(2, 3, 5, 0.74) 35%, rgba(2, 3, 5, 0.34) 56%, rgba(2, 3, 5, 0.14) 72%, rgba(2, 3, 5, 0.28) 100%),
    url("bg.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right top;
  background-size: auto, 1474px 979px;
}

.topbar {
  position: relative;
  z-index: 30;
  width: min(1440px, 100%);
  margin: 0 auto;
  min-height: 80px;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(255, 122, 0, 0.25));
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 2.25vw, 2.35rem);
}

.nav-links a {
  text-decoration: none;
  color: #e8edf3;
  font-size: 0.98rem;
  font-weight: 600;
  opacity: 0.95;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
  opacity: 1;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 16px;
  padding: 0.78rem 1.55rem;
  font-weight: 700;
  font-size: 1.43rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #ff8a19 0%, #ff6a00 84%);
  box-shadow: 0 14px 26px rgba(255, 106, 0, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 34px rgba(255, 106, 0, 0.33);
}

.btn-ghost {
  color: #f4f7fb;
  border-color: var(--border);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.btn-lg {
  min-width: 330px;
  padding: 1.05rem 1.6rem;
  font-size: 0.98rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f8ff;
  margin: 5px 0;
}

.hero {
  width: 100%;
  margin: 0.5rem auto 0;
  position: relative;
  overflow: visible;
  background: none;
}

.hero-grid {
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: minmax(360px, 640px) 1fr;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 3vw, 2.3rem) clamp(0.2rem, 2vw, 1.1rem) clamp(1.5rem, 3vw, 2.1rem) clamp(1rem, 3.6vw, 2.9rem);
}

.pill {
  margin: 0;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 14, 0.55);
  border-radius: 999px;
  padding: 0.52rem 1rem;
  font-weight: 700;
  font-size: 1.3735vh;
  letter-spacing: -0.01em;
  color: #ff8d2c;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.13);
}

h1 {
  margin: 1.1rem 0 0;
  color: #f5f7fb;
  line-height: 0.93;
  font-size: clamp(2.613rem, 6.2645vw, 5.896rem);
  letter-spacing: -0.04em;
  font-weight: 800;
}

h1 span {
  color: var(--accent);
}

.subtitle {
  margin: 1.5rem 0 0;
  max-width: 640px;
  font-size: clamp(1.0854rem, 1.7755vw, 2.0301rem);
  line-height: 1.32;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.subtitle strong {
  color: var(--accent);
}

.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.stats {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  background: rgba(5, 8, 11, 0.63);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  padding: 1.2rem;
}

.stats article {
  min-width: 140px;
  flex: 1;
}

.stats h3 {
  margin: 0;
  font-size: clamp(2.35rem, 3.2vw, 3.1rem);
  color: #f7f9fe;
  letter-spacing: -0.03em;
}

.stats p {
  margin: 0.3rem 0 0;
  color: #9ca6b4;
  font-size: 1.4rem;
}

.hero-art {
  min-height: 100%;
}

@media (max-width: 700px) {
  .topbar {
    grid-template-columns: auto auto;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .top-actions {
    display: none;
  }

  .topbar.menu-open {
    align-items: start;
  }

  .topbar.menu-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 8, 10, 0.95);
  }

  .topbar.menu-open .top-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .site-shell {
    padding-top: 1.4rem;
    background-image:
      linear-gradient(180deg, rgba(2, 3, 5, 0.96) 26%, rgba(2, 3, 5, 0.58) 56%, rgba(2, 3, 5, 0.62) 100%),
      url("bg.webp");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, center center;
    background-size: auto, auto;
  }

  .hero-copy {
    padding: 1.4rem clamp(1rem, 5vw, 2rem) 2.8rem clamp(1rem, 5vw, 2rem);
  }

  .hero-art {
    min-height: 320px;
  }

  h1 {
    font-size: clamp(2.144rem, 11.39vw, 4.824rem);
  }

  .subtitle {
    font-size: clamp(1.1725rem, 3.216vw, 1.541rem);
  }

}

@media (max-width: 640px) {
  .brand-main {
    font-size: 1.32rem;
  }

  .brand-sub {
    font-size: 0.9rem;
  }

  .btn-lg {
    min-width: 100%;
  }

  .pill {
    width: 100%;
    justify-content: center;
    font-size: 0.6231rem;
  }

  .subtitle {
    font-size: 0.7102rem;
  }

}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.hiw {
  background: var(--bg);
  padding: 4.3rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hiw::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.hiw-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hiw h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-sub {
  margin: 0 auto 3.5rem;
  max-width: 520px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.hiw-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 0.6rem;
  margin-top: -3rem;
  opacity: 0.7;
}

.hiw-card {
  flex: 1;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem 2.2rem;
  position: relative;
  transition: border-color 240ms ease, transform 240ms ease;
}

.hiw-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.hiw-card--accent {
  background: linear-gradient(145deg, #141214 0%, #1a1008 100%);
  border-color: rgba(255, 122, 0, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.1), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hiw-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.hiw-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  margin-bottom: 1.3rem;
}

.hiw-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hiw-card p {
  margin: 0 0 1.2rem;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--muted);
}

.hiw-rules {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hiw-rules li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c8d0dc;
}

.hiw-rules li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hiw-cta {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.hiw-img-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hiw-img {
  width: 100%;
  max-width: 1450px;
  height: auto;
  display: block;
  border-radius: 20px;
}

@media (max-width: 860px) {
  .hiw-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }

  .hiw-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 0;
  }

  .hiw-card--accent {
    order: 0;
  }
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing {
  background: var(--surface);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.06) 0%, transparent 68%);
  pointer-events: none;
}

.pricing-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  text-align: center;
}

.pricing h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
}

.pricing-card--popular {
  border-color: rgba(255,106,0,0.4);
  box-shadow: 0 0 0 1px rgba(255,106,0,0.15);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff8a19, #ff6a00);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1.1rem;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  z-index: 1;
}

/* Account size header */
.pc-header {
  margin: 1.3rem 1.1rem 0;
  padding: 1.1rem 1.2rem 1rem;
  border: 1px solid rgba(255,106,0,0.45);
  border-radius: 14px;
  text-align: center;
}

.pc-size-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.pc-size-value {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Stats grid */
.pc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  padding: 0.9rem 1.1rem;
}

.pc-stat {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pc-stat--highlight {
  border-color: rgba(255,106,0,0.55);
}

.pc-stat--full {
  grid-column: 1 / -1;
}

.pc-stat-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.pc-stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pc-stat-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #5a5a5a;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.pc-stat-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

/* Trading rules accordion */
.pc-rules {
  margin: 0 1.1rem;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}

.pc-rules-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.pc-rules-summary::-webkit-details-marker { display: none; }
.pc-rules-summary::marker { display: none; }

.pc-rules-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.pc-rules-shield {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

.pc-rules-chevron {
  width: 15px;
  height: 15px;
  color: var(--accent);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.pc-rules[open] .pc-rules-chevron {
  transform: rotate(180deg);
}

.pc-rules-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pc-rule-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

.pc-rule-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--accent);
}

.pc-rule-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pc-rule-name {
  color: var(--text);
  font-weight: 500;
}

.pc-rule-val {
  color: #5a5a5a;
  font-weight: 400;
}

/* Price & CTA footer */
.pc-footer {
  padding: 1rem 1.1rem 1.3rem;
  margin-top: auto;
}

.pc-price-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.pc-price-value {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pc-price-sub {
  font-size: 0.72rem;
  color: #5a5a5a;
  font-weight: 400;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(90deg, #ff8a19, #ff5f00);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 10px;
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 4px 20px rgba(255,106,0,0.35);
}

.pc-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.pc-cta-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.pc-cta-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pricing-note {
  margin: 2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* Pricing group tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 0.45rem 1.3rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.pricing-tab:hover {
  border-color: var(--border-accent);
  color: var(--text);
}

.pricing-tab.active {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

.pricing-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
  font-size: 0.95rem;
}

/* Full-section clickable overlay (for background-image sections) */
.section-link-overlay {
  display: block;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
}

/* ─────────────────────────────────────────
   WHY FULLPORT FUNDED
───────────────────────────────────────── */
.why {
  background-color: var(--bg);
  padding: clamp(2.7rem, 9vw, 10.8rem);
  position: relative;
}

.why-inner {
  display: none;
}

.why-frame-wrap {
  width: 100%;
}

.why-frame-link {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  outline-offset: 4px;
}

.why-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.why-frame-link:hover .why-frame {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
}

.why-img {
  width: 100%;
  height: auto;
  display: block;
}

.why h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  text-align: left;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  transition: border-color 240ms ease, transform 240ms ease;
}

.why-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.why-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 13px;
  margin-bottom: 1.2rem;
}

.why-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.why-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

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

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi {
  background-color: var(--surface);
  padding: clamp(2.7rem, 9vw, 10.8rem);
  position: relative;
}

.testi-inner {
  display: none;
}

.testi-frame-wrap {
  width: 100%;
}

.testi-frame-link {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  outline-offset: 4px;
}

.testi-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transition: box-shadow 240ms ease, border-color 240ms ease;
}

.testi-frame-link:hover .testi-frame {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7);
}

.testi-img {
  width: 100%;
  height: auto;
  display: block;
}

.testi h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  text-align: left;
}

.testi-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 240ms ease, transform 240ms ease;
}

.testi-card:hover {
  border-color: rgba(255, 122, 0, 0.28);
  transform: translateY(-3px);
}

.testi-card--accent {
  background: linear-gradient(145deg, #141214 0%, #1a1008 60%);
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.08), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testi-stars {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.testi-quote {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.72;
  color: #d8dfe8;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--av-color, #333);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.testi-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.testi-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.tstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.tstat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
}

.tstat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.tstat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 860px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-section {
  background: var(--bg);
  padding: 6rem 0 7rem;
}

.faq-inner {
  width: min(800px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
  text-align: center;
}

.faq-section h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.faq-list {
  margin-top: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item[open] {
  border-color: var(--border-accent);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  transition: background 200ms ease, border-color 200ms ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--accent-dim);
  border-color: var(--border-accent);
}

.faq-body {
  padding: 0 1.5rem 1.4rem;
}

.faq-body p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: #010203;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.6vw, 2.9rem);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 6px rgba(255, 122, 0, 0.2));
}

.footer-tagline {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.social-link:hover {
  border-color: var(--border-accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-group h4 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-nav-group a {
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-nav-group a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal {
  margin: 0;
  font-size: 0.77rem;
  line-height: 1.65;
  color: rgba(164, 172, 184, 0.55);
}

.footer-copy {
  margin: 0;
  font-size: 0.83rem;
  color: rgba(164, 172, 184, 0.5);
}

.footer-copy a {
  color: var(--muted);
  text-decoration: none;
}

.footer-copy a:hover {
  color: var(--text);
}

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

@media (max-width: 560px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
