/* ============================================
   KITIFY COMMERCIAL — SECTIONS
   ============================================ */

/* ── SECTION 2 — PROBLEM TICKER ── */

#problem {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.problem-ticker-wrap {
  display: flex;
  overflow: hidden;
  padding: 20px 0;
}

.problem-ticker-track {
  display: flex;
  gap: 0;
  animation: problemTicker 35s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.problem-ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 48px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  flex-shrink: 0;
}

.problem-ticker-item strong {
  color: var(--white);
  font-weight: 500;
}

.problem-ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes problemTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ── SECTION 3 — HOW IT WORKS ── */

#how-it-works {
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.how-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.how-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.how-header h2 em {
  font-style: normal;
  color: var(--cyan);
}

.how-header p {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.75;
  max-width: 440px;
  padding-bottom: 8px;
}

/* ── INPUT METHODS ── */

.how-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.how-input {
  background: rgba(0, 200, 224, 0.04);
  border: 1px solid rgba(0, 200, 224, 0.12);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}

.how-input:hover {
  background: rgba(0, 200, 224, 0.08);
  border-color: rgba(0, 200, 224, 0.3);
}

.how-input-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 200, 224, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
  font-size: 20px;
}

.how-input-text h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.how-input-text p {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.6;
}

/* ── STEPS ── */

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.how-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.how-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.how-step:hover .how-step-num {
  color: rgba(255, 255, 255, 0.07);
}

.how-step-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.how-step p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.how-step-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}

.how-step:hover .how-step-accent {
  opacity: 1;
}

.how-step:nth-child(1) .how-step-accent { background: var(--yellow); }
.how-step:nth-child(2) .how-step-accent { background: var(--cyan); }
.how-step:nth-child(3) .how-step-accent { background: var(--orange); }
.how-step:nth-child(4) .how-step-accent { background: var(--lime); }
/* ── REVEAL FIX ── */
.how-header,
.how-inputs,
.how-steps {
  opacity: 1;
  transform: none;
}
/* ── SECTION 4 — PRODUCTS ── */

#products {
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#products::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123, 232, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.products-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.products-header h2 em {
  font-style: normal;
  color: var(--lime);
}

.products-header p {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.75;
  max-width: 440px;
  padding-bottom: 8px;
}

/* ── CATEGORY TABS ── */

.products-categories {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.products-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all var(--transition);
}

.products-cat.active,
.products-cat:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.products-cat.active {
  border-bottom-color: var(--lime);
}

/* ── PRODUCT GRID ── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.product-card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.product-card-tag.wet { color: var(--cyan); border: 1px solid rgba(0, 200, 224, 0.3); }
.product-card-tag.dry { color: var(--lime); border: 1px solid rgba(123, 232, 0, 0.3); }
.product-card-tag.fire { color: var(--orange); border: 1px solid rgba(255, 107, 43, 0.3); }
.product-card-tag.windows { color: var(--yellow); border: 1px solid rgba(255, 217, 0, 0.3); }
.product-card-tag.glass { color: var(--magenta); border: 1px solid rgba(232, 0, 160, 0.3); }
.product-card-tag.modular { color: var(--white); border: 1px solid rgba(255, 255, 255, 0.2); }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.product-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mid);
}

.product-card-feature::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--mid);
  flex-shrink: 0;
}

.product-card.coming-soon {
  opacity: 0.6;
}

.product-card.coming-soon::after {
  content: 'COMING SOON';
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
}

/* ── ROADMAP TEASER ── */

.products-roadmap {
  margin-top: 2px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.products-roadmap p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.products-roadmap p span {
  color: var(--white);
}
/* ── SECTION 5 — WHO IT'S FOR STRIP ── */

#who-its-for {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
}

.who-strip {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: stretch;
}

.who-strip-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 24px 40px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.who-strip-markets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-left: 0;
  flex: 1;
}

.who-strip-market {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 24px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
  white-space: nowrap;
}

.who-strip-market:hover {
  color: var(--yellow);
  background: rgba(255, 217, 0, 0.04);
}
/* ── SECTION 6 — WHY KITIFY STRIP ── */

#why-kitify {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  background: rgba(0, 0, 0, 0.15);
}

.why-strip {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.why-strip-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition);
}

.why-strip-item:last-child {
  border-right: none;
}

.why-strip-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.why-strip-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.why-strip-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.why-strip-desc {
  font-size: 11px;
  color: var(--mid);
  line-height: 1.6;
}
/* ── SECTION 7 — VISFAB SPOTLIGHT ── */

#visfab {
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

#visfab::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 200, 224, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.visfab-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

/* ── LEFT ── */

.visfab-left {
  position: relative;
}

.visfab-left h2 {
  margin-bottom: 20px;
}

.visfab-left h2 em {
  font-style: normal;
  color: var(--cyan);
}

.visfab-left .visfab-sub {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}

.visfab-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.visfab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 200, 224, 0.3);
  padding: 8px 16px;
  margin-bottom: 32px;
}

.visfab-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── RIGHT ── */

.visfab-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.visfab-feature {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition);
}

.visfab-feature:hover {
  background: rgba(0, 200, 224, 0.05);
  border-color: rgba(0, 200, 224, 0.15);
  transform: translateX(4px);
}

.visfab-feature-icon {
  font-size: 28px;
  flex-shrink: 0;
}
/* ── SECTION 8 — CTA / CONTACT ── */

#get-started {
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#get-started::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 217, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 217, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

#get-started::after {
  content: 'KITIFIED';
  position: absolute;
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.02);
  bottom: -40px;
  right: -20px;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── LEFT ── */

.cta-left h2 {
  margin-bottom: 20px;
}

.cta-left h2 em {
  font-style: normal;
  color: var(--yellow);
}

.cta-left p {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 40px;
}

.cta-left-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ── RIGHT — CONTACT FORM ── */

.cta-right {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px;
  position: relative;
}

.cta-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--yellow), var(--cyan), var(--orange));
}

.cta-form-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-field label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.cta-field input,
.cta-field select,
.cta-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.cta-field input:focus,
.cta-field select:focus,
.cta-field textarea:focus {
  border-color: var(--cyan);
}

.cta-field select {
  cursor: pointer;
  color: var(--off-white);
}

.cta-field select option {
  background: var(--base);
}

.cta-field textarea {
  resize: vertical;
  min-height: 100px;
}