/* ============================================
   99 DIGITAL - Section Styles
   All 17 landing page sections
   ============================================ */

/* === HERO === */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 40px 80px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 850px;
  background: linear-gradient(135deg, #fff, #a8a8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .hl-g {
  -webkit-text-fill-color: #00B67A;
  background: none;
}

.hero > p {
  font-size: 19px;
  color: var(--dim);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-trust {
  margin-top: 20px;
  font-size: 13px;
  color: var(--dim);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* Hero Meta Badge */
.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 10px 24px;
  margin-top: 24px;
}
.hero-meta-badge svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  filter: brightness(1.3) drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}
.hero-meta-badge span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* === STATS === */
.stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 56px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stat {
  text-align: center;
}

.stat .n {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat .n .n-prefix,
.stat .n .n-suffix {
  font-size: 0.6em;
  opacity: 0.7;
}

.stat .l {
  font-size: 14px;
  color: var(--dim);
  margin-top: 6px;
}

/* === STORY (PAIN) === */
.story {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.story-time {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(255, 71, 87, .2);
  margin-bottom: 8px;
}

.story h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}

.story p {
  font-size: 18px;
  color: var(--dim);
  margin-bottom: 10px;
}

/* === TRANSITION === */
.trans {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trans-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 20px;
}

.trans h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text);
}

.trans p {
  font-size: 18px;
  color: var(--dim);
}

/* === AFTER (STORY AFTER) === */
.after {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.after-time {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(0, 229, 160, .2);
  margin-bottom: 8px;
}

.after h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.after p {
  font-size: 18px;
  color: var(--dim);
  margin-bottom: 10px;
}

/* === DASHBOARD === */
.dash-sec {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
  text-align: center;
}

.dash-mock {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5), var(--glow);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(0, 0, 0, .3);
  border-bottom: 1px solid var(--border);
}

.dots {
  display: flex;
  gap: 5px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #333;
}

.dots span:nth-child(1) { background: #FF5F57; }
.dots span:nth-child(2) { background: #FEBC2E; }
.dots span:nth-child(3) { background: #28C840; }

.dash-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 420px;
}

.d-side {
  border-left: 1px solid var(--border);
  padding: 12px;
  overflow-y: auto;
  direction: rtl;
}

.d-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: .3s;
  border: 1px solid transparent;
  direction: rtl;
}

.d-item:hover {
  background: rgba(0, 229, 160, .03);
}

.d-item.active {
  background: rgba(0, 229, 160, .06);
  border-color: rgba(0, 229, 160, .12);
}

.d-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.d-meta {
  text-align: right;
  flex: 1;
  min-width: 0;
}

.d-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.d-prev {
  font-size: 10px;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.d-ch {
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  margin-top: 2px;
}

.d-main {
  display: flex;
  flex-direction: column;
}

.d-main-header {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--dim);
  direction: rtl;
}

.chat-area {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  justify-content: flex-end;
  direction: rtl;
}

.msg {
  max-width: 72%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
  direction: rtl;
}

.msg.u {
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
}

.msg.ai {
  background: var(--ad);
  color: var(--accent);
  border-bottom-right-radius: 3px;
  align-self: flex-end;
}

.msg .ai-tag {
  font-size: 9px;
  opacity: .5;
  display: block;
  margin-bottom: 2px;
}

.sys-msg {
  font-size: 11px;
  color: var(--accent);
  text-align: center;
  padding: 6px;
  opacity: .7;
  direction: rtl;
}

.typing-ind {
  font-size: 12px;
  color: var(--accent);
  opacity: .6;
  align-self: flex-end;
  padding: 4px 0;
}

.d-input-bar {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  direction: rtl;
}

.d-input-bar input {
  flex: 1;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--dim);
  font-family: var(--font-primary);
  font-size: 12px;
  outline: none;
  text-align: right;
  direction: rtl;
}

.d-input-bar .send {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--bg);
}

/* === SOLUTION === */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.sol-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: .4s;
}

.sol-card:hover {
  border-color: rgba(0, 229, 160, .12);
  transform: translateY(-3px);
}

.sol-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.sol-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.sol-desc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
}

