/* ============================================
   ONE-SIGNAL AD LANDING PAGE — DESIGN SYSTEM
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #151517;
  --bg-card: #111113;
  --bg-card-hover: #18181A;
  --bg-elevated: #1C1C1F;
  --bg-faq: #1A1A1D;

  --text-primary: #EAEAEA;
  --text-secondary: rgba(234, 234, 234, 0.7);
  --text-muted: rgba(234, 234, 234, 0.4);

  --accent-orange: #E76D21;
  --accent-orange-hover: #FD853B;
  --accent-blue: #1863DC;
  --accent-green: #00E676;

  --cta-bg: #FFFFFF;
  --cta-text: #08090B;
  --cta-hover-bg: #F0F0F0;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(255, 255, 255, 0.15);

  /* Gradients */
  --gradient-glow-blue: radial-gradient(ellipse at 50% 0%, rgba(24, 99, 220, 0.12) 0%, transparent 65%);
  --gradient-glow-orange: radial-gradient(ellipse at 50% 50%, rgba(231, 109, 33, 0.08) 0%, transparent 65%);
  --gradient-card: linear-gradient(180deg, #18181A 0%, #111113 100%);

  /* Typography */
  --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;

  /* Spacing */
  --space-unit: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 120px;

  /* Radii */
  --radius-pill: 100px;
  --radius-card: 16px;
  --radius-sm: 6px;
  --radius-xs: 4px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow-blue: 0 0 60px rgba(24, 99, 220, 0.1);
  --shadow-glow-green: 0 0 40px rgba(0, 230, 118, 0.08);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  --duration-slow: 600ms;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

a:hover {
  color: var(--accent-orange-hover);
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-mono);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
}

.text-serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-primary);
}

.text-accent {
  color: var(--accent-orange);
}

