/* FieldForge — Global Stylesheet */
/* Brand: Navy #0B1F2A | Orange #FF5A1F | Font: Inter */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --navy:       #0B1F2A;   /* brand dark — headings + dark bands */
  --navy-mid:   #122333;
  --navy-light: #eef2f6;   /* light grey (table headers, tints) */
  --orange:     #FF5A1F;
  --orange-hover: #e84d15;
  --steel:      #4A90B8;
  --text:       #1a2b38;   /* primary text — dark on white */
  --text-muted: #475569;   /* secondary text */
  --text-dim:   #64748b;   /* tertiary text */
  --border:     #e6eaf0;   /* light hairline */
  --card-bg:    #ffffff;   /* cards on white */
  --white:      #ffffff;
  --green:      #16a34a;
  --disp:       'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 8px 30px rgba(11,31,42,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--disp); letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; }
p  { color: var(--text-muted); }

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

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  border: none; transition: all 0.18s ease; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,90,31,0.35); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex; align-items: center;
}
.navbar-logo img { height: 40px; width: auto; display: block; }
.navbar-logo span { color: var(--orange); }
.navbar-links {
  display: flex; gap: 32px;
}
.navbar-links a {
  font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  transition: color 0.15s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--navy); }
.navbar-cta { display: flex; gap: 12px; align-items: center; }

/* Mobile nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.2s;
}
.mobile-menu {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 32px 24px; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.2rem; font-weight: 700; color: var(--text); padding: 8px 0; border-bottom: 1px solid var(--border); }

/* ── HERO ── */
.hero {
  background: radial-gradient(1100px 560px at 50% -8%, #fff4ee 0%, rgba(255,244,238,0) 62%), var(--white);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,90,31,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,90,31,0.1); border: 1px solid rgba(255,90,31,0.25);
  color: var(--orange); font-size: 0.8rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; }
.hero p  { font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-badges {
  display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-dim);
}
.trust-badge::before { content: ''; }
.trusted-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 24px; margin-bottom: 4px;
}
.trusted-icons { font-size: 1.3rem; letter-spacing: 4px; }
.trusted-label { font-size: 0.85rem; color: var(--text-dim); font-weight: 600; }