/* === FEATURES === */
/* Features: 4-card row, no icons */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: right;
  transition: .4s;
}

.feat-card:hover {
  border-color: rgba(0, 229, 160, .2);
  border-top-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 229, 160, .08);
}

.feat-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .5px;
  margin-bottom: 12px;
  direction: ltr;
  text-align: right;
}

.feat-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
}

.feat-desc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feat-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feat-bullets li {
  font-size: 13px;
  color: var(--dim);
  padding-right: 14px;
  position: relative;
  line-height: 1.5;
}

.feat-bullets li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* === CHANNELS === */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.ch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 14px 20px;
  text-align: center;
  transition: .4s;
}

.ch-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 230, 138, .1);
}

.ch-logo {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch-logo svg {
  width: 40px;
  height: 40px;
}

.ch-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.ch-sub {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.4;
}

/* === PROCESS === */
.proc-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 48px auto 0;
}

.proc-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.proc-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ad);
  border: 2px solid var(--accent);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.proc-arrow {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: .3;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: -30px;
}

.proc-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}

.proc-desc {
  font-size: 13px;
  color: var(--dim);
}

/* === ROI CALCULATOR === */
.roi-box {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  text-align: right;
}

.roi-group {
  margin-bottom: 22px;
}

.roi-label {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 6px;
  display: block;
}

.roi-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 15px;
  outline: none;
  transition: .3s;
  text-align: right;
  direction: rtl;
}

.roi-input:focus {
  border-color: var(--accent);
}

.roi-result {
  margin-top: 24px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.roi-result.loss {
  background: var(--rd);
  border: 1px solid rgba(255, 71, 87, .12);
}

.roi-result.save {
  background: var(--ad);
  border: 1px solid rgba(0, 229, 160, .12);
  margin-top: 12px;
}

.roi-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.roi-num.red { color: var(--red); }
.roi-num.green { color: var(--accent); }

.roi-lbl {
  font-size: 13px;
  color: var(--dim);
  margin-top: 4px;
}

/* === COMPARISON TABLE === */
.cmp-table {
  max-width: 800px;
  margin: 48px auto 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.cmp-row:last-child {
  border-bottom: none;
}

.cmp-row.head {
  background: rgba(0, 229, 160, .03);
}

.cmp-cell {
  padding: 15px 20px;
  font-size: 14px;
  text-align: center;
}

.cmp-cell:first-child {
  text-align: right;
  color: var(--dim);
}

.cmp-row.head .cmp-cell {
  font-weight: 700;
  color: var(--text);
}

.cmp-y { color: var(--accent); font-weight: 600; }
.cmp-n { color: var(--red); }
.cmp-p { color: var(--dim); }

/* === FAQ === */
.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: right;
}

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

.faq-q {
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
  color: var(--text);
}

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

.faq-q .arrow {
  transition: transform .3s;
  font-size: 18px;
  color: var(--dim);
}

.faq-item.open .arrow {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  font-size: 15px;
  color: var(--dim);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 10px;
}

/* === GUARANTEES === */
.g-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 48px auto 0;
}

.g-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.g-card:hover {
  border-color: var(--accent);
}

.g-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: .4;
}

.g-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--ad);
  border: 1px solid rgba(0, 229, 160, .1);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.g-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}

.g-desc {
  font-size: 13px;
  color: var(--dim);
}

.g-promo {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

.g-promo-hl {
  color: var(--accent);
  font-weight: 700;
}

/* Guarantees Meta Badge */
.g-meta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 10px 24px;
  margin: 24px auto 0;
  width: fit-content;
}
.g-meta-badge svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  filter: brightness(1.3) drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}
.g-meta-badge span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* === INDUSTRIES === */
.ind-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 32px auto 0;
}

.ind-pill {
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--dim);
  transition: .3s;
}

.ind-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* === URGENCY === */
.urg-box {
  max-width: 500px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urg-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #00B67A, var(--accent));
}

.urg-label {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.urg-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.urg-sub {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 20px;
}

.urg-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  direction: ltr;
}

