/* ═══════════════════════════════════════════════════════════
   MINI CRM — LANDING PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-card:      #141414;
  --bg-card-2:    #1a1a1a;
  --border:       rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 90, 27, 0.35);

  --accent:       #ff5a1b;
  --accent-dim:   rgba(255, 90, 27, 0.15);
  --accent-glow:  rgba(255, 90, 27, 0.4);
  --peach:        #fbc2ac;
  --peach-dim:    rgba(251, 194, 172, 0.6);

  --white:        #ffffff;
  --muted:        #666666;
  --muted-2:      #444444;

  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--peach);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 50%, var(--peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 90, 27, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-sub {
  margin-top: 16px;
  font-size: 18px;
  color: var(--peach-dim);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn--sm {
  font-size: 14px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
}

.btn--lg {
  font-size: 17px;
  padding: 18px 36px;
  background: var(--accent);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border-hover);
  color: var(--peach);
  font-size: 15px;
  padding: 13px 28px;
}

.btn--full { width: 100%; justify-content: center; }

.btn--glow {
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn--sm:hover,
.btn--lg:hover {
  background: #ff6f35;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 24px var(--accent-glow); }
  50%       { box-shadow: 0 0 48px rgba(255, 90, 27, 0.7); }
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
}

.nav__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation-duration: 15s;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: -150px;
  background: radial-gradient(circle, rgba(251, 194, 172, 0.5) 0%, transparent 70%);
  animation-duration: 10s;
  animation-direction: alternate-reverse;
}

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--peach);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: badge-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--peach-dim);
  margin-bottom: 40px;
}

.hero__left { text-align: left; }

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero__note {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ─── PHONE MOCKUP ────────────────────────────────────────── */
.hero__right {
  display: flex;
  justify-content: center;
}

.phone-wrap {
  position: relative;
  width: 280px;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255, 90, 27, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: phone-glow-pulse 4s ease-in-out infinite;
}

@keyframes phone-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

.phone-mockup {
  position: relative;
  background: #1a1a1a;
  border-radius: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 90, 27, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: phone-float 6s ease-in-out infinite;
}

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

.phone-notch {
  width: 80px;
  height: 8px;
  background: #0a0a0a;
  border-radius: 100px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #0d0d0d;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
}

.tg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #141414;
  border-bottom: 1px solid var(--border);
}

.tg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.tg-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tg-avatar-fallback { font-size: 18px; display: none; }

.tg-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.tg-status {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.tg-body { padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; }

.tg-today {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  padding: 0 4px;
  margin-bottom: 4px;
}

.tg-today-count {
  color: var(--accent);
  font-weight: 600;
}

.tg-appointment {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  transition: var(--transition);
}

.tg-appointment--active {
  border-color: rgba(255, 90, 27, 0.3);
  background: rgba(255, 90, 27, 0.06);
}

.tg-appointment--done { opacity: 0.5; }

.tg-apt-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  min-width: 36px;
}

.tg-apt-info { flex: 1; }

.tg-apt-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.tg-apt-service {
  font-size: 11px;
  color: var(--muted);
}

.tg-apt-status {
  font-size: 14px;
  width: 24px;
  text-align: center;
}

.tg-apt-status.done  { color: var(--muted); }
.tg-apt-status.active { color: var(--accent); }
.tg-apt-status.pending { color: var(--peach); }

/* ─── FLOATING BADGES ────────────────────────────────────── */
.phone-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.phone-float-badge--1 {
  top: 60px;
  left: -110px;
}

.phone-float-badge--2 {
  bottom: 80px;
  right: -100px;
}

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

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

.float-up       { animation: float-up 4s ease-in-out infinite; }
.float-up-delay { animation: float-up 4s ease-in-out 2s infinite; }

/* ─── SCROLL HINT ─────────────────────────────────────────── */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50%       { transform: rotate(45deg) translate(4px, 4px); opacity: 0.5; }
}

/* ─── FOR WHOM ────────────────────────────────────────────── */
.for-whom { background: var(--bg); }

.professions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.profession-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--peach);
  transition: var(--transition);
  cursor: default;
  min-width: 120px;
}

.profession-icon {
  font-size: 28px;
  display: block;
}

.profession-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 90, 27, 0.1);
}

.profession-card--any {
  border-style: dashed;
  border-color: var(--muted-2);
  color: var(--muted);
}

.profession-card--any:hover {
  border-color: var(--border-hover);
  color: var(--peach);
}

/* ─── PAIN ────────────────────────────────────────────────── */
.pain { background: var(--bg-2); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 27, 0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}

.pain-card:hover::before { opacity: 1; }
.pain-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.pain-icon-wrap {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--peach-dim);
}

