/* =====================================================
   SALESFLOW CRM LANDING PAGE
   Copy this file as: public/css/landing.css
   ===================================================== */

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

:root {
  --bg: #f4f3f4;
  --light-bg: #f8f2fb;
  --dark: #0f2330;
  --dark-2: #142938;
  --text: #24242b;
  --muted: #555466;
  --pink: #cf46bb;
  --pink-2: #ed7cb1;
  --purple: #9a6cf2;
  --blue: #2864ed;
  --green: #06BC79;
  --red: #c82222;
  --white: #ffffff;
  --border: rgba(20, 35, 48, 0.12);
  --shadow: 0 14px 35px rgba(15, 35, 48, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

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

/* ================= DYNAMCI COLOR CLASS ================= */

.bg-green {
  background-color: var(--green) !important;
}

.text-green {
  color: var(--green) !important;
}

.bg-purple {
  background-color: var(--purple) !important;
}

.text-purple {
  color: var(--purple) !important;
}

.bg-red {
  background-color: var(--red) !important;
}

.text-red {
  color: var(--red) !important;
}

/* ================= HEADER ================= */

.site-header {
  height: 66px;
  width: 100%;
  padding: 0 86px;
  background: #fbf6ff;
  border-bottom: 1px solid #d9d8dc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #0d1117;
}

.brand-mark {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8b4af5, #d748c4);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.brand-mark span {
  width: 3px;
  background: #fff;
  border-radius: 5px;
  display: block;
}

.brand-mark span:nth-child(1) {
  height: 7px;
  opacity: .75;
}

.brand-mark span:nth-child(2) {
  height: 11px;
  opacity: .9;
}

.brand-mark span:nth-child(3) {
  height: 15px;
}

.brand-text {
  font-size: 16px;
  letter-spacing: -0.4px;
}

.brand-text b {
  color: var(--pink);
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .35px;
  color: #0c0d12;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.top-btn {
  min-width: 105px;
  height: 36px;
  padding: 0 22px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.top-btn.dark {
  background: #102334;
  color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .23);
}

.menu-btn,
.mobile-nav {
  display: none;
}

/* ================= HERO ================= */

.hero-section {
  min-height: auto;
  padding: 120px 40px 80px;
  position: relative;
  background: #f1f1f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 18px;
  border: 1px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(44px, 5.2vw, 66px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: #25262a;
  margin: 0;
   text-align: center;
}

.hero-title span {
  color: #25262a;
  white-space: nowrap;
}

.hero-title .highlight {
  font-weight: 900;
  background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 20%, #b030a0 38%, #d64cc2 50%, #b030a0 62%, #1a1a1a 80%, #1a1a1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 14px;
  font-style: italic;
  color: #4e4d5d;
  font-size: 17px;
  font-weight: 500;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.main-btn {
  min-width: 160px;
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.main-btn.primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 12px 25px rgba(207, 70, 187, .22);
}

.main-btn.secondary {
  background: #fff;
  color: #1f2027;
  border: 1px solid #c8cad8;
}

.stats-pill {
  width: min(1140px, calc(100% - 80px));
  min-height: 122px;
  padding: 24px 80px;
  border-radius: 70px;
  background: #102636;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 42px auto 0;
  box-shadow: 0 15px 25px rgba(0, 0, 0, .08);
}

.stat-box {
  text-align: center;
}

.stat-value {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-value span {
  color: var(--pink);
  font-size: 20px;
}

.stat-box p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

/* ================= COMMON SECTION TITLES ================= */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 900;
  color: #23232b;
}

.section-title h2 span {
  color: var(--pink);
}

.section-title p {
  margin-top: 12px;
  color: #535263;
  font-size: 16px;
}

.section-title.light h2,
.section-title.light p {
  color: #fff;
}

.section-title.light p {
  opacity: .86;
}

/* ================= MULTI CHANNEL ================= */

.dark-section {
  background: #102636;
  padding: 105px 40px 64px;
}

.channel-card {
  max-width: 1140px;
  min-height: 395px;
  margin: 54px auto 0;
  padding: 64px 76px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 40px;
  /* background: rgba(255, 255, 255, .03); */
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 70px;
  position: sticky;
  top: 20vh;
  background-color: #102636;
}

.round-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #121212;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 25px;
}

.channel-left h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: -.6px;
  margin-bottom: 10px;
}

.italic-text {
  color: rgba(255, 255, 255, .82);
  font-style: italic;
  letter-spacing: 2.2px;
  line-height: 1.45;
  max-width: 465px;
}

.check-list {
  margin-top: 24px;
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.check-list li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  border: 1px solid var(--pink);
  color: var(--pink);
  border-radius: 50%;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.call-panel {
  background: #f2f2f2;
  border-radius: 27px;
  padding: 24px 30px 28px;
  min-height: 266px;
  color: #141414;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mail-icon {
  width: 38px;
  height: 30px;
  border-radius: 4px;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
}

.panel-head h4 {
  font-size: 15px;
  font-weight: 800;
}

.panel-head span {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
}

.call-panel hr {
  border: 0;
  border-top: 1px solid #dedede;
  margin: 20px 0;
}

.call-panel p {
  font-size: 13px;
  line-height: 1.55;
  color: #222;
}

.call-panel .subject {
  font-weight: 600;
  margin-bottom: 10px;
}

.call-panel button {
  margin-top: 40px;
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  letter-spacing: .2px;
}

/* ================= PROBLEM SOLUTION ================= */

.efficiency-section {
  background: #fbf6ff;
  padding: 72px 40px 62px;
}

.problem-solution-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.common-card {
  min-height: 330px;
  border-radius: 22px;
  padding: 30px;
}

.problem-card {
  background: #fff;
  border: 1px solid #dfdde5;
}

.solution-card {
  background: linear-gradient(135deg, #a674f4 0%, #ec7cae 100%);
  color: #fff;
  box-shadow: 0 20px 32px rgba(168, 116, 244, .18);
}

.outline-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 22px;
}

.outline-icon.red {
  color: var(--red);
  border: 3px solid var(--red);
}

.outline-icon.white {
  color: #fff;
  border: 3px solid #fff;
}

.common-card h3 {
  font-size: 24px;
  margin-bottom: 17px;
}

.common-card ul {
  list-style: none;
  display: grid;
  gap: 18px;
}

.common-card li {
  font-size: 16px;
  color: #555466;
  display: flex;
  gap: 12px;
}

.problem-card li::before {
  content: "×";
  color: var(--red);
}

.solution-card li {
  color: #fff;
}

.solution-card li::before {
  content: "⌁";
  color: #fff;
}

.quote-box {
  margin-top: 31px;
  padding: 17px;
  border-radius: 15px;
  background: #fff7f7;
  font-size: 14px;
  color: #24242b;
}

.light-box {
  background: rgba(255, 255, 255, .13);
  color: #fff;
}

/* ================= ANALYTICS ================= */

.analytics-section {
  background: #102636;
  color: #fff;
  padding: 86px 40px;
}

.analytics-box {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.analytics-box h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.analytics-box p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 520px;
}

.analytics-card {
  background: #fff;
  color: #222;
  border-radius: 26px;
  padding: 32px;
}

.metric {
  margin-bottom: 24px;
}

.metric:last-child {
  margin-bottom: 0;
}

.metric span,
.metric b {
  display: inline-block;
}

.metric span {
  color: #555466;
  font-weight: 700;
}

.metric b {
  float: right;
  font-size: 22px;
}

.metric div {
  clear: both;
  width: 100%;
  height: 8px;
  background: #eceaf0;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 12px;
}

.metric i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 999px;
}

/* ================= CTA SECTION ================= */

.cta-section {
  background: #fbf6ff;
  padding: 48px 40px 32px;
}

.cta-box {
  width: min(1140px, calc(100% - 40px));
  min-height: 274px;
  margin: 0 auto;
  padding: 34px 40px;
  border-radius: 30px;
  background: linear-gradient(100deg, #171717 0%, #3a2039 42%, #ce45bc 100%);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-box h2 {
  font-size: clamp(28px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 22px;
  color: #fff;
}

.cta-box p {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 28px;
}

.cta-btn {
  min-width: 198px;
  height: 44px;
  padding: 0 30px;
  border-radius: 999px;
  background: #fff;
  color: #5a3ff0;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.cta-box span {
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}

.pricing-section {
  padding: 18px 40px 30px;
}

.pricing-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.pricing-heading {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-heading span {
  display: block;
  margin-bottom: 14px;
  color: #8b35ff;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.pricing-heading h2 {
  margin: 0;
  color: #10162b;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 900;
}

.pricing-heading p {
  width: min(520px, 100%);
  margin: 22px auto 0;
  color: #6f7588;
  font-size: 15px;
  line-height: 1.7;
}

.trial-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(990px, 100%);
  min-height: 120px;
  margin: 0 auto 72px;
  padding: 28px 38px;
  border-radius: 18px;
  background: linear-gradient(100deg, #df3df2 0%, #8f55ef 100%);
  color: #fff;
  box-shadow: 0 20px 45px rgba(124, 65, 220, .22);
}

.trial-strip h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.trial-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.trial-btn {
  min-width: 180px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  color: #8c3cf0;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(28, 21, 62, .12);
}

.pricing-table-heading {
  text-align: center;
  margin-bottom: 26px;
}

.pricing-table-heading h3 {
  margin: 0;
  color: #10162b;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
}

.pricing-table-heading p {
  margin: 12px 0 0;
  color: #6f7588;
  font-size: 15px;
}

.pricing-table-wrap {
  width: min(1060px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid #dde3ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-table th {
  height: 76px;
  padding: 0 30px;
  background: #ececec;
  color: #192032;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.pricing-table td {
  height: 86px;
  padding: 0 30px;
  color: #11182d;
  font-size: 16px;
  font-weight: 900;
}

.pricing-table td span {
  color: #6c7283;
  font-size: 10px;
  font-weight: 700;
}

.pricing-table .is-featured {
  background: #fbf5ff;
}

.pricing-table small {
  display: block;
  width: max-content;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #873cf2;
  color: #fff;
  font-size: 7px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-save {
  color: #c31b86 !important;
}

.pricing-card-panel {
  margin-top: 64px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 66px;
  color: #263043;
  font-size: 13px;
  font-weight: 800;
}

.billing-toggle button {
  width: 54px;
  height: 30px;
  padding: 3px;
  border: 1px solid #dfe4ea;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.billing-toggle button i {
  display: block;
  width: 22px;
  height: 22px;
  margin-left: auto;
  border-radius: 50%;
  background: #8b25e6;
}

.billing-toggle small {
  padding: 6px 11px;
  border-radius: 999px;
  background: #ffe7f7;
  color: #d42e9e;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 32px;
}

.plan-card {
  position: relative;
  min-height: 560px;
  padding: 46px 40px 38px;
  border: 1px solid #edf0f4;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, .04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.plan-card.featured {
  border-color: #d8c4ff;
  box-shadow: 0 28px 60px rgba(109, 72, 190, .13);
}

.popular-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 158px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 24px 0 0;
  background: linear-gradient(100deg, #db3ff0, #8e54ef);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.plan-title h3 {
  margin: 0;
  color: #151c31;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.plan-card.featured .plan-title h3 {
  color: #8b25e6;
}

.dot {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
}

.dot.green { background: #00bd1b; }
.dot.blue { background: #075dcb; }
.dot.purple { background: #a334f3; }

.plan-desc {
  min-height: 56px;
  margin: 0 0 28px;
  color: #6f7588;
  font-size: 14px;
  line-height: 1.45;
}

.plan-price {
  color: #151c31;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.plan-price span,
.plan-note {
  color: #778195;
  font-size: 12px;
  font-weight: 700;
}

.plan-note {
  margin-top: 10px;
}

.plan-saving {
  display: block;
  margin-top: 12px;
  color: #151c31;
  font-size: 14px;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 34px 0 26px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 26px;
  color: #505b70;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #00ad21;
}

.plan-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.plan-action {
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.plan-action.dark {
  background: #10182c;
}

.plan-action.gradient {
  background: linear-gradient(100deg, #d83de9, #8256ef);
  box-shadow: 0 14px 28px rgba(144, 72, 230, .3);
}

.plan-more {
  display: block;
  width: max-content;
  margin: 20px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8b25e6;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.plan-extra-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: max-height .3s ease, opacity .2s ease, margin-top .2s ease;
}

.plan-card.is-expanded .plan-extra-list {
  max-height: 720px;
  margin-top: 20px;
  opacity: 1;
}

.plan-extra-list li {
  color: #48566b;
  font-size: 13px;
  line-height: 1.25;
}

.plan-extra-list.strong-list li {
  color: #142033;
  font-weight: 800;
}

.plan-extra-list li::before {
  background: #b85af0;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: #d9c8ff;
  box-shadow: 0 34px 70px rgba(112, 72, 184, .16);
}

.plan-card:hover .plan-action {
  transform: translateY(-1px);
}

.plan-card:hover .plan-action.dark {
  box-shadow: 0 14px 28px rgba(16, 24, 44, .2);
}

.plan-card:hover .plan-action.gradient {
  box-shadow: 0 18px 34px rgba(144, 72, 230, .38);
}

.feature-compare-wrap {
  width: min(890px, 100%);
  margin: 78px auto 0;
  overflow-x: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(15, 23, 42, .08);
}

.feature-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.feature-compare-table th {
  height: 72px;
  padding: 0 26px;
  color: #162036;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.feature-compare-table th:first-child,
.feature-compare-table td:first-child {
  text-align: left;
}

.feature-compare-table td {
  height: 44px;
  padding: 0 26px;
  border-top: 1px solid #e9edf2;
  color: #27334a;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.feature-compare-table tbody tr:nth-child(even) {
  background: #fcfcfd;
}

.feature-compare-table i {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.feature-compare-table i.yes {
  background: #12a94f;
}

.feature-compare-table i.no {
  background: #f12929;
}

.feature-compare-table i.yes::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.feature-compare-table i.no::before,
.feature-compare-table i.no::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.feature-compare-table i.no::before {
  transform: rotate(45deg);
}

.feature-compare-table i.no::after {
  transform: rotate(-45deg);
}

body.modal-open {
  overflow: hidden;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 10, 20, .5);
}

.trial-modal.is-open {
  display: flex;
}

.trial-modal-card {
  position: relative;
  width: min(760px, 100%);
  padding: 48px 58px 38px;
  border-radius: 26px;
  background: #fff;
  color: #11182d;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .75),
    0 36px 100px rgba(20, 24, 42, .24),
    0 0 80px rgba(151, 57, 255, .72);
}

.trial-modal-close {
  position: absolute;
  top: 26px;
  right: 34px;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.trial-modal-pill {
  display: block;
  width: max-content;
  margin: 0 auto 34px;
  padding: 10px 22px;
  border: 1px solid #ffc2df;
  border-radius: 999px;
  color: #ed3b96;
  background: #fff6fb;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trial-modal-card h2 {
  margin: 0;
  color: #11182d;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.trial-modal-card h2 span {
  color: #b24edb;
}

.trial-modal-sub {
  margin: 20px 0 36px;
  color: #6f7c92;
  font-size: 20px;
  line-height: 1.35;
}

.trial-modal-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 42px;
  margin-bottom: 38px;
}

.trial-modal-benefits div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  color: #27334a;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 700;
}

.trial-modal-benefits i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d843b5, #8b55ef);
}

.trial-modal-benefits i::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 10px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.trial-modal-action {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(100deg, #eb4596, #8055ef);
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(149, 74, 206, .25);
}

.trial-modal-login {
  margin-top: 36px;
  padding-top: 0;
  border-top: 1px solid #e7eaf0;
  color: #617088;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.trial-modal-login a {
  color: #ec3d96;
  font-weight: 900;
}

/* ================= TEAM TRACKING SECTION ================= */

.team-section {
  background: #fbf6ff;
  padding: 0 40px 70px;
}

.team-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 432px 1fr;
  align-items: center;
  gap: 110px;
}

.dashboard-preview {
  width: 432px;
  min-height: 294px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(15, 35, 48, .08);
}

.dashboard-screen {
  width: 100%;
  min-height: 238px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #17303a, #081a20 55%, #061114 100%);
  padding: 18px 12px 14px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .32);
}

.dash-top {
  height: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-bottom: 14px;
}

.dash-top span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dash-card {
  min-height: 82px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.dash-card.large {
  min-height: 95px;
}

.chart {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 50px;
  border-radius: 8px;
}

.area-chart {
  background: linear-gradient(to top, rgba(242, 133, 43, .9), rgba(242, 133, 43, .25));
  clip-path: polygon(0 75%, 10% 35%, 22% 48%, 36% 42%, 50% 50%, 66% 44%, 82% 38%, 100% 36%, 100% 100%, 0 100%);
}

.blue-area {
  background: linear-gradient(to top, rgba(45, 153, 186, .85), rgba(45, 153, 186, .18));
  clip-path: polygon(0 25%, 14% 48%, 30% 43%, 46% 62%, 65% 55%, 82% 52%, 100% 48%, 100% 100%, 0 100%);
}

.line {
  height: 3px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: #246f82;
}

.line-one {
  width: 80%;
}

.line-two {
  width: 62%;
  background: #b76c2a;
}

.line-three {
  width: 92%;
  background: #2c9aa9;
}

.bar-row {
  height: 58px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar-row i {
  width: 14px;
  border-radius: 4px 4px 0 0;
  display: block;
  background: #2d9aba;
}

.bar-row i:nth-child(1) {
  height: 24px;
}

.bar-row i:nth-child(2) {
  height: 42px;
  background: #f2852b;
}

.bar-row i:nth-child(3) {
  height: 34px;
}

.bar-row i:nth-child(4) {
  height: 54px;
  background: #f2852b;
}

.bar-row i:nth-child(5) {
  height: 46px;
}

.team-content h2 {
  font-size: clamp(30px, 3.4vw, 36px);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -1px;
  color: #23232b;
  margin-bottom: 22px;
}

.team-content h2 span {
  background: linear-gradient(90deg, #7b3c8d 0%, #cf46bb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.team-content > p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: #555466;
  margin-bottom: 30px;
}

.team-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 22px;
}

.team-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  font-size: 16px;
  font-weight: 800;
}

.team-icon.purple {
  background: rgba(154, 108, 242, .18);
  color: #5c3be0;
}

.team-icon.pink {
  background: rgba(207, 70, 187, .14);
  color: #cf46bb;
}

.team-point h4 {
  font-size: 16px;
  color: #23232b;
  margin-bottom: 4px;
}

.team-point p {
  color: #555466;
  font-size: 14px;
  line-height: 1.45;
}

/* ================= FOOTER ================= */

.footer {
  padding: 42px 40px;
  background: #fbf6ff;
  border-top: 1px solid #d9d8dc;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  justify-content: center;
  margin-bottom: 14px;
}

.footer p {
  color: #555466;
  max-width: 620px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

.footer span:last-child {
  color: #777;
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .stats-pill {
    padding: 24px 38px;
  }

  .channel-card {
    padding: 50px;
    gap: 40px;
  }

  .team-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .dashboard-preview {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .menu-btn span {
    width: 24px;
    height: 2px;
    background: #111;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    z-index: 999;
    top: 66px;
    left: 0;
    right: 0;
    background: #fbf6ff;
    padding: 20px 28px;
    border-bottom: 1px solid #ddd;
  }

  body.menu-open .mobile-nav {
    display: grid;
    gap: 16px;
  }

  .hero-section {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 160px;
  }

  .stats-pill {
    grid-template-columns: 1fr 1fr;
    border-radius: 34px;
    bottom: -105px;
  }

  .dark-section {
    padding-top: 150px;
  }

  .channel-card,
  .problem-solution-grid,
  .analytics-box,
  .team-container {
    grid-template-columns: 1fr;
  }

  .team-container {
    gap: 42px;
  }

  .dashboard-preview {
    max-width: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 600px) {
  .site-header {
    height: 60px;
    padding: 0 18px;
  }

  .brand-text {
    font-size: 14px;
  }

  .mobile-nav {
    top: 60px;
  }

  .hero-section {
    padding: 105px 16px 210px;
  }

  .hero-section h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .hero-section h1 span {
    white-space: normal;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .main-btn {
    width: 100%;
  }

  .stats-pill {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 28px;
    bottom: -245px;
  }

  .dark-section {
    padding: 285px 16px 56px;
  }

  .channel-card {
    padding: 30px 20px;
    border-radius: 28px;
  }

  .call-panel {
    padding: 22px 18px;
  }

  .efficiency-section,
  .analytics-section,
  .cta-section,
  .team-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .common-card,
  .analytics-card {
    padding: 24px 20px;
  }

  .cta-box {
    width: 100%;
    border-radius: 24px;
    padding: 32px 20px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .pricing-container {
    width: 100%;
  }

  .pricing-heading {
    margin-bottom: 32px;
  }

  .pricing-heading h2 {
    font-size: 34px;
  }

  .trial-strip {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
    padding: 24px 22px;
  }

  .trial-btn {
    width: 100%;
  }

  .pricing-table-heading h3 {
    font-size: 28px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0 18px;
  }

  .pricing-card-panel {
    margin-top: 46px;
  }

  .billing-toggle {
    flex-wrap: wrap;
    margin-bottom: 34px;
  }

  .pricing-card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .plan-card {
    min-height: auto;
    padding: 36px 24px 30px;
  }

  .feature-compare-wrap {
    margin-top: 46px;
  }

  .feature-compare-table th,
  .feature-compare-table td {
    padding: 0 18px;
  }

  .trial-modal {
    padding: 18px;
  }

  .trial-modal-card {
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    padding: 58px 24px 34px;
    border-radius: 24px;
  }

  .trial-modal-close {
    top: 22px;
    right: 24px;
    font-size: 28px;
  }

  .trial-modal-pill {
    margin-bottom: 32px;
  }

  .trial-modal-sub {
    margin: 20px 0 34px;
    font-size: 18px;
  }

  .trial-modal-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .trial-modal-benefits div {
    grid-template-columns: 28px 1fr;
    gap: 14px;
    font-size: 16px;
  }

  .trial-modal-benefits i {
    width: 28px;
    height: 28px;
  }

  .trial-modal-benefits i::after {
    left: 8px;
    top: 9px;
  }

  .trial-modal-action {
    min-height: 58px;
    font-size: 18px;
  }

  .trial-modal-login {
    margin-top: 34px;
    font-size: 15px;
  }

  .team-section {
    padding-bottom: 50px;
  }

  .dashboard-preview {
    padding: 10px;
    border-radius: 14px;
  }

  .dashboard-screen {
    min-height: 220px;
  }

  .team-content h2 {
    font-size: 28px;
  }

  .team-content > p {
    font-size: 15px;
  }
  
}
/* =====================================================
   HOW SALESFLOW WORKS
   ===================================================== */

.how-section {
  background: #0b1f2d;
  padding: 86px 0 90px;
  overflow: hidden;
}

.how-inner {
  width: min(1144px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.how-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: 18px;
}

.how-title {
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 44px;
}

.how-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 76px;
}

.how-tab {
  width: 100%;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(148, 163, 184, 0.30);
  background: transparent;
  color: #9aa7b7;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap;
}

.how-tab:hover {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.how-tab.active {
  background: #cf46bb;
  border-color: #cf46bb;
  color: #fff;
}

.how-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  overflow: visible;
  padding: 0;
}

.how-card {
    display: none;
    min-height: 278px;
    background: #202b3a;
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 18px;
    padding: 38px 31px;
}

.how-card.show {
    display: block;
}

/* .how-card:nth-child(n + 4) {
  display: none;
} */

.how-card.active,
.how-card:hover {
  background: #202b3a;
  border-color: rgba(207, 70, 187, 0.42);
}

.how-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: background 0.25s ease;
}

.how-card-icon.pink-icon {
  background: #cf46bb;
}

.how-card-icon.dark-icon {
  background: #1e2b3c;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.how-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
}

.how-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.position-sticky {
  position: sticky;
  top: 10vh;
}

.card-1 {
  z-index: 1;
}

.card-2 {
  z-index: 2;
}

.card-3 {
  z-index: 3;
}

.card-4 {
  z-index: 4;
}


/* ================= RESPONSIVE FIXES ================= */

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .stats-pill {
    padding: 24px 38px;
  }

  .channel-card {
    padding: 50px;
    gap: 40px;
  }

  .team-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .dashboard-preview {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .menu-btn span {
    width: 24px;
    height: 2px;
    background: #111;
  }

  .mobile-nav {
    display: none;
    position: fixed;
    z-index: 999;
    top: 66px;
    left: 0;
    right: 0;
    background: #fbf6ff;
    padding: 20px 28px;
    border-bottom: 1px solid #ddd;
  }

  body.menu-open .mobile-nav {
    display: grid;
    gap: 16px;
  }

  .hero-section {
    padding: 120px 24px 70px;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .hero-title span {
    white-space: normal;
  }

  .stats-pill {
    grid-template-columns: 1fr 1fr;
    border-radius: 34px;
    width: min(680px, 100%);
    padding: 28px 24px;
  }

  .dark-section {
    padding-top: 70px;
  }

  .channel-card,
  .problem-solution-grid,
  .analytics-box,
  .team-container {
    grid-template-columns: 1fr;
  }

  .team-container {
    gap: 42px;
  }

  .dashboard-preview {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .how-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 38px;
  }

  .how-tab:last-child {
    grid-column: 1 / -1;
    width: min(260px, 100%);
    justify-self: center;
  }

  .how-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 4px 8px;
    scroll-snap-type: x mandatory;
  }

  .how-carousel::-webkit-scrollbar {
    display: none;
  }

  .how-card,
  .how-card:nth-child(n + 4) {
    display: block;
    flex: 0 0 78%;
    min-width: 250px;
    scroll-snap-align: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 60px;
    padding: 0 18px;
  }

  .brand-text {
    font-size: 14px;
  }

  .mobile-nav {
    top: 60px;
  }

  .hero-section {
    padding: 104px 16px 56px;
    min-height: auto;
  }

  .pill {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(32px, 12vw, 44px);
    line-height: 1.14;
    letter-spacing: -1px;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .main-btn {
    width: 100%;
    height: 50px;
  }

  .stats-pill {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 28px;
    padding: 28px 18px;
    gap: 22px;
    margin-top: 28px;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-box p {
    font-size: 12px;
    line-height: 1.35;
    margin-top: 6px;
  }

  .dark-section {
    padding: 70px 16px 56px;
  }

  .channel-card {
    padding: 30px 20px;
    border-radius: 28px;
  }

  .call-panel {
    padding: 22px 18px;
  }

  .efficiency-section,
  .analytics-section,
  .cta-section,
  .team-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .common-card,
  .analytics-card {
    padding: 24px 20px;
  }

  .cta-box {
    width: 100%;
    border-radius: 24px;
    padding: 32px 20px;
  }

  .cta-box p {
    font-size: 15px;
  }

  .team-section {
    padding-bottom: 50px;
  }

  .dashboard-preview {
    padding: 10px;
    border-radius: 14px;
  }

  .dashboard-screen {
    min-height: 220px;
  }

  .team-content h2 {
    font-size: 28px;
  }

  .team-content > p {
    font-size: 15px;
  }

  .how-section {
    padding: 64px 0 72px;
  }

  .how-inner {
    width: calc(100% - 32px);
  }

  .how-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .how-title {
    font-size: clamp(32px, 10vw, 48px);
    letter-spacing: -1px;
    margin-bottom: 30px;
  }

  .how-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .how-tab {
    height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }

  .how-card,
  .how-card:nth-child(n + 4) {
    flex-basis: 86%;
    min-height: 235px;
    padding: 26px 20px 30px;
  }

  .how-card h3 {
    font-size: 21px;
  }

  .how-card p {
    font-size: 15px;
  }
}

/* ================= CONNECTED INGESTION ================= */

.ingestion-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.14), rgba(255, 255, 255, 0) 42%),
    #fbf6ff;
  padding: 78px 0 64px;
  overflow: hidden;
  border-top: 5px solid #0b1f2d;
}

.ingestion-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.ingestion-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: #8b5cf6;
  margin-bottom: 26px;
}

.ingestion-title {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 500;
  letter-spacing: -2.4px;
  text-transform: uppercase;
  color: #10182e;
  line-height: 1;
  margin-bottom: 34px;
}

.ingestion-title span {
  color: var(--pink);
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto 27px;
  padding: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logo-marquee 14s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.logo-chip {
  flex: 0 0 195px;
  height: 64px;
  padding: 0 28px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 221, 237, 0.85);
  box-shadow: 0 9px 22px rgba(16, 24, 46, 0.055);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.2px;
  white-space: nowrap;
}

.logo-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
}

.logo-chip.webhook {
  color: #4b4b4b;
  font-size: 19px;
  letter-spacing: -0.7px;
}

.logo-chip.webhook span {
  color: #d13c55;
  font-size: 28px;
}

.logo-chip.twilio {
  color: #f22f46;
  font-size: 28px;
}

.logo-chip.twilio span {
  width: 31px;
  height: 31px;
  border: 4px solid #f22f46;
  border-radius: 50%;
  color: #f22f46;
  font-size: 9px;
  letter-spacing: -4px;
  overflow: hidden;
}

.logo-chip.meta {
  font-size: 27px;
  color: #2c3440;
}

.logo-chip.meta span {
  color: #0b7cff;
  font-size: 36px;
}

.logo-chip.linkedin {
  gap: 4px;
  color: #111;
  font-size: 25px;
}

.logo-chip.linkedin span {
  width: 29px;
  height: 29px;
  border-radius: 3px;
  background: #0a66c2;
  color: #fff;
  font-size: 18px;
  letter-spacing: -1px;
}

.logo-chip.google,
.logo-chip.zoho,
.logo-chip.salesforce,
.logo-chip.hubspot {
  font-size: 20px;
  color: #444b55;
}

.logo-chip.google span {
  color: #4285f4;
}

.logo-chip.zoho span {
  color: #e65a2f;
}

.logo-chip.salesforce span {
  color: #00a1e0;
}

.logo-chip.hubspot span {
  color: #ff5c35;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ingestion-quote {
  max-width: 730px;
  margin: 0 auto;
  padding: 0 20px;
  font-style: italic;
  font-size: 14px;
  color: #121212;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .ingestion-section {
    padding: 64px 0 56px;
  }

  .ingestion-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }

  .ingestion-title {
    letter-spacing: -1.5px;
    margin-bottom: 28px;
  }

  .logo-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }

  .logo-group {
    gap: 18px;
    padding-right: 18px;
  }

  .logo-chip {
    flex-basis: 165px;
    height: 54px;
    border-radius: 17px;
    padding: 0 18px;
    font-size: 19px;
  }

  .logo-chip.twilio,
  .logo-chip.meta,
  .logo-chip.linkedin {
    font-size: 22px;
  }

  .ingestion-quote {
    max-width: 620px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .ingestion-section {
    padding: 54px 0 48px;
  }

  .ingestion-title {
    font-size: 34px;
  }

  .logo-chip {
    flex-basis: 145px;
    height: 50px;
    font-size: 17px;
  }

  .logo-chip.webhook,
  .logo-chip.google,
  .logo-chip.zoho,
  .logo-chip.salesforce,
  .logo-chip.hubspot {
    font-size: 16px;
  }
}


/* ================= HEADER FINAL FIXES ================= */
.desktop-nav a:hover {
  color: var(--pink);
}

.top-btn.dark:hover {
  background: #172f43;
  transform: translateY(-1px);
}

.top-btn {
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

section[id] {
  scroll-margin-top: 76px;
}

.analytics-section .main-btn {
  width: fit-content;
}

@media (max-width: 600px) {
  section[id] {
    scroll-margin-top: 68px;
  }

  .analytics-section .main-btn {
    width: 100%;
  }
}