.text-muted {
  color: var(--text-muted);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section--compact {
  padding: var(--space-xl) 0;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) ease-out;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.btn-primary:hover {
  background: var(--cta-hover-bg);
  color: var(--cta-text);
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  transform: scale(1.03);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--duration-fast) ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Utility --- */
.text-center {
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Centered button group (row of 2 buttons) */
.btn-group-center {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

/* ============================================
   TELEGRAM BUTTON — definitive blue style
   ============================================ */
.btn-telegram,
.btn-telegram:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #229ED9 0%, #1a7fb5 100%) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(34, 158, 217, 0.4) !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

.btn-telegram:hover {
  background: linear-gradient(135deg, #33b5e8 0%, #229ED9 100%) !important;
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.55) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

/* --- Cards --- */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  transition: all var(--duration-normal) ease;
}

.card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

/* --- Eyebrow Label --- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-orange);
  margin-bottom: var(--space-sm);
}

/* ============================================
   SECTION 1 — HERO
   ============================================ */
.section-hero {
  padding: 160px 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 600px;
  background: var(--gradient-glow-blue);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-headline {
  margin-bottom: var(--space-md);
}

.hero-headline .text-serif {
  font-size: clamp(32px, 4.5vw, 52px);
  display: block;
  margin-top: 4px;
}

.hero-subheadline {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Trust bar / As seen on */
.trust-bar {
  margin-top: var(--space-xl);
}

.trust-bar__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
  transition: opacity var(--duration-normal) ease;
}

.trust-bar__logos:hover {
  opacity: 0.6;
}

.trust-bar__logos img {
  height: 22px;
  width: auto;
}

/* ============================================
   SECTION 2 — WHAT YOU GET DAILY
   ============================================ */
.section-daily {
  position: relative;
}

.section-daily::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0.3;
}

.daily-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.daily-checklist {
  list-style: none;
  margin-top: var(--space-md);
}

.daily-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 16px;
}

.daily-checklist li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.daily-description {
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  font-size: 16px;
}

/* Signal preview card */
.signal-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.signal-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.signal-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.signal-preview__channel {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signal-preview__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.signal-preview__body {
  padding: var(--space-md);
}

.signal-preview__bias {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  display: inline-block;
}

.signal-preview__bias--long {
  color: var(--accent-green);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.signal-preview__bias--short {
  color: #FF5252;
  background: rgba(255, 82, 82, 0.08);
  border: 1px solid rgba(255, 82, 82, 0.15);
}

.signal-preview__detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
}

.signal-preview__detail:last-child {
  border-bottom: none;
}

.signal-preview__label {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  flex: 1;
}

.signal-preview__value {
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   BROKER SIGNAL CARD (Chat Testimonials)
   ============================================ */
.broker-signal {
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  border-left: 3px solid #1a73e8;
}

.broker-signal__top {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.broker-signal__asset {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.02em;
}

.broker-signal__action {
  font-size: 12px;
  font-weight: 600;
  color: #1a73e8;
  background: rgba(26, 115, 232, 0.08);
  padding: 1px 6px;
  border-radius: 4px;
}

.broker-signal__action--buy {
  color: #0d7b3e;
  background: rgba(13, 123, 62, 0.09);
}

.broker-signal__action--sell {
  color: #c62828;
  background: rgba(198, 40, 40, 0.08);
}

.broker-signal__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: #555;
  margin-bottom: 4px;
  border-top: 1px solid #f0f0f0;
  padding-top: 5px;
}

.broker-signal__date,
.broker-signal__time {
  color: #777;
}

.broker-signal__profit {
  font-weight: 700;
  font-size: 12px;
  color: #111;
}

.broker-signal__profit--pos {
  color: #0d7b3e;
}

.broker-signal__profit--neg {
  color: #c62828;
}

.broker-signal__bottom {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: #888;
  padding-top: 2px;
}

/* ============================================
   SECTION 3 — PERFORMANCE / PROOF
   ============================================ */
.section-performance {
  text-align: center;
  position: relative;
}

.section-performance::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--gradient-glow-blue);
  opacity: 0.6;
  pointer-events: none;
}

.performance-description {
  max-width: 700px;
  margin: var(--space-md) auto var(--space-xl);
  color: var(--text-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.stat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--duration-normal) ease;
}

.stat-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

.stat-card__number {
  font-family: var(--font-mono);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card__label {
  font-size: 15px;
  color: var(--text-secondary);
}

.stat-card__sublabel {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   SECTION 1B — TELEGRAM RESULTS
   ============================================ */
.section-telegram-results {
  position: relative;
}

.results-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.results-block {
  text-align: left;
}

.results-block__title {
  font-family: var(--font-mono);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.results-block__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.results-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FAFAFA;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.results-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #E8E8E8;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #333;
  vertical-align: middle;
}

.results-table tr:last-child td {
  border-bottom: none;
}

.results-table__asset {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 14px;
  white-space: nowrap;
}

.results-table__range {
  color: #666;
  font-size: 12px;
  margin-top: 2px;
}

.tag-buy {
  color: #1863DC;
  font-weight: 700;
}

.tag-sell {
  color: #D32F2F;
  font-weight: 700;
}

.results-table__date {
  color: #888;
  font-size: 12px;
  white-space: nowrap;
  text-align: right;
}

.results-table__pnl {
  font-weight: 700;
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.results-table__pnl--pos {
  color: #1863DC;
}

.results-table__pnl--neg {
  color: #D32F2F;
}

/* ============================================
   SECTION 4 — TESTIMONIALS (CHAT STYLE)
   ============================================ */
.section-testimonials {
  text-align: center;
}

.testimonials-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin: var(--space-sm) auto var(--space-xl);
  font-size: 16px;
}

/* Testimonial Cards Grid */
.testimonial-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.test-app-card {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--duration-normal) ease, border-color var(--duration-normal) ease;
}

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

/* Custom Chat UI Mockup (Telegram Style) */
/* Custom Chat UI Mockup (Telegram Light Style) */
.chat-ui {
  display: flex;
  flex-direction: column;
  height: 480px;
  background: linear-gradient(160deg, #eaf2cb 0%, #badac1 50%, #9bc2aa 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #000;
  position: relative;
  text-align: left;
}

.chat-ui::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M10 10 Q20 5 30 10 T50 10" fill="transparent" stroke="rgba(0,0,0,0.04)" stroke-width="1.5"/><circle cx="20" cy="20" r="2" fill="rgba(0,0,0,0.03)"/><path d="M15 30 L20 25 L25 30" fill="transparent" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Telegram iOS Light Theme Status Area */
.chat-ui__status-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 18px 0;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  z-index: 2;
}

/* Header with Pills */
.chat-ui__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  z-index: 2;
}

.chat-ui__header .back-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}

.chat-ui__header .user-info {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  padding: 6px 20px;
  border-radius: 20px;
  text-align: center;
}

.chat-ui__header .name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.chat-ui__header .status {
  font-size: 11px;
  color: #666;
  margin-top: 1px;
}

.chat-ui__header .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #62A4E3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.avatar--2 {
  background: #E9647C !important;
}