.pain-answer {
  background: linear-gradient(135deg, rgba(255, 90, 27, 0.12), rgba(251, 194, 172, 0.06));
  border: 1px solid rgba(255, 90, 27, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.pain-answer__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pain-answer__logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 20px;
}

.pain-answer__fallback { font-size: 36px; display: none; }

.pain-answer__inner div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pain-answer__inner strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.pain-answer__inner span {
  font-size: 15px;
  color: var(--peach-dim);
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how { background: var(--bg); }

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

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 90, 27, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.step:hover::before { opacity: 1; }
.step:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
  padding-top: 55px;
}

.step-connector__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 90, 27, 0.3) 100%);
  position: relative;
}

.step-connector__line::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.step__num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 90, 27, 0.15);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.step__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--peach-dim);
}

.step__content strong { color: var(--accent); font-weight: 600; }

/* ─── FEATURES ────────────────────────────────────────────── */
.features { background: var(--bg-2); }

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.feature-card:hover::after { opacity: 1; }

.feature-card--highlight {
  background: linear-gradient(135deg, rgba(255, 90, 27, 0.1), rgba(251, 194, 172, 0.05));
  border-color: rgba(255, 90, 27, 0.2);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--peach-dim);
}

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing { background: var(--bg); }

.pricing-trial {
  margin-bottom: 48px;
}

.trial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 90, 27, 0.1), rgba(251, 194, 172, 0.05));
  border: 1px solid rgba(255, 90, 27, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
}

.trial-emoji { font-size: 36px; flex-shrink: 0; }

.trial-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trial-text strong { font-size: 18px; font-weight: 700; color: var(--white); }
.trial-text span   { font-size: 14px; color: var(--peach-dim); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.pricing-card--best {
  background: linear-gradient(160deg, rgba(255, 90, 27, 0.12), rgba(255, 90, 27, 0.04));
  border-color: rgba(255, 90, 27, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 90, 27, 0.1), 0 24px 64px rgba(255, 90, 27, 0.15);
  transform: translateY(-8px);
}

.pricing-card--best:hover { transform: translateY(-12px); }

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
}

.pricing-period {
  font-size: 15px;
  font-weight: 600;
  color: var(--peach-dim);
}

.pricing-original {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-cur {
  font-size: 20px;
  font-weight: 700;
  color: var(--peach-dim);
}

.pricing-per {
  font-size: 13px;
  color: var(--muted);
}

.pricing-save {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

.pricing-save--big {
  font-size: 13px;
  padding: 5px 12px;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--bg-2); }

.faq__container { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: var(--transition);
}

.faq-q:hover { color: var(--peach); }

.faq-icon {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
  padding: 0 28px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--peach-dim);
}

.faq-item.open .faq-a { max-height: 200px; }

/* ─── FINAL CTA ───────────────────────────────────────────── */
.final-cta { background: var(--bg); }

.final-cta__card {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 90, 27, 0.1), rgba(255, 90, 27, 0.03));
  border: 1px solid rgba(255, 90, 27, 0.2);
  border-radius: 32px;
  padding: 80px 40px;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 90, 27, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 40px;
  margin: 0 auto 36px;
}

.final-cta__logo-fallback {
  font-size: 140px;
  display: none;
  margin-bottom: 36px;
  line-height: 1;
}

.final-cta__card h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.final-cta__card p {
  font-size: 18px;
  color: var(--peach-dim);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__tg {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
}

.footer__tg:hover { color: var(--accent); }

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--best { transform: none; }
  .pricing-card--best:hover { transform: translateY(-4px); }
  .steps { flex-direction: column; gap: 0; }
  .step-connector { width: auto; height: 40px; padding: 0; padding-left: 32px; }
  .step-connector__line { width: 2px; height: 100%; background: linear-gradient(180deg, var(--accent), rgba(255, 90, 27, 0.3)); }
  .step-connector__line::after {
    top: auto;
    bottom: -6px;
    right: -4px;
    border-top: none;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: rotate(45deg);
  }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero__cta { align-items: center; }
  .hero__left .reveal { text-align: center; }
  .hero__right { order: -1; }
  .phone-float-badge--1 { left: -80px; }
  .phone-float-badge--2 { right: -80px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 60px; }
  .hero__title { font-size: 36px; }
  .hero__sub { font-size: 16px; }
  .btn--lg { font-size: 15px; padding: 16px 28px; }
  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .trial-card { flex-wrap: wrap; text-align: center; justify-content: center; }
  .phone-float-badge { display: none; }
  .phone-wrap { width: 240px; }
  .section-title { font-size: 28px; }
  .pain-answer__inner { flex-direction: column; text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; gap: 16px; }
  .faq__container { max-width: 100%; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .professions { gap: 8px; }
  .profession-card { min-width: 100px; padding: 16px 18px; font-size: 13px; }
}