.urg-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.urg-block-label {
  font-size: 9px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.urg-pair {
  display: flex;
  gap: 3px;
}

.urg-d {
  width: 48px;
  height: 62px;
  background: var(--surface);
  border: 1px solid rgba(0, 229, 160, .15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.urg-sep {
  font-size: 24px;
  color: var(--accent);
  opacity: .4;
  padding: 0 2px;
  align-self: center;
  margin-bottom: 18px;
}

/* === FORM SECTION (Two-column CTA + Form) === */
.form-sec {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 160, .04), transparent 70%);
}

.form-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Right column: persuasive content */
.form-sec-content {
  text-align: right;
  padding-top: 20px;
}

.form-sec-headline {
  margin: 0 0 24px;
}

.form-sec-h-line {
  display: block;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.form-sec-h-accent {
  color: var(--accent);
  font-size: clamp(32px, 4vw, 50px);
}

.form-sec-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dim);
  margin-bottom: 16px;
  max-width: 480px;
}

.form-sec-promo {
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
}

.form-sec-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}

.btn-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  text-align: center;
}

.btn-cta-primary:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
  color: var(--bg);
}

.btn-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  text-align: center;
}

.btn-cta-wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-cta-wa:hover {
  background: rgba(0, 229, 160, .08);
  transform: translateY(-2px);
}

/* Left column: form card */
.form-sec-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}

.form-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
}