.avatar--3 {
  background: #56C186 !important;
}

/* Chat Feed Body */
.chat-ui__body {
  flex-grow: 1;
  padding: 10px 14px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}

.chat-ui__date-pill {
  align-self: center;
  background: rgba(74, 102, 85, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}

/* Light Theme Message Bubble */
.chat-ui__message {
  align-self: flex-start;
  background: #fff;
  padding: 8px 10px;
  border-radius: 16px 16px 16px 2px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.chat-ui__message::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-bottom-left-radius: 10px;
}

/* Chat Input Bar iOS Style */
.chat-ui__input {
  display: flex;
  align-items: center;
  padding: 8px 12px 16px;
  gap: 8px;
  z-index: 2;
}

.chat-ui__input-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #444;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-ui__input-field-wrap {
  flex-grow: 1;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.chat-ui__input-field {
  font-size: 14px;
  color: #999;
}

/* Fake Signal Card / Embedded Media Screenshot */
.chat-ui__attachment {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
}

.broker-signal {
  background: #fff;
  border-radius: 4px;
  padding: 8px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
}

.broker-signal__top {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.broker-signal__asset {
  font-size: 13px;
  font-weight: 700;
  color: #000;
}

.broker-signal__action {
  font-size: 13px;
  font-weight: 600;
  color: #1a73e8;
  /* broker blue */
}

.broker-signal__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: #111;
  margin-bottom: 2px;
}

.broker-signal__date,
.broker-signal__time {
  color: #000;
}

.broker-signal__profit {
  font-weight: 600;
}

.broker-signal__bottom {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  color: #666;
  padding-bottom: 2px;
}

.chat-ui__text {
  font-size: 15px;
  line-height: 1.4;
  color: #000;
  padding: 2px 2px 4px;
}

.chat-ui__message-time {
  font-size: 10px;
  color: #999;
  float: right;
  margin-top: 4px;
  margin-left: 10px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .testimonial-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   SECTION 5 — HOW IT WORKS
   ============================================ */
.section-how {
  text-align: center;
  position: relative;
}

.section-how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: var(--gradient-glow-blue);
  opacity: 0.3;
  pointer-events: none;
}

.how-subtitle {
  color: var(--text-secondary);
  max-width: 500px;
  margin: var(--space-sm) auto var(--space-xl);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-subtle), var(--accent-orange), var(--border-subtle));
  opacity: 0.4;
  z-index: 0;
}

.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  z-index: 1;
  transition: all var(--duration-normal) ease;
}

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

.step-card__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(24, 99, 220, 0.12);
  border: 1px solid rgba(24, 99, 220, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 0 auto var(--space-md);
}

.step-card__icon {
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.step-card h3 {
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SECTION 6 — FAQ
   ============================================ */
.section-faq {
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-subtitle {
  color: var(--text-secondary);
  margin-top: var(--space-sm);
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--duration-fast) ease;
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--accent-orange);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: all var(--duration-normal) var(--ease-out);
}

.faq-question__icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question__icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.is-open .faq-question {
  color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out), padding var(--duration-normal) var(--ease-out);
}