/* ── GETTING STARTED BANNER ── */
.getting-started {
  background: var(--orange);
  padding: 56px 0 0;
}
.getting-started > .container > h2 {
  color: white; margin-bottom: 10px;
  font-size: 2.2rem; font-weight: 900;
  text-transform: uppercase; line-height: 1.1;
}
.getting-started > .container > p {
  color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem;
}
.gs-steps {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px;
}
.gs-step {
  background: rgba(0,0,0,0.15); border-radius: 14px;
  padding: 20px; display: flex; align-items: center; gap: 18px;
}
.gs-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; flex-shrink: 0;
}
.gs-step-label {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6); margin-bottom: 3px;
}
.gs-step h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.gs-step p  { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin: 0; }
.gs-cta-bar {
  background: #fdf0e6; border-radius: 16px 16px 0 0;
  padding: 24px 20px; text-align: center;
}
.gs-cta-bar p { color: #666; font-size: 0.875rem; margin-bottom: 14px; }
.gs-cta-bar p strong { color: #333; }
.btn-dark-cta {
  background: #c44a0e; color: white; font-weight: 800;
  font-size: 0.875rem; letter-spacing: 0.5px;
  display: block; text-align: center;
  padding: 15px 24px; border-radius: 10px; width: 100%;
}
.btn-dark-cta:hover { background: #a83b09; transform: translateY(-1px); }

/* Platform badges (iPhone / Android / Telegram) */
.platform-badges {
  display: flex; justify-content: center; align-items: center;
  gap: 10px; margin-top: 16px; flex-wrap: wrap;
}
.plat-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #1a1a1a; color: #fff;
  padding: 6px 13px; border-radius: 99px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2px;
}
.plat-badge-tg { background: #229ED9; }

/* ── Testimonial Carousel ── */
.tslide-section {
  background: #0B1F2A;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.tslide-section::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 200px;
  line-height: 1;
  color: rgba(255,90,31,0.08);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.tslide-header {
  text-align: center;
  margin-bottom: 36px;
}
.tslide-wrap {
  position: relative;
}
.tslide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tslide.active {
  display: flex;
  animation: tslideFadeIn 0.5s ease;
}
@keyframes tslideFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tslide-stars {
  color: #FF5A1F;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.tslide-quote {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: #f0f4f8;
  line-height: 1.7;
  font-style: italic;
  max-width: 620px;
  margin: 0 auto 24px;
}
.tslide-author {
  font-size: 0.95rem;
  color: #8899aa;
  margin-bottom: 10px;
}
.tslide-author strong {
  color: #ffffff;
  font-weight: 700;
}
.tslide-loc {
  color: #6b7c8d;
  font-size: 0.88rem;
}
.tslide-trade {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 4px;
  text-transform: uppercase;
}
.tslide-trade.hvac       { background: rgba(255,90,31,0.15); color: #FF7A4F; border: 1px solid rgba(255,90,31,0.3); }
.tslide-trade.plumbing   { background: rgba(56,161,239,0.15); color: #60b8f5; border: 1px solid rgba(56,161,239,0.3); }
.tslide-trade.electrical { background: rgba(250,204,21,0.15); color: #fbbf24; border: 1px solid rgba(250,204,21,0.3); }
.tslide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.tslide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.tslide-dot.active {
  background: #FF5A1F;
  transform: scale(1.3);
}
.tslide-dot:hover { background: rgba(255,255,255,0.5); }

.btn-white { background: white; color: var(--orange); font-weight: 800; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

/* ── PHONE MOCKUP ── */
.phone-wrap { display: flex; justify-content: center; align-items: center; }
.phone {
  width: 260px;
  background: #0a0a0a; border-radius: 36px;
  border: 8px solid #1a1a1a; box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  overflow: hidden; position: relative;
}
.phone-notch {
  width: 90px; height: 22px; background: #0a0a0a;
  border-radius: 0 0 14px 14px; margin: 0 auto;
  position: relative; z-index: 2;
}
.phone-screen {
  background: #0f1923; padding: 12px;
  min-height: 380px;
}
.tg-header {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 10px; border-bottom: 1px solid #1e293b; margin-bottom: 10px;
}
.tg-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
}
.tg-name { font-size: 11px; font-weight: 700; color: var(--text); }
.tg-status { font-size: 9px; color: var(--text-dim); }
.chat-bubble {
  max-width: 85%; margin-bottom: 8px;
  padding: 8px 10px; border-radius: 10px 10px 10px 2px;
  font-size: 10px; color: var(--text); background: #1e293b;
  position: relative;
}
.chat-bubble.sent {
  margin-left: auto;
  background: rgba(255,90,31,0.2); border-radius: 10px 10px 2px 10px;
  color: #ffd0b5;
}
.chat-time { font-size: 8px; color: var(--text-dim); margin-top: 2px; text-align: right; }
.waveform { color: var(--orange); letter-spacing: -2px; font-size: 12px; }

/* Animation frames */
.frame { display: none; }
.frame.active { display: block; }

/* ── SECTIONS ── */
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub { max-width: 560px; margin: 0 auto; text-align: center; }

/* ── CARDS ── */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--orange); transform: translateY(-2px); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.875rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,90,31,0.15); border: 2px solid var(--orange);
  color: var(--orange); font-weight: 900; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.875rem; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 1.5rem; padding-top: 16px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; align-items: stretch;
}
.plan-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px;
  display: flex; flex-direction: column;
}
.plan-card.featured {
  border: 2px solid var(--orange);
  background: #fff7f3;
  box-shadow: 0 12px 34px rgba(255,90,31,0.14);
  position: relative;
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 0.7rem; font-weight: 800; padding: 4px 12px;
  border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
}
.plan-name { font-size: 0.875rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-price { font-family: var(--disp); font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-price span { font-size: 0.875rem; color: var(--text-dim); font-weight: 400; }
.plan-tagline { font-size: 0.8rem; color: var(--text-dim); margin: 8px 0 20px; min-height: 2.5rem; }
.plan-features { flex: 1; margin-bottom: 24px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted); padding: 6px 0;
  border-bottom: 1px solid #eef2f6;
  min-height: 3.2rem;
}
.plan-feature:last-child { border-bottom: none; }
.plan-feature .check { color: var(--green); flex-shrink: 0; width: 1.2em; text-align: center; }
.plan-feature .cross { color: var(--text-dim); flex-shrink: 0; width: 1.2em; text-align: center; }
.plan-cta { display: block; text-align: center; }

/* ── PRICING COMPARISON MATRIX (matches homepage) ── */
.ptab-wrap { overflow-x: auto; }
.ptab { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.ptab th, .ptab td { padding: 15px 12px; text-align: center; border-bottom: 1px solid var(--border); font-size: 0.95rem; vertical-align: middle; }
.ptab thead th { vertical-align: bottom; position: relative; padding-top: 26px; }
.ptab td:first-child, .ptab th:first-child { text-align: left; color: var(--navy); font-weight: 600; width: 30%; }
.ptab .pn { font-family: var(--disp); font-weight: 700; font-size: 1.02rem; color: var(--navy); }
.ptab .pp { font-family: var(--disp); font-weight: 700; font-size: 1.55rem; color: var(--navy); margin-top: 2px; line-height: 1; }
.ptab .pp small { font-size: 0.7rem; color: var(--text-dim); font-weight: 600; }
.ptab .feat { background: rgba(255,90,31,0.06); }
.ptab thead th.feat { border-top: 3px solid var(--orange); padding-top: 34px; }
.ptab .pbadge { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: var(--disp); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 10px; border-radius: 99px; white-space: nowrap; }
.ptab .yes { color: var(--green); font-weight: 800; }
.ptab .no { color: #cbd5e1; font-weight: 800; }
.ptab .pcta td { border-bottom: none; padding-top: 18px; padding-bottom: 20px; }
.ptab .btn-sm { padding: 9px 16px !important; font-size: 0.85rem !important; width: 100%; }

/* Shopping-around comparison card */
.vs-card { background: #c6d0da; border: 1px solid var(--border); border-radius: 16px; padding: 28px 32px; margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.vs-card .vt { font-family: var(--disp); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.vs-card .vs-sub { color: var(--text-dim); font-size: 0.9rem; margin-top: 2px; }
.vs-card .vs-links { display: flex; gap: 10px; flex-wrap: wrap; }
.vs-card .vs-links a { background: #fff; border: 1px solid var(--border); color: var(--navy); font-weight: 700; font-size: 0.9rem; padding: 10px 18px; border-radius: 10px; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.vs-card .vs-links a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── FAQ ACCORDION ── */
.faq-search {
  width: 100%; padding: 14px 18px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: inherit; font-size: 0.95rem; margin-bottom: 32px;
  outline: none; transition: border-color 0.2s;
}
.faq-search:focus { border-color: var(--orange); }
.faq-search::placeholder { color: var(--text-dim); }

.faq-category { background: #f5f7fa; border: 1px solid var(--border); border-radius: 16px; padding: 8px 26px 16px; margin-bottom: 20px; }
.faq-category-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px; padding: 16px 0 8px;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 16px 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; color: var(--text); font-family: inherit;
  font-size: 0.95rem; font-weight: 600;
}
.faq-question:hover { color: var(--orange); }
.faq-chevron { color: var(--text-dim); font-size: 1.2rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 0 16px; font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.hidden { display: none; }

code {
  background: rgba(255,90,31,0.12); color: var(--orange);
  padding: 2px 8px; border-radius: 4px; font-size: 0.9em;
  font-family: 'Courier New', monospace;
}

/* ── COMMAND TABLE ── */
.cmd-table { width: 100%; border-collapse: collapse; }
.cmd-table th {
  background: var(--navy-light); padding: 10px 14px;
  font-size: 0.8rem; color: var(--text-muted); text-align: left;
  border-bottom: 1px solid var(--border); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.cmd-table td {
  padding: 12px 14px; font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted); vertical-align: middle;
}
.cmd-table tr:last-child td { border-bottom: none; }
.cmd-table tr:hover td { background: rgba(255,255,255,0.02); }
.cmd-table td:first-child { white-space: nowrap; }
.tag {
  font-size: 0.7rem; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; white-space: nowrap;
}
.tag-all    { background: rgba(34,197,94,0.15);  color: #4ade80; }
.tag-owner  { background: rgba(96,165,250,0.15); color: #60a5fa; }
.tag-plan   { background: rgba(255,90,31,0.12);  color: var(--orange); font-size: 0.65rem; }

/* ── SUPPORT ── */
.support-tip {
  background: rgba(255,90,31,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin-bottom: 40px;
  font-size: 0.9rem; color: var(--text-muted);
}
.support-tip strong { color: var(--text); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%; padding: 12px 14px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-family: inherit; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success, .form-error { margin-top: 12px; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; }
.form-success { background: #dcfce7; color: #166534; }
.form-error { background: #fee2e2; color: #991b1b; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.support-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.support-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  cursor: pointer; text-align: center; transition: all 0.2s;
}
.support-card:hover, .support-card.active { border-color: var(--orange); }
.support-card.active { background: rgba(255,90,31,0.08); }
.support-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.support-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.support-card p  { font-size: 0.78rem; color: var(--text-dim); }
.form-panel { display: none; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-panel.active { display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #0B1F2A 0%, #122333 100%);
  text-align: center; padding: 80px 0;
}
.cta-banner h2 { margin-bottom: 16px; color: #fff; }
.cta-banner p  { max-width: 480px; margin: 0 auto 32px; color: #9fb2bd; }
/* Light-theme variants — used on how-it-works (white) and pricing (grey) */
.cta-banner.cta-white { background: #fff; padding: 48px 0; }
.cta-banner.cta-white h2 { color: var(--navy); }
.cta-banner.cta-white p  { color: var(--text-muted); margin-bottom: 24px; }
.cta-banner.cta-grey { background: var(--navy-light); padding: 48px 0; }
.cta-banner.cta-grey h2 { color: var(--navy); }
.cta-banner.cta-grey p  { color: var(--text-muted); margin-bottom: 24px; }

/* ── FOOTER ── */
.footer {
  background: #070f16; border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 40px; width: auto; display: block; opacity: 0.9; }
.footer-logo span { color: var(--orange); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: #c8d5dd; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-legal { color: #6b7f8b; }
.footer-legal { font-size: 0.78rem; color: var(--text-dim); }

/* ── DARK SECTION ── */
.section-dark { background: #f0f5fa; }
.section-darker { background: #080f15; }

/* Text & headings within light section-dark */
.section-dark h2 { color: var(--navy); }
.section-dark > .container p,
.section-dark .section-label { color: var(--orange); }
.section-dark > .container > div > p,
.section-dark > .container > p { color: #475569; }

/* Cards */
.section-dark .card { background: #fff; border-color: #dde5ed; }
.section-dark .card h3 { color: var(--navy); }
.section-dark .card h4 { color: var(--navy); }
.section-dark .card p { color: #475569; }
.section-dark .card code { background: #fff0e8; color: #993c1d; }

/* Pricing cards */
.section-dark .plan-card { background: #fff; border-color: #dde5ed; }
.section-dark .plan-card.featured { background: #fff7f3; border: 2px solid var(--orange); }
.section-dark .plan-name { color: #64748b; }
.section-dark .plan-price { color: var(--navy); }
.section-dark .plan-price span { color: #64748b; }
.section-dark .plan-tagline { color: #64748b; }
.section-dark .plan-feature { color: #475569; border-bottom-color: #e8eef4; }
.section-dark .plan-feature .check { color: var(--green); }
.section-dark .plan-feature .cross { color: #94a3b8; }
.section-dark .plan-card.featured .plan-feature .check { color: var(--green); }
.section-dark .btn-ghost { color: var(--navy); border-color: #b0c0cc; }
.section-dark .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* FAQ items */
.section-dark .faq-item { border-bottom-color: #dde5ed; }
.section-dark .faq-question { color: var(--navy); }
.section-dark .faq-answer { color: #475569; }
.section-dark .faq-chevron { color: #94a3b8; }

/* Lead form */
.section-dark .lp-lead-input { background: #fff; color: var(--navy); border-color: #c8d6e0; }
.section-dark .lp-lead-input::placeholder { color: #94a3b8; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── LIGHT NAVBAR (photo hero pages) ── */
.navbar-light {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.navbar-light .navbar-links a { color: #475569; }
.navbar-light .navbar-links a:hover,
.navbar-light .navbar-links a.active { color: var(--navy); }
.navbar-light .hamburger span { background: var(--navy); }

/* ── HERO PHOTO (FastVoice-style, full bleed bg) ── */
.hero-photo {
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: 35% center;
  position: relative;
  padding: 60px 0 0;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: visible;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.90) 38%,
    rgba(255,255,255,0.35) 62%,
    rgba(255,255,255,0) 80%);
}
.hero-photo > .container {
  position: relative; z-index: 1; width: 100%;
}
.hero-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: center;
}
.hero-photo h1 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-photo-sub-bold {
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.hero-photo-sub-reg {
  font-size: 1rem; color: #334155;
  margin-bottom: 32px; max-width: 440px; line-height: 1.6;
}
.hero-photo .hero-ctas { margin-bottom: 20px; }

/* Trust badges */
.hero-trust { margin-top: 0; }
.hero-trust-badges {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px;
}
.htb-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; color: #0f172a;
}
.htb-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #22c55e;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 900; flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(34,197,94,0.35);
}

/* Trade chips + trusted row */
.hero-trade-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.trade-chip {
  display: flex; align-items: center; gap: 6px;
  background: white;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 6px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}
.trade-chip-icon { font-size: 1.05rem; line-height: 1; }
.trade-chip-label { font-size: 0.82rem; font-weight: 800; color: var(--navy); letter-spacing: 0.02em; }
.trade-trusted {
  font-size: 0.82rem; color: #475569; font-weight: 600;
  padding-left: 4px;
}
/* ── CSS IPHONE TELEGRAM MOCKUP (light theme) ── */
.iphone-wrap {
  display: flex; justify-content: flex-start; align-items: flex-end;
  padding-left: 16px;
  position: relative;
}
.phone-sticker-wrap {
  position: relative;
  display: inline-block;
}
/* Legacy static device — kept for reference but replaced by demo-phone-shell */
.iphone-device {
  width: 230px;
  background: #1d1d1f;
  border-radius: 44px;
  border: 7px solid #2d2d2f;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.35),
    0 8px 24px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
}
/* Animated demo phone */
.demo-phone-shell {
  width: 280px;
  height: 560px;
  border-radius: 44px;
  overflow: hidden;
  background: #111;
  box-shadow:
    0 0 0 7px #2a2a2a,
    0 0 0 9px #444,
    0 40px 80px rgba(0,0,0,0.5),
    0 8px 24px rgba(0,0,0,0.3);
  flex-shrink: 0;
  position: relative;
}
.demo-iframe {
  width: 280px;
  height: 560px;
  border: none;
  display: block;
  pointer-events: none;
  background: transparent;
}
.iphone-notch {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #1d1d1f;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.tgl-screen {
  background: #efeff4;
  padding-top: 26px;
  min-height: 420px;
}
.tgl-header {
  background: #ffffff;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
}
.tgl-back { color: #007AFF; font-size: 14px; font-weight: 400; line-height: 1; }
.tgl-avatar-sm {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white; flex-shrink: 0;
}
.tgl-header-info { flex: 1; }
.tgl-header-name { font-size: 12px; font-weight: 700; color: #1a1a1a; }
.tgl-header-status { font-size: 9px; color: #4CAF50; font-weight: 600; }
.tgl-body {
  padding: 8px 8px 12px;
  display: flex; flex-direction: column; gap: 5px;
}
.tgl-date-sep {
  text-align: center; font-size: 9px; color: #8696a0;
  background: rgba(0,0,0,0.05); border-radius: 8px;
  padding: 3px 10px; align-self: center; margin: 3px 0;
}
.tgl-in {
  background: #ffffff;
  border-radius: 12px 12px 12px 3px;
  padding: 7px 10px;
  max-width: 82%;
  font-size: 10px; color: #1a1a1a; line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tgl-out {
  background: #d9fdd3;
  border-radius: 12px 12px 3px 12px;
  padding: 7px 10px;
  max-width: 82%;
  margin-left: auto;
  font-size: 10px; color: #1a1a1a; line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tgl-voice {
  background: #d9fdd3;
  border-radius: 12px 12px 3px 12px;
  padding: 8px 10px;
  max-width: 82%;
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tgl-play {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: white; flex-shrink: 0;
}
.tgl-wave { font-size: 10px; color: #4a7a5a; letter-spacing: -1px; line-height: 1; }
.tgl-dur  { font-size: 9px; color: #667781; }
.tgl-meta { font-size: 9px; color: #8696a0; margin-top: 2px; }
.tgl-paid {
  background: #e8f8f0;
  border-radius: 12px 12px 12px 3px;
  padding: 7px 10px;
  max-width: 82%;
  font-size: 10px; color: #1a7a4a; line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  margin-right: 8px;
}
.lang-sep { color: rgba(255,255,255,0.25); font-size: 0.75rem; line-height: 1; }
.navbar-light .lang-sep { color: rgba(0,0,0,0.2); }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  padding: 3px 8px; border-radius: 4px;
  cursor: pointer; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; transition: all 0.18s;
  font-family: inherit; line-height: 1.4;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.5); color: white; }
.lang-btn.active { background: var(--orange); border-color: var(--orange); color: white; }
.navbar-light .lang-btn { border-color: rgba(0,0,0,0.15); color: rgba(0,0,0,0.45); }
.navbar-light .lang-btn:hover { border-color: rgba(0,0,0,0.35); color: var(--navy); }
.navbar-light .lang-btn.active { background: var(--orange); border-color: var(--orange); color: white; }
.mobile-lang { display: flex; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-lang .lang-btn { border-color: var(--border); color: var(--text-muted); padding: 6px 14px; font-size: 0.8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }
  .hero-photo-grid { grid-template-columns: 1fr; gap: 0; align-items: flex-start; }
  .hero-photo { padding: 64px 0 0; min-height: auto; }
  .iphone-wrap { display: flex; justify-content: center; margin-top: 32px; }
  .iphone-device { width: 210px; }
  .tgl-screen { min-height: auto; max-height: 400px; overflow: hidden; }
  .demo-phone-shell { width: 230px; height: 460px; }
  .demo-iframe { width: 280px; height: 560px; transform: scale(0.821); transform-origin: top left; }
  .hero-trade-row { justify-content: center; }
  .hero-photo::before { background: rgba(255,255,255,0.90); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .getting-started > .container > h2 { font-size: 1.7rem; }
  .support-cards { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-photo { padding: 60px 0 0; min-height: auto; }
  .hero-photo h1 { text-align: center; }
  .hero-photo-sub-bold, .hero-photo-sub-reg { text-align: center; }
  .hero-photo .hero-ctas { justify-content: center; }
  .iphone-device { width: 200px; }
  .tgl-screen { max-height: 380px; }
  .demo-phone-shell { width: 240px; height: 480px; }
  .demo-iframe { width: 280px; height: 560px; transform: scale(0.857); transform-origin: top left; }
  .hero-trust-badges { align-items: flex-start; width: fit-content; margin: 0 auto; }
  .htb-item { justify-content: flex-start; }
  .hero-trade-row { justify-content: center; }
  .trade-trusted { text-align: center; width: 100%; }
}
@media (max-width: 640px) {
  .navbar-links, .navbar-cta .btn-ghost, .navbar-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .section { padding: 56px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