.form-card-sub {
  font-size: 14px;
  color: var(--dim);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-sec-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-sec-content {
    text-align: center;
  }

  .form-sec-body {
    max-width: 100%;
  }

  .form-sec-ctas {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Inline strip tablet: stack text above form */
  .strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .strip-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .strip-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* --- HERO --- */
  .hero {
    padding: 100px 20px 50px;
    min-height: auto;
  }
  .hero h1 {
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero > p {
    font-size: 15px;
    padding: 0 10px;
    word-wrap: break-word;
  }
  .badge {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    white-space: normal;
    font-size: 12px;
    text-align: center;
  }
  .cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 10px;
  }
  .cta-group a,
  .cta-group button {
    width: 100%;
    text-align: center;
  }
  .hero-trust {
    font-size: 12px;
  }
  .hero-meta-badge {
    margin-top: 16px;
    padding: 8px 18px;
  }
  .hero-meta-badge svg { width: 22px; height: 22px; }
  .hero-meta-badge span { font-size: 13px; }

  /* --- STATS --- */
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 36px 20px;
  }
  .stat {
    text-align: center;
    width: auto;
  }
  .stat .n {
    font-size: clamp(36px, 8vw, 48px);
  }

  /* --- INLINE STRIP --- */
  .inline-strip {
    padding: 30px 16px;
  }
  .strip-title {
    font-size: 20px;
    text-align: center;
    word-wrap: break-word;
  }
  .strip-form {
    grid-template-columns: 1fr;
  }
  .strip-form input,
  .strip-form button {
    width: 100% !important;
    min-width: unset !important;
    font-size: 16px;
    padding: 14px 16px;
  }

  /* --- MORNING COMPARE --- */
  .morning-compare {
    padding: 60px 16px;
  }
  .mc-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .mc-card {
    width: 100% !important;
    max-width: 100% !important;
  }
  .mc-card.mc-without,
  .mc-card.mc-with {
    width: 100% !important;
    max-width: 100% !important;
  }
  .mc-divider {
    flex-direction: row !important;
    padding: 16px 0;
  }
  .mc-divider-line {
    height: 1px !important;
    width: 100% !important;
  }
  .mc-vs {
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .mc-calm-title {
    font-size: 20px;
  }
  .msg {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* --- DASHBOARD --- */
  .dash-sec {
    padding: 60px 16px;
  }
  .dash-mock {
    width: 100%;
    overflow: hidden;
  }
  .dash-body {
    grid-template-columns: 1fr !important;
  }
  .d-side {
    width: 100% !important;
    max-height: none !important;
    border-left: none !important;
    border-bottom: 1px solid var(--border);
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 8px;
    white-space: nowrap;
  }
  .d-item {
    min-width: 130px;
    flex-shrink: 0;
  }
  .d-main {
    width: 100%;
  }
  .msg {
    max-width: 85%;
  }

  /* --- ABOUT --- */
  .about-green {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-values {
    margin-top: 40px;
  }
  .about-values.ind-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-values .ind-pill {
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* --- SOLUTION --- */
  .sol-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sol-card {
    width: 100%;
  }

  /* --- FEATURES --- */
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feat-card {
    width: 100%;
    padding: 22px 16px;
  }

  /* --- CHANNELS --- */
  .ch-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .ch-card {
    padding: 16px 8px;
  }
  .ch-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
  .ch-logo svg {
    width: 28px;
    height: 28px;
  }
  .ch-name {
    font-size: 12px;
  }

  /* --- PROCESS --- */
  .proc-flow {
    flex-direction: column;
    gap: 12px;
  }
  .proc-arrow {
    transform: rotate(-90deg);
    margin: 0;
  }
  .proc-item {
    width: 100%;
    text-align: center;
  }

  /* --- ROI CALCULATOR --- */
  .roi-box {
    padding: 28px 16px;
  }
  .roi-input {
    width: 100%;
    font-size: 16px;
  }
  .roi-num {
    font-size: clamp(28px, 6vw, 36px);
  }

  /* --- COMPARISON TABLE --- */
  .cmp-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 48px -16px 0;
    padding: 0 16px;
  }
  .cmp-row {
    grid-template-columns: 1.5fr 1fr 1fr;
    min-width: 320px;
  }
  .cmp-cell {
    padding: 12px 10px;
    font-size: 13px;
  }

  /* --- FAQ --- */
  .faq-list {
    margin-top: 32px;
  }
  .faq-item {
    padding: 16px 0;
  }
  .faq-q {
    font-size: 15px;
    padding-left: 30px;
  }
  .faq-a {
    font-size: 14px;
    line-height: 1.7;
  }

  /* --- GUARANTEES --- */
  .g-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .g-card {
    width: 100%;
  }

  /* --- INDUSTRIES --- */
  .ind-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
  }
  .ind-pill {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* --- URGENCY --- */
  .urg-box {
    padding: 30px 20px;
  }

  /* --- FORM SECTION (Final CTA) --- */
  .form-sec {
    padding: 60px 16px;
  }
  .form-sec-grid {
    gap: 30px;
  }
  .form-sec-content {
    width: 100%;
  }
  .form-sec-card {
    width: 100%;
    padding: 28px 20px;
  }
  .form-sec-h-line {
    font-size: clamp(22px, 5vw, 28px);
    text-align: center;
  }

  /* --- CTA BANNER --- */
  .ctab-form {
    flex-direction: column;
  }
  .ctab-form input {
    width: 100%;
    min-width: unset;
    font-size: 16px;
  }
  .ctab-form button {
    width: 100%;
  }
  .ctab-trust {
    flex-direction: column;
  }

  /* --- STORY SECTIONS --- */
  .story,
  .after,
  .trans {
    padding: 60px 20px;
  }

  /* Prevent iOS zoom on inputs */
  .strip-form input { font-size: 16px; }
  .form-field input { font-size: 16px; }
}

@media (max-width: 480px) {
  /* Stats: tighter on small phones */
  .stats {
    gap: 16px;
    padding: 28px 16px;
  }
  .stat .n {
    font-size: clamp(32px, 8vw, 40px);
  }

  /* Features: single column */
  .feat-grid { grid-template-columns: 1fr; }

  /* Channels: 2 columns */
  .ch-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Guarantees: single column */
  .g-grid { grid-template-columns: 1fr; }

  /* Urgency timer: smaller digits */
  .urg-d { width: 38px; height: 50px; font-size: 24px; }
  .urg-sep { font-size: 18px; }
  .urg-title { font-size: 22px; }

  /* Comparison table: prevent overflow */
  .cmp-cell { padding: 10px 8px; font-size: 12px; }
  .cmp-row { grid-template-columns: 1.2fr 1fr 1fr; }

  /* CTA buttons: full width */
  .cta-group a { width: 100%; }

  /* Hero padding */
  .hero { padding: 100px 16px 50px; }
  .hero > p { font-size: 14px; }

  /* Solution cards */
  .sol-grid { gap: 12px; }
  .sol-num { font-size: 36px; }

  /* Process: tighter mobile */
  .proc-circle { width: 56px; height: 56px; font-size: 20px; }

  /* ROI box */
  .roi-box { padding: 24px 16px; }
  .roi-num { font-size: 32px; }

  /* FAQ */
  .faq-q { font-size: 15px; }

  /* Form section */
  .form-sec { padding: 50px 16px; }
  .form-sec-card { padding: 24px 16px; }

  /* Popup */
  .nd-popup { padding: 36px 24px 32px; }
  .nd-popup-headline { font-size: 22px; }

  /* Morning compare notifications */
  .notif { padding: 8px 10px; gap: 8px; }
  .notif-text { font-size: 12px; }

  /* Industries pills */
  .ind-pill { padding: 6px 14px; font-size: 12px; }

  /* About section */
  .about-green { font-size: 15px; }

  /* Dashboard section */
  .dash-sec { padding: 50px 16px; }

  /* CTA Banner */
  .cta-banner { padding: 50px 16px; }

  /* Morning compare */
  .morning-compare { padding: 50px 16px; }
  .mc-time { font-size: 36px; }
  .mc-calm-title { font-size: 20px; }
  .mc-calm-desc { font-size: 14px; }

  /* Story sections */
  .story-time, .after-time { font-size: 40px; }

  /* Inline strip */
  .inline-strip { padding: 36px 16px; }
  .strip-title { font-size: 18px; }
}

@media (max-width: 360px) {
  /* Very small phones */
  .hero { padding: 90px 12px 40px; }
  .hero > p { font-size: 14px; }
  .hero-trust { font-size: 11px; }

  .stat .n { font-size: 32px; }
  .stat .l { font-size: 12px; }

  .urg-d { width: 34px; height: 44px; font-size: 20px; }
  .urg-sep { font-size: 16px; }
  .urg-title { font-size: 20px; }

  .cmp-cell { padding: 8px 6px; font-size: 11px; }

  .strip-title { font-size: 16px; }
  .strip-sub { font-size: 12px; }
  .strip-form input { padding: 12px 14px; }
  .strip-form button { padding: 12px 20px; font-size: 14px; }

  .form-sec { padding: 40px 12px; }
  .form-sec-card { padding: 20px 12px; }
  .form-card-title { font-size: 18px; }

  .roi-box { padding: 20px 12px; }
  .roi-num { font-size: 28px; }

  .faq-q { font-size: 14px; }

  .nd-popup { padding: 28px 16px 24px; }
  .nd-popup-headline { font-size: 20px; }
  .nd-popup-body { font-size: 13px; }

  .sol-num { font-size: 32px; }
  .sol-title { font-size: 16px; }
  .sol-desc { font-size: 13px; }

  .ch-grid { gap: 6px; }
  .ch-card { padding: 16px 8px 14px; }
  .ch-name { font-size: 12px; }
  .ch-sub { font-size: 10px; }

  .mc-card { padding: 20px 14px; }

  /* About values: single column on very small */
  .about-values.ind-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MORNING COMPARE - Side by Side Before/After
   ============================================ */
.morning-compare {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}

.mc-header {
  text-align: center;
  margin-bottom: 48px;
}

.mc-header h2 {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

.mc-header p {
  font-size: 18px;
  color: var(--dim);
}

.mc-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.mc-card {
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  position: relative;
}

.mc-without {
  background: linear-gradient(160deg, rgba(255,71,87,.06) 0%, var(--card) 60%);
  border-color: rgba(255,71,87,.12);
}

.mc-with {
  background: linear-gradient(160deg, rgba(0,229,160,.06) 0%, var(--card) 60%);
  border-color: rgba(0,229,160,.12);
}

.mc-card-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mc-label-bad {
  background: rgba(255,71,87,.1);
  color: var(--red);
  border: 1px solid rgba(255,71,87,.2);
}

.mc-label-good {
  background: rgba(0,229,160,.1);
  color: var(--accent);
  border: 1px solid rgba(0,229,160,.2);
}

.mc-time {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mc-time-red {
  color: rgba(255,71,87,.25);
}

.mc-time-green {
  color: rgba(0,229,160,.25);
}

.mc-calm-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.mc-calm-desc {
  font-size: 16px;
  color: var(--dim);
  margin-bottom: 16px;
  line-height: 1.6;
}

.mc-notif-good {
  background: rgba(0,229,160,.03) !important;
}

.mc-tagline {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mc-tagline-bad {
  color: var(--red);
}

.mc-tagline-good {
  color: var(--accent);
}

/* VS Divider */
.mc-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 12px;
}

.mc-divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.mc-vs {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dim);
  flex-shrink: 0;
}

/* ============================================
   INLINE STRIP - Lead Capture after Stats
   ============================================ */
.inline-strip {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  background: var(--surface);
  border-top: 2px solid rgba(0,229,160,.15);
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.strip-text {
  flex: 1;
  text-align: right;
}

.strip-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.strip-sub {
  font-size: 14px;
  color: var(--dim);
}

.strip-form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.strip-form input {
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 15px;
  outline: none;
  transition: .3s;
  text-align: right;
  direction: rtl;
  width: 160px;
  flex: 1;
  min-width: 140px;
}

.strip-form input:focus {
  border-color: var(--accent);
}

.strip-form input::placeholder {
  color: var(--dim);
}

.strip-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
}

.strip-form button:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.strip-success {
  display: none;
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
}

.strip-success.visible {
  display: block;
}

.strip-form input.error {
  border-color: var(--red);
}

/* ============================================
   CTA BANNER - Confident conversion block
   ============================================ */
.cta-banner {
  position: relative;
  z-index: 1;
  padding: 80px 40px;
  text-align: center;
  background: var(--surface);
  background-image: radial-gradient(ellipse at 50% 80%, rgba(0,229,160,.03) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ctab-title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ctab-sub {
  font-size: 16px;
  color: var(--dim);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* CTA Banner inline form */
.ctab-form-wrap {
  max-width: 700px;
  margin: 0 auto 28px;
}

.ctab-form {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ctab-form input {
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 15px;
  outline: none;
  transition: .3s;
  flex: 1;
  min-width: 140px;
}

.ctab-form input:focus {
  border-color: var(--accent);
}

.ctab-form input::placeholder {
  color: var(--dim);
}

.ctab-form input.error {
  border-color: var(--red);
}

.btn-short { display: none; }

.ctab-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
}

.ctab-form button:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.ctab-promo {
  color: #F5A623;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.ctab-trust {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .5px;
  color: rgba(107,114,128,.7);
  text-align: center;
}

/* ============================================
   SMART POPUP - Premium / Confident
   ============================================ */
.nd-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.nd-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.nd-popup {
  background: rgba(13,15,20,.97);
  border: 1px solid rgba(0,229,160,.12);
  border-radius: 18px;
  padding: 52px 44px 44px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  transform: translateY(16px);
  transition: transform .4s ease;
}

/* Subtle green glow line at top */
.nd-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .6;
}

.nd-popup-overlay.active .nd-popup {
  transform: translateY(0);
}

.nd-popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.3);
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.nd-popup-close:hover {
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
}

.nd-popup-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.nd-popup-stats {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .3px;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.6;
}

.nd-popup-body {
  font-size: 15px;
  color: var(--dim);
  margin-bottom: 24px;
  line-height: 1.7;
  padding: 0 4px;
}

.nd-popup-offer {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: .7;
}

.nd-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.nd-popup-buttons .btn-popup-gold {
  padding: 16px 24px;
  background: linear-gradient(135deg, #00E68A, #00FFAA);
  color: #0A0A14;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-popup-buttons .btn-popup-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(0,230,138,.25);
  color: #0A0A14;
}

.nd-popup-buttons .btn-popup-ghost {
  padding: 14px 24px;
  background: transparent;
  color: var(--dim);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-popup-buttons .btn-popup-ghost:hover {
  border-color: rgba(255,255,255,.15);
  color: var(--text);
}

.nd-popup-trust {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .5px;
  color: rgba(107,114,128,.5);
}

/* === ABOUT US === */
.about-green {
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  margin-top: -32px;
  margin-bottom: 0;
}

.about-values {
  margin-top: 50px;
}