.faq-answer__inner {
  padding: 0 0 var(--space-md);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

/* ============================================
   SECTION 7 — FINAL CTA
   ============================================ */
.section-final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: var(--gradient-glow-blue);
  opacity: 0.4;
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__headline {
  margin-bottom: var(--space-sm);
}

.final-cta__sub {
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  font-size: 18px;
}

.final-cta__trust {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.final-cta__trust-item {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.final-cta__trust-item::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

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

/* Stagger children */
.reveal-stagger>.reveal:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger>.reveal:nth-child(2) {
  transition-delay: 100ms;
}

.reveal-stagger>.reveal:nth-child(3) {
  transition-delay: 200ms;
}

.reveal-stagger>.reveal:nth-child(4) {
  transition-delay: 300ms;
}

.reveal-stagger>.reveal:nth-child(5) {
  transition-delay: 400ms;
}

.reveal-stagger>.reveal:nth-child(6) {
  transition-delay: 500ms;
}

/* ============================================
   RESPONSIVE — TABLET (768px)
   ============================================ */
@media (max-width: 1024px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .section-hero {
    padding: 120px 0 var(--space-xl);
  }

  .daily-grid {
    gap: var(--space-lg);
  }

  .stats-grid,
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .testimonials-grid {
    gap: var(--space-sm);
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 80px;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section-hero {
    padding: 100px 0 var(--space-xl);
  }

  /* Hero */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Daily grid */
  .daily-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .daily-text {
    order: 1;
  }

  .signal-preview {
    order: 2;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* Testimonials */
  .chat-feed {
    max-width: 100%;
  }

  /* Results */
  .results-columns {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .steps-grid::before {
    display: none;
  }

  /* FAQ */
  .faq-question {
    font-size: 16px;
  }

  /* Final CTA */
  .final-cta__trust {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }
}

/* ============================================
   UTILITY CLASSES (WEBFLOW-FRIENDLY)
   ============================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

/* ============================================
   CUSTOM BROKER SIGNAL STYLES
   ============================================ */

/* Crypto Signal (Card 2) */
.crypto-signal {
  background: #1e2329;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
  text-align: left;
}

.crypto-signal__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.crypto-signal__pair {
  font-size: 14px;
  font-weight: 700;
}

.crypto-signal__type {
  font-size: 11px;
  color: #848e9c;
  background: #2b3139;
  padding: 2px 4px;
  border-radius: 2px;
}

.crypto-signal__pnl {
  margin-bottom: 10px;
}

.crypto-signal__pnl-val {
  font-size: 20px;
  font-weight: 600;
  color: #0ecb81;
}

.crypto-signal__pnl-currency {
  font-size: 12px;
  color: #848e9c;
  margin-left: 4px;
}

.crypto-signal__details {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #848e9c;
}

.crypto-signal__details .val {
  color: #eaecef;
  font-family: var(--font-mono, monospace);
  margin-left: 4px;
}

/* MT Signal (Card 3) */
.mt-signal {
  background: #fff;
  border-left: 3px solid #007aff;
  padding: 8px 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  text-align: left;
}

.mt-signal__header {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.mt-signal__type {
  color: #007aff;
  font-size: 12px;
  margin-left: 6px;
}

.mt-signal__prices {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.mt-signal__profit {
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

/* ============================================
   ENHANCED BUTTON STYLES
   ============================================ */

/* Make primary buttons more prominent */
.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.45) !important;
  letter-spacing: 0.01em !important;
  border: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%) !important;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.6) !important;
  transform: translateY(-2px) !important;
}

/* (Telegram button defined above — consolidated) */

/* CTA group spacing for final-cta */
.section-final-cta .final-cta__content .btn {
  margin: 8px;
}

/* Reduce gap between hero trust bar and testimonials */
.section-hero {
  padding-bottom: 40px !important;
}

.section-testimonials {
  padding-top: 40px !important;
}


/* Promo note under hero CTA */
.hero-promo-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.hero-promo-note strong {
  color: #f97316;
  letter-spacing: 0.05em;
}

/* ============================================
   MOBILE RESPONSIVE — 768px and below
   ============================================ */
@media (max-width: 768px) {

  /* Base spacing */
  .section {
    padding: 60px 0;
  }

  .section--compact {
    padding: 40px 0;
  }

  /* Hero — move CTAs to the very top on mobile */
  .section-hero {
    padding: 60px 0 40px !important;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-headline .text-serif {
    font-size: 32px !important;
  }

  .hero-subheadline {
    font-size: 15px;
    padding: 0 4px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-content .eyebrow {
    order: 1;
  }

  .hero-content h1 {
    order: 2;
  }

  .hero-content .hero-subheadline {
    order: 3;
  }

  .hero-content .hero-ctas {
    order: 4;
    margin-bottom: var(--space-md);
  }

  .hero-content .hero-promo-note {
    order: 5;
  }

  .hero-content .results-columns {
    order: 5;
  }

  .hero-content .trust-bar {
    order: 6;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Hide the second Telegram button (daily signal section) on mobile */
  .section-daily .text-center {
    display: none;
  }

  /* Results tables (hero) */
  .results-columns {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .results-table td {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* Trust bar */
  .trust-bar__logos {
    gap: var(--space-md);
  }

  .trust-bar__logos img {
    height: 18px;
  }

  /* Testimonials */
  .testimonial-cards-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  /* Daily signal */
  .daily-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Signal preview */
  .signal-preview__label {
    font-size: 11px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .stat-card__number {
    font-size: 36px;
  }

  /* How it works */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .steps-grid::before {
    display: none;
  }

  /* Button groups */
  .btn-group-center {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-telegram {
    min-width: unset;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .text-center {
    justify-content: center;
  }

  /* FAQ */
  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }

  /* Final CTA */
  .final-cta__headline {
    font-size: 28px;
  }

  .section-final-cta .final-cta__content .btn {
    width: 100%;
    max-width: 320px;
    margin: 6px auto;
    display: flex;
    justify-content: center;
  }

  .final-cta__trust {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  /* Performance description */
  .performance-description {
    font-size: 15px;
    padding: 0 4px;
  }
}

/* ============================================
   MOBILE RESPONSIVE — 480px and below
   ============================================ */
@media (max-width: 480px) {
  .section-hero {
    padding: 60px 0 32px !important;
  }

  .hero-headline {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-headline .text-serif {
    font-size: 26px !important;
  }

  .hero-subheadline {
    font-size: 14px;
  }

  /* Full-width buttons on small screens */
  .btn-telegram,
  .btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    padding: 15px 20px !important;
    font-size: 15px !important;
    white-space: normal !important;
    text-align: center !important;
    border-radius: 10px !important;
  }

  .btn-group-center {
    flex-direction: column;
    width: 100%;
    padding: 0 4px;
  }

  /* Chat cards */
  .testimonial-cards-grid {
    max-width: 100%;
  }

  .chat-ui {
    height: 420px;
  }

  /* Results table — tighter */
  .results-table td {
    font-size: 11px;
    padding: 8px 10px;
  }

  .results-table__pnl {
    font-size: 13px;
  }

  /* Stat cards */
  .stat-card {
    padding: 24px 20px;
  }

  .stat-card__number {
    font-size: 40px;
  }

  .stat-card__label {
    font-size: 13px;
  }

  .stat-card__sublabel {
    font-size: 12px;
  }

  /* Step cards */
  .step-card {
    padding: 20px 16px;
    text-align: left;
  }

  /* Signal preview */
  .signal-preview {
    margin-top: 24px;
  }

  /* Performance description */
  .performance-description {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Final CTA */
  .final-cta__headline {
    font-size: 24px;
  }

  .final-cta__sub {
    font-size: 15px;
  }

  /* Trust bar logos */
  .trust-bar__logos img {
    height: 16px;
  }

  .trust-bar__logos {
    gap: 16px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 17px;
  }
}