:root {
  --idwl-bg: #07090d;
  --idwl-panel: rgba(13, 18, 28, 0.82);
  --idwl-panel-solid: #0e1421;
  --idwl-panel-light: #f7f5ef;
  --idwl-panel-border: rgba(255, 255, 255, 0.1);
  --idwl-copy: rgba(255, 255, 255, 0.78);
  --idwl-copy-dark: #5c667b;
  --idwl-heading: #fefcf7;
  --idwl-heading-dark: #1d2740;
  --idwl-lime: #d7ff00;
  --idwl-orange: #ff6b1a;
  --idwl-orange-soft: #ffe4d3;
  --idwl-green: #17c880;
  --idwl-blue: #5d86ff;
  --idwl-radius-lg: 34px;
  --idwl-radius-md: 24px;
  --idwl-radius-sm: 18px;
  --idwl-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.idwl-page-shell {
  position: relative;
  margin-top: -120px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 115, 0, 0.2), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(93, 134, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #07090d 0%, #090c11 24%, #f5f3ec 24%, #f5f3ec 100%);
  overflow: clip;
}

.idwl-container {
  width: min(100% - 60px, var(--idr-max));
  margin: 0 auto;
}

.idwl-section {
  position: relative;
  padding: 92px 0;
}

.idwl-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.idwl-gap-xl {
  gap: 48px;
}

.idwl-align-center {
  align-items: center;
}

.idwl-copy h1,
.idwl-copy h2,
.idwl-section-head h2,
.idwl-cta-copy h2 {
  margin: 0;
  font-family: "FP Heavy", sans-serif;
  color: var(--idwl-heading);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.idwl-copy h2,
.idwl-section-head h2,
.idwl-cta-copy h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.6rem);
}

.idwl-copy p,
.idwl-section-head p,
.idwl-cta-copy p,
.idwl-testimonial-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--idwl-copy);
  line-height: 1.6;
  font-size: 1.03rem;
}

.idwl-kicker,
.idwl-eyebrow,
.idwl-section-head .idwl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  font-family: "FP Heavy", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.idwl-eyebrow-icon {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.18);
  color: #ffd6c0;
}

.idwl-hero {
  position: relative;
  padding: 210px 0 110px;
  color: #fff;
}

.idwl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(7, 9, 13, 0.88) 50%, rgba(14, 18, 27, 0.72) 100%),
    var(--idr-white-label-hero-bg) center/cover no-repeat;
  z-index: 0;
}

.idwl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent);
  z-index: 0;
}

.idwl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 48px;
  align-items: center;
}

.idwl-hero .idwl-copy {
  display: grid;
  gap: 24px;
}

.idwl-hero h1 {
  font-size: clamp(3.2rem, 5.8vw, 5.7rem);
  max-width: 11ch;
}

.idwl-lead {
  max-width: 62ch;
}

.idwl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.idwl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "FP Heavy", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.idwl-btn-primary {
  background: linear-gradient(135deg, #ff8b3e, var(--idwl-orange));
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 107, 26, 0.24);
}

.idwl-btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.idwl-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.idwl-hero-pills li {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  font-family: "FP Light", sans-serif;
  color: #fff;
}

.idwl-hero-stage {
  position: relative;
  min-height: 520px;
}

.idwl-stage-glow {
  position: absolute;
  inset: 12% 8% auto;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.25), transparent 68%);
  filter: blur(22px);
}

.idwl-stage-card {
  position: absolute;
  width: min(100%, 420px);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--idwl-panel-border);
  background: rgba(255, 255, 255, 0.96);
  color: var(--idwl-heading-dark);
  box-shadow: var(--idwl-shadow);
}

.idwl-stage-card.is-primary {
  top: 30px;
  right: 0;
}

.idwl-stage-card.is-secondary {
  bottom: 54px;
  left: 22px;
  background: rgba(12, 17, 27, 0.92);
  color: #fff;
}

.idwl-stage-head,
.idwl-dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.idwl-stage-head span,
.idwl-dashboard-head strong {
  font-family: "FP Heavy", sans-serif;
  font-size: 1.1rem;
}

.idwl-stage-head b,
.idwl-dashboard-head span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(23, 200, 128, 0.12);
  color: #159464;
  font-family: "FP Heavy", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
}

.idwl-stage-list,
.idwl-dashboard {
  display: grid;
  gap: 16px;
}

.idwl-stage-row,
.idwl-workload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px auto;
  gap: 14px;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
}

.idwl-stage-row em,
.idwl-workload-row b {
  font-style: normal;
  font-family: "FP Heavy", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: #56627d;
}

.idwl-stage-card.is-secondary p,
.idwl-stage-card.is-secondary li {
  color: rgba(255, 255, 255, 0.84);
}

.idwl-stage-card.is-secondary ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0 0 0 18px;
}

.idwl-stage-badge {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(215, 255, 0, 0.14);
  border: 1px solid rgba(215, 255, 0, 0.3);
  color: var(--idwl-lime);
  font-family: "FP Heavy", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.idwl-showcase {
  position: relative;
  z-index: 1;
  padding: 0 0 48px;
  background: transparent;
}

.idwl-showcase-row {
  overflow: hidden;
  padding: 8px 0;
}

.idwl-showcase-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: idwl-marquee 34s linear infinite;
}

.idwl-showcase-row.is-reverse .idwl-showcase-track {
  animation-direction: reverse;
}

.idwl-showcase-card {
  flex: 0 0 auto;
  width: 236px;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
}

.idwl-showcase-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.idwl-trust-section,
.idwl-services-section,
.idwl-process-section {
  background: #f5f3ec;
}

.idwl-solution-section,
.idwl-profit-section,
.idwl-why-section,
.idwl-cta-section,
.idwl-testimonials-section {
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.98), rgba(9, 12, 18, 0.98));
}

.idwl-pain-list,
.idwl-mini-grid,
.idwl-profit-cards,
.idwl-trust-list {
  display: grid;
  gap: 14px;
}

.idwl-pain-card,
.idwl-mini-grid article,
.idwl-trust-list article,
.idwl-profit-cards article,
.idwl-service-grid article,
.idwl-check-grid article,
.idwl-process-line article,
.idwl-testimonial-card,
.idwl-form-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.idwl-pain-card,
.idwl-mini-grid article,
.idwl-trust-list article,
.idwl-profit-cards article {
  padding: 18px 20px;
}

.idwl-highlight-line,
.idwl-strong-line,
.idwl-reputation-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-family: "FP Heavy", sans-serif;
  color: #fff;
}

.idwl-highlight-line span,
.idwl-reputation-line {
  color: var(--idwl-lime);
}

.idwl-reputation-line {
  justify-content: center;
  width: 100%;
  padding: 20px 26px;
  border-radius: 999px;
  border: 1px solid rgba(215, 255, 0, 0.18);
  background: rgba(215, 255, 0, 0.06);
}

.idwl-visual {
  position: relative;
}

.idwl-workload-visual {
  min-height: 620px;
}

.idwl-float-card,
.idwl-dashboard {
  position: relative;
}

.idwl-dashboard {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--idwl-heading-dark);
  box-shadow: var(--idwl-shadow);
}

.idwl-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(25, 34, 53, 0.12);
}

.idwl-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 107, 26, 0.62), var(--idwl-orange));
  transition: width 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-visible .idwl-bar i,
.idwl-page-shell.is-animated .idwl-bar i {
  width: var(--target);
}

.idwl-bar-blue i {
  background: linear-gradient(90deg, rgba(93, 134, 255, 0.4), var(--idwl-blue));
}

.idwl-bar-green i {
  background: linear-gradient(90deg, rgba(23, 200, 128, 0.4), var(--idwl-green));
}

.idwl-funnel-wrap {
  position: absolute;
  right: 0;
  bottom: 12px;
  width: 340px;
  height: 320px;
}

.idwl-funnel-wrap::before {
  content: "";
  position: absolute;
  inset: 44px 14px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 107, 26, 0.14), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.idwl-floating-tile {
  position: absolute;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: "FP Heavy", sans-serif;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  animation: idwl-float 4.4s ease-in-out infinite;
}

.idwl-tile-1 { top: 24px; left: 20px; }
.idwl-tile-2 { top: 66px; right: 28px; animation-delay: 0.8s; }
.idwl-tile-3 { top: 148px; left: 88px; animation-delay: 1.6s; }

.idwl-stream {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 107, 26, 0.75), rgba(255, 255, 255, 0));
  animation: idwl-pulse 2.2s ease-in-out infinite;
}

.idwl-stream-1 { left: 64px; top: 110px; height: 124px; }
.idwl-stream-2 { right: 84px; top: 150px; height: 98px; animation-delay: 0.3s; }
.idwl-stream-3 { left: 132px; top: 236px; height: 46px; animation-delay: 0.6s; }

.idwl-funnel {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 178px;
  display: grid;
  justify-items: center;
}

.idwl-funnel-top {
  width: 100%;
  height: 38px;
  border-radius: 22px 22px 12px 12px;
  background: linear-gradient(180deg, #f8fbff, rgba(193, 220, 255, 0.8));
  box-shadow: 0 18px 38px rgba(29, 39, 64, 0.18);
}

.idwl-funnel-neck {
  width: 44px;
  height: 78px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, rgba(255, 219, 194, 0.94), rgba(255, 107, 26, 0.9));
  box-shadow: 0 18px 34px rgba(255, 107, 26, 0.2);
}

.idwl-funnel span {
  margin-top: 14px;
  font-family: "FP Heavy", sans-serif;
  font-size: 2.25rem;
  color: var(--idwl-lime);
}

.idwl-note {
  position: absolute;
  right: 4px;
  bottom: 56px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "FP Heavy", sans-serif;
  line-height: 1.1;
  text-align: right;
  font-size: 1.05rem;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.idwl-partnership-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.idwl-partner-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.idwl-partner-card h3 {
  margin: 0 0 18px;
  font-family: "FP Heavy", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}

.idwl-partner-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.idwl-connector {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 107, 26, 0.22), rgba(255, 107, 26, 0.06));
  border: 1px solid rgba(255, 107, 26, 0.32);
  color: #fff;
  font-family: "FP Heavy", sans-serif;
}

.idwl-white-label-loop {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(215, 255, 0, 0.18);
  background: rgba(215, 255, 0, 0.06);
  color: var(--idwl-lime);
  font-family: "FP Heavy", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: idwl-glow 3.4s ease-in-out infinite;
}

.idwl-trust-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.idwl-trust-list article span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: "FP Heavy", sans-serif;
}

.idwl-trust-list article b {
  color: var(--idwl-lime);
  font-family: "FP Heavy", sans-serif;
  font-weight: 400;
}

.idwl-shield-visual {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.idwl-shield {
  position: relative;
  width: 210px;
  height: 240px;
  clip-path: polygon(50% 0, 88% 16%, 88% 64%, 50% 100%, 12% 64%, 12% 16%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 107, 26, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

.idwl-lock {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.idwl-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -26px;
  width: 42px;
  height: 38px;
  transform: translateX(-50%);
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.idwl-lock i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--idwl-orange);
}

.idwl-lock i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--idwl-orange);
}

.idwl-badges {
  display: grid;
  gap: 12px;
  width: min(100%, 360px);
}

.idwl-badges article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.idwl-badges span,
.idwl-service-icon {
  font-family: "FP Heavy", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.idwl-badges span {
  color: var(--idwl-lime);
}

.idwl-badges b,
.idwl-badges small {
  display: block;
  color: #fff;
}

.idwl-badges small {
  color: rgba(255, 255, 255, 0.68);
  font-family: "Inter", sans-serif;
}

.idwl-profit-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.idwl-stat,
.idwl-stat-icon {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff;
  font-family: "FP Heavy", sans-serif;
}

.idwl-stat {
  font-size: 2rem;
}

.idwl-focus-delivery {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.idwl-focus-delivery p {
  display: flex;
  align-items: center;
  gap: 12px;
}

.idwl-focus-delivery span {
  display: inline-flex;
  min-width: 54px;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--idwl-lime);
  font-family: "FP Heavy", sans-serif;
}

.idwl-growth-visual {
  min-height: 360px;
}

.idwl-chart {
  position: relative;
  min-height: 340px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 15% 90%, rgba(255, 107, 26, 0.12), transparent 34%), rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.idwl-chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}

.idwl-growth-arrow {
  position: absolute;
  inset: auto 8% 16% 6%;
  width: 86%;
  height: auto;
}

.idwl-arrow-path {
  fill: none;
  stroke: var(--idwl-lime);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  transition: stroke-dashoffset 1.4s ease;
}

.idwl-arrow-head {
  fill: var(--idwl-lime);
  opacity: 0;
  transition: opacity 0.3s ease 1.1s;
}

.is-visible .idwl-arrow-path,
.idwl-page-shell.is-animated .idwl-arrow-path {
  stroke-dashoffset: 0;
}

.is-visible .idwl-arrow-head,
.idwl-page-shell.is-animated .idwl-arrow-head {
  opacity: 1;
}

.idwl-chart-label {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--idwl-heading-dark);
  font-family: "FP Heavy", sans-serif;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.idwl-label-1 { left: 8%; bottom: 16%; }
.idwl-label-2 { right: 26%; top: 29%; }
.idwl-label-3 { right: 6%; top: 12%; }

.idwl-section-head,
.idwl-cta-copy {
  display: grid;
  gap: 20px;
}

.idwl-center {
  justify-items: center;
  text-align: center;
}

.idwl-problem-section .idwl-copy p,
.idwl-trust-section .idwl-copy p,
.idwl-services-section .idwl-section-head p,
.idwl-process-section .idwl-section-head p,
.idwl-cta-copy p {
  color: var(--idwl-copy-dark);
}

.idwl-solution-section .idwl-copy p,
.idwl-profit-section .idwl-copy p,
.idwl-why-section .idwl-copy p,
.idwl-testimonials-section .idwl-section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.idwl-problem-section .idwl-eyebrow,
.idwl-trust-section .idwl-eyebrow,
.idwl-services-section .idwl-eyebrow,
.idwl-process-section .idwl-eyebrow,
.idwl-cta-section .idwl-eyebrow {
  border-color: rgba(29, 39, 64, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #c89167;
  box-shadow: 0 14px 30px rgba(29, 39, 64, 0.08);
}

.idwl-problem-section .idwl-eyebrow-icon,
.idwl-trust-section .idwl-eyebrow-icon,
.idwl-services-section .idwl-eyebrow-icon,
.idwl-process-section .idwl-eyebrow-icon,
.idwl-cta-section .idwl-eyebrow-icon {
  background: rgba(255, 107, 26, 0.16);
  color: var(--idwl-orange);
}

.idwl-solution-section .idwl-eyebrow,
.idwl-profit-section .idwl-eyebrow,
.idwl-why-section .idwl-eyebrow,
.idwl-testimonials-section .idwl-eyebrow {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: none;
}

.idwl-solution-section .idwl-eyebrow-icon,
.idwl-profit-section .idwl-eyebrow-icon,
.idwl-why-section .idwl-eyebrow-icon,
.idwl-testimonials-section .idwl-eyebrow-icon {
  background: rgba(255, 107, 26, 0.18);
  color: #ffd6c0;
}

.idwl-problem-section h2,
.idwl-trust-section h2,
.idwl-services-section h2,
.idwl-process-section h2,
.idwl-cta-copy h2 {
  color: var(--idwl-heading-dark);
}

.idwl-solution-section h2,
.idwl-profit-section h2,
.idwl-why-section h2,
.idwl-testimonials-section h2 {
  color: #fefcf7;
}

.idwl-problem-section .idwl-pain-card,
.idwl-trust-section .idwl-trust-list article,
.idwl-trust-section .idwl-badges article {
  border-color: rgba(29, 39, 64, 0.1);
  background: #fff;
}

.idwl-problem-section .idwl-pain-card p,
.idwl-trust-section .idwl-trust-list article p,
.idwl-trust-section .idwl-badges small {
  color: var(--idwl-copy-dark);
}

.idwl-problem-section .idwl-funnel-wrap::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 107, 26, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(29, 39, 64, 0.02), rgba(29, 39, 64, 0));
  border-color: rgba(29, 39, 64, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.idwl-problem-section .idwl-floating-tile {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 236, 0.96));
  border-color: rgba(29, 39, 64, 0.08);
  color: var(--idwl-heading-dark);
  box-shadow: 0 18px 38px rgba(29, 39, 64, 0.08);
}

.idwl-problem-section .idwl-stream {
  background: linear-gradient(180deg, rgba(255, 107, 26, 0), rgba(255, 107, 26, 0.68), rgba(255, 107, 26, 0));
}

.idwl-problem-section .idwl-note {
  color: var(--idwl-heading-dark);
  text-shadow: none;
}

.idwl-problem-section .idwl-highlight-line,
.idwl-problem-section .idwl-highlight-line strong,
.idwl-trust-section .idwl-reputation-line,
.idwl-trust-section .idwl-reputation-line strong {
  color: var(--idwl-heading-dark);
}

.idwl-problem-section .idwl-highlight-line span,
.idwl-trust-section .idwl-reputation-line {
  color: var(--idwl-lime);
}

.idwl-problem-section {
  padding: 220px 0 100px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 107, 26, 0.16), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(23, 200, 128, 0.1), transparent 24%),
    linear-gradient(135deg, #f8f3eb, #f4f6f4 52%, #eef7f3);
  color: var(--idwl-heading-dark);
  overflow: hidden;
}

.idwl-problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 39, 64, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 39, 64, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.idwl-problem-section > .idwl-container {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 34px;
}

.idwl-problem-section .idwl-copy {
  display: grid;
  gap: 12px;
}

.idwl-problem-section .idwl-pain-list {
  gap: 8px;
}

.idwl-problem-section .idwl-eyebrow {
  border-color: rgba(29, 39, 64, 0.1);
  background: rgba(255, 255, 255, 0.74);
  color: #9a5c35;
  box-shadow: 0 14px 30px rgba(29, 39, 64, 0.07);
  backdrop-filter: blur(14px);
}

.idwl-problem-section .idwl-eyebrow-icon {
  background: rgba(255, 107, 26, 0.14);
  color: var(--idwl-orange);
}

.idwl-problem-section h1,
.idwl-problem-section h2 {
  color: var(--idwl-heading-dark);
}

.idwl-problem-section h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
}

.idwl-problem-section .idwl-copy p,
.idwl-problem-section .idwl-pain-card p {
  color: var(--idwl-copy-dark);
}

.idwl-problem-section .idwl-pain-card {
  border-color: rgba(29, 39, 64, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(29, 39, 64, 0.09);
  backdrop-filter: blur(14px);
  padding: 12px 16px;
  border-radius: 16px;
}

.idwl-problem-section .idwl-pain-rotator {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 13px 16px;
  overflow: hidden;
  border: 1px solid rgba(29, 39, 64, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(29, 39, 64, 0.09);
  backdrop-filter: blur(14px);
}

.idwl-pain-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--idwl-green);
  box-shadow: 0 0 0 7px rgba(23, 200, 128, 0.12);
}

.idwl-problem-section .idwl-pain-text {
  color: var(--idwl-heading-dark);
  font-weight: 600;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.idwl-pain-rotator.is-changing .idwl-pain-text {
  opacity: 0;
  transform: translateY(-10px);
}

.idwl-problem-section .idwl-workload-visual {
  display: grid;
  align-items: center;
  min-height: 300px;
}

.idwl-problem-section .idwl-dashboard {
  width: min(100%, 500px);
  margin-left: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.idwl-problem-section .idwl-dashboard-head span {
  background: rgba(23, 200, 128, 0.16);
  color: #6ff0b8;
}

.idwl-problem-section .idwl-workload-row b {
  color: rgba(255, 255, 255, 0.58);
}

.idwl-problem-section .idwl-workload-row {
  gap: 10px;
  font-size: 0.86rem;
}

.idwl-problem-section .idwl-bar {
  background: rgba(255, 255, 255, 0.12);
}

.idwl-problem-section .idwl-funnel-wrap::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 107, 26, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.idwl-problem-section .idwl-floating-tile {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.idwl-problem-section .idwl-note,
.idwl-problem-section .idwl-highlight-line,
.idwl-problem-section .idwl-highlight-line strong {
  color: var(--idwl-heading-dark);
}

.idwl-problem-section .idwl-highlight-line span {
  color: var(--idwl-orange);
}

.idwl-trust-section .idwl-trust-list article span {
  background: rgba(255, 107, 26, 0.12);
  color: var(--idwl-orange);
}

.idwl-trust-section .idwl-trust-list article b {
  color: #94c700;
}

.idwl-trust-section .idwl-badges article {
  grid-template-columns: 118px minmax(0, 1fr);
}

.idwl-trust-section .idwl-badges span {
  color: var(--idwl-orange);
  font-size: 0.76rem;
  white-space: nowrap;
}

.idwl-trust-section .idwl-badges b {
  color: var(--idwl-heading-dark);
}

.idwl-trust-section .idwl-reputation-line {
  border-color: rgba(255, 107, 26, 0.14);
  background: rgba(255, 107, 26, 0.08);
  color: var(--idwl-heading-dark);
}

.idwl-solution-section .idwl-mini-grid article,
.idwl-solution-section .idwl-partner-card,
.idwl-profit-section .idwl-profit-cards article,
.idwl-why-section .idwl-check-grid article,
.idwl-testimonials-section .idwl-testimonial-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.idwl-solution-section .idwl-mini-grid article span,
.idwl-solution-section .idwl-partner-card ul,
.idwl-profit-section .idwl-profit-cards article p,
.idwl-why-section .idwl-check-grid span,
.idwl-testimonials-section .idwl-testimonial-card p,
.idwl-testimonials-section .idwl-testimonial-card span {
  color: rgba(255, 255, 255, 0.78);
}

.idwl-why-section .idwl-check-grid b,
.idwl-testimonials-section .idwl-testimonial-card strong {
  color: #fff;
}

.idwl-testimonials-section .idwl-testimonial-card {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.idwl-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.idwl-service-grid article,
.idwl-check-grid article,
.idwl-process-line article,
.idwl-testimonial-card,
.idwl-form-card {
  padding: 28px;
  border-color: rgba(29, 39, 64, 0.1);
  background: #fff;
}

.idwl-service-icon {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--idwl-orange-soft);
  color: var(--idwl-orange);
  font-size: 0.78rem;
}

.idwl-service-grid h3,
.idwl-check-grid b,
.idwl-process-line h3,
.idwl-testimonial-card strong {
  margin: 0;
  color: var(--idwl-heading-dark);
  font-family: "FP Heavy", sans-serif;
  font-weight: 400;
}

.idwl-service-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  color: var(--idwl-copy-dark);
  font-family: "Inter", sans-serif;
}

.idwl-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.idwl-check-grid article {
  display: grid;
  gap: 12px;
}

.idwl-check-grid span,
.idwl-process-line p,
.idwl-testimonial-card span {
  color: var(--idwl-copy-dark);
  font-family: "Inter", sans-serif;
}

.idwl-process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.idwl-process-line article {
  position: relative;
  display: grid;
  gap: 14px;
}

.idwl-process-line article span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--idwl-orange-soft);
  color: var(--idwl-orange);
  font-family: "FP Heavy", sans-serif;
}

.idwl-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.idwl-testimonial-card {
  display: grid;
  gap: 22px;
}

.idwl-testimonial-card p {
  color: var(--idwl-heading-dark);
}

.idwl-testimonial-card strong,
.idwl-testimonial-card span {
  display: block;
}

.idwl-cta-card {
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
	gap: 28px;
	align-items: start;
	padding: 34px;
	border-radius: 34px;
	background: linear-gradient(135deg, #fff 0%, #fff8f2 100%);
	border: 1px solid rgba(29, 39, 64, 0.08);
	box-shadow: 0 26px 64px rgba(29, 39, 64, 0.08);
}

.idwl-cta-points {
	display: grid;
	gap: 10px;
	margin: 0;
  padding: 0 0 0 18px;
  color: var(--idwl-heading-dark);
  font-family: "Inter", sans-serif;
}

.idwl-form-card .wpforms-container {
  margin-bottom: 0;
}

.idwl-form-card .wpforms-form input,
.idwl-form-card .wpforms-form textarea,
.idwl-form-card .wpforms-form select {
  border-radius: 16px;
  border: 1px solid rgba(29, 39, 64, 0.12);
  background: #fff;
}

.idwl-form-card .wpforms-submit-container {
  margin-top: 10px;
}

.idwl-form-card .wpforms-form button[type="submit"] {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #ff8b3e, var(--idwl-orange));
  color: #fff;
  font-family: "FP Heavy", sans-serif;
  font-size: 0.96rem;
}

.idwl-hero-form-card {
  width: min(100%, 520px);
  margin-left: auto;
  padding: 28px;
  scroll-margin-top: 150px;
  border-color: rgba(29, 39, 64, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--idwl-heading-dark);
  box-shadow: 0 28px 70px rgba(29, 39, 64, 0.14);
  backdrop-filter: blur(18px);
}

.idwl-form-intro {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.idwl-form-intro > span {
  color: #0b9d66;
  font-family: "FP Heavy", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.idwl-form-intro h2 {
  margin: 0;
  color: var(--idwl-heading-dark);
  font-family: "FP Heavy", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.idwl-form-intro p {
  margin: 0;
  color: var(--idwl-copy-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}

.idwl-hero-form-card .wpforms-field-label {
  color: var(--idwl-heading-dark);
}

.idwl-hero-form-card .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.idwl-hero-form-card div.wpforms-container-full {
  margin: 0 !important;
}

.idwl-hero-form-card div.wpforms-container-full .wpforms-form .wpforms-field {
  margin: 0 !important;
  padding: 0 !important;
}

.idwl-hero-form-card #wpforms-12950-field_6-container {
  display: none;
}

.idwl-hero-form-card #wpforms-12950-field_5-container {
  grid-column: 1 / -1;
}

.idwl-hero-form-card .wpforms-form input,
.idwl-hero-form-card .wpforms-form textarea,
.idwl-hero-form-card .wpforms-form select {
  min-height: 48px;
  border-color: rgba(29, 39, 64, 0.12);
  background: #f7f8fa;
  color: var(--idwl-heading-dark);
}

.idwl-hero-form-card .wpforms-form input::placeholder,
.idwl-hero-form-card .wpforms-form textarea::placeholder {
  color: rgba(29, 39, 64, 0.48);
}

.idwl-hero-form-card .wpforms-form button[type="submit"] {
  width: 100%;
}

.idwl-hero-form-card div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  margin: 10px 0 0 !important;
  padding: 0 !important;
}

.idwl-cta-card-compact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.idwl-cta-card-compact .idwl-btn {
  gap: 10px;
  white-space: nowrap;
}

/* Keep the landing-page color rhythm explicit and independent of section internals. */
.idwl-section.idwl-theme-dark {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 107, 26, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(23, 200, 128, 0.1), transparent 24%),
    linear-gradient(135deg, #05070a, #08101d 52%, #06090c);
  color: #fff;
}

.idwl-section.idwl-theme-light {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 107, 26, 0.1), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(23, 200, 128, 0.07), transparent 24%),
    linear-gradient(135deg, #f8f3eb, #f4f6f4 52%, #eef7f3);
  color: var(--idwl-heading-dark);
}

.idwl-problem-section.idwl-theme-dark::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
}

.idwl-theme-dark :is(.idwl-copy h1, .idwl-copy h2, .idwl-section-head h2, .idwl-cta-copy h2),
.idwl-theme-dark :is(.idwl-partner-card h3, .idwl-service-grid h3, .idwl-check-grid b, .idwl-process-line h3),
.idwl-theme-dark .idwl-form-intro h2 {
  color: #fff;
}

.idwl-theme-light :is(.idwl-copy h1, .idwl-copy h2, .idwl-section-head h2, .idwl-cta-copy h2),
.idwl-theme-light :is(.idwl-partner-card h3, .idwl-service-grid h3, .idwl-check-grid b, .idwl-process-line h3),
.idwl-theme-light .idwl-form-intro h2 {
  color: var(--idwl-heading-dark);
}

.idwl-theme-dark :is(.idwl-copy p, .idwl-section-head p, .idwl-cta-copy p),
.idwl-theme-dark :is(.idwl-mini-grid article > span:last-child, .idwl-trust-list article p, .idwl-profit-cards article p),
.idwl-theme-dark :is(.idwl-service-grid ul, .idwl-check-grid span, .idwl-process-line p, .idwl-partner-card ul),
.idwl-theme-dark .idwl-form-intro p {
  color: rgba(255, 255, 255, 0.76);
}

.idwl-theme-light :is(.idwl-copy p, .idwl-section-head p, .idwl-cta-copy p),
.idwl-theme-light :is(.idwl-mini-grid article > span:last-child, .idwl-trust-list article p, .idwl-profit-cards article p),
.idwl-theme-light :is(.idwl-service-grid ul, .idwl-check-grid span, .idwl-process-line p, .idwl-partner-card ul),
.idwl-theme-light .idwl-form-intro p {
  color: var(--idwl-copy-dark);
}

.idwl-theme-dark .idwl-eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.idwl-theme-dark .idwl-eyebrow-icon {
  background: rgba(255, 107, 26, 0.2);
  color: #ffd6c0;
}

.idwl-theme-light .idwl-eyebrow {
  border-color: rgba(29, 39, 64, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: #9a5c35;
  box-shadow: 0 14px 30px rgba(29, 39, 64, 0.07);
}

.idwl-theme-light .idwl-eyebrow-icon {
  background: rgba(255, 107, 26, 0.14);
  color: var(--idwl-orange);
}

.idwl-theme-dark :is(
  .idwl-pain-rotator,
  .idwl-mini-grid article,
  .idwl-trust-list article,
  .idwl-profit-cards article,
  .idwl-service-grid article,
  .idwl-check-grid article,
  .idwl-process-line article,
  .idwl-badges article,
  .idwl-partner-card,
  .idwl-form-card
) {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.idwl-theme-light :is(
  .idwl-pain-rotator,
  .idwl-mini-grid article,
  .idwl-trust-list article,
  .idwl-profit-cards article,
  .idwl-service-grid article,
  .idwl-check-grid article,
  .idwl-process-line article,
  .idwl-badges article,
  .idwl-partner-card,
  .idwl-form-card
) {
  border-color: rgba(29, 39, 64, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(29, 39, 64, 0.09);
}

.idwl-theme-dark .idwl-pain-text,
.idwl-theme-dark :is(.idwl-highlight-line, .idwl-highlight-line strong, .idwl-strong-line),
.idwl-theme-dark .idwl-reputation-line,
.idwl-theme-dark .idwl-badges b {
  color: #fff;
}

.idwl-theme-light .idwl-pain-text,
.idwl-theme-light :is(.idwl-highlight-line, .idwl-highlight-line strong, .idwl-strong-line),
.idwl-theme-light .idwl-reputation-line,
.idwl-theme-light .idwl-badges b {
  color: var(--idwl-heading-dark);
}

.idwl-theme-dark .idwl-badges small {
  color: rgba(255, 255, 255, 0.66);
}

.idwl-theme-light .idwl-badges small {
  color: var(--idwl-copy-dark);
}

.idwl-theme-light .idwl-connector {
  background: rgba(255, 107, 26, 0.1);
  color: var(--idwl-heading-dark);
}

.idwl-theme-light .idwl-white-label-loop {
  border-color: rgba(23, 200, 128, 0.2);
  background: rgba(23, 200, 128, 0.08);
  color: #0b9d66;
}

.idwl-theme-light .idwl-chart {
  border-color: rgba(29, 39, 64, 0.1);
  background: radial-gradient(circle at 15% 90%, rgba(255, 107, 26, 0.1), transparent 34%), rgba(255, 255, 255, 0.72);
}

.idwl-theme-light .idwl-chart-grid {
  background-image:
    linear-gradient(rgba(29, 39, 64, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 39, 64, 0.06) 1px, transparent 1px);
}

.idwl-theme-dark .idwl-hero-form-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.idwl-theme-dark .idwl-form-intro > span {
  color: #6ff0b8;
}

.idwl-theme-dark .idwl-hero-form-card .wpforms-field-label {
  color: rgba(255, 255, 255, 0.78);
}

.idwl-theme-dark .idwl-hero-form-card .wpforms-form :is(input, textarea, select) {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.idwl-theme-dark .idwl-hero-form-card .wpforms-form :is(input, textarea)::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.idwl-theme-light .idwl-cta-card {
  background: linear-gradient(135deg, #fff 0%, #fff8f2 100%);
}

.idwl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

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

@keyframes idwl-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.9); }
  50% { opacity: 1; transform: scaleY(1.05); }
}

@keyframes idwl-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(215, 255, 0, 0); }
  50% { box-shadow: 0 0 26px rgba(215, 255, 0, 0.18); }
}

@media (max-width: 1100px) {
  .idwl-hero-grid,
  .idwl-two-col,
  .idwl-cta-card,
  .idwl-service-grid,
  .idwl-testimonial-grid,
  .idwl-process-line {
    grid-template-columns: 1fr;
  }

  .idwl-check-grid,
  .idwl-profit-cards {
    grid-template-columns: 1fr 1fr;
  }

  .idwl-hero-stage {
    min-height: 440px;
  }

  .idwl-hero-form-card {
    width: 100%;
    margin-left: 0;
  }

  .idwl-stage-card.is-secondary {
    left: 0;
  }
}

@media (max-width: 767px) {
  .idwl-page-shell {
    margin-top: -104px;
    background: linear-gradient(180deg, #07090d 0%, #0a0d13 18%, #f5f3ec 18%, #f5f3ec 100%);
  }

  .idwl-container {
    width: min(100% - 28px, var(--idr-max));
  }

  .idwl-section {
    padding: 72px 0;
  }

  .idwl-problem-section {
    padding: 204px 0 100px;
  }

  .idwl-hero {
    padding: 180px 0 84px;
  }

  .idwl-hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 4rem);
  }

  .idwl-copy h2,
  .idwl-section-head h2,
  .idwl-cta-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .idwl-stage-card {
    position: relative;
    width: 100%;
  }

  .idwl-stage-card.is-primary,
  .idwl-stage-card.is-secondary {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .idwl-hero-stage {
    display: grid;
    gap: 18px;
    min-height: auto;
  }

  .idwl-stage-badge {
    position: static;
    justify-self: start;
  }

  .idwl-stage-row,
  .idwl-workload-row {
    grid-template-columns: 1fr;
  }

  .idwl-showcase-card {
    width: 220px;
  }

  .idwl-workload-visual {
    min-height: 760px;
  }

  .idwl-problem-section .idwl-pain-rotator {
    min-height: 76px;
  }

  .idwl-hero-form-card .wpforms-field-container {
    grid-template-columns: 1fr;
  }

  .idwl-hero-form-card #wpforms-12950-field_5-container {
    grid-column: auto;
  }

  .idwl-cta-card-compact .idwl-btn {
    width: 100%;
  }

  .idwl-funnel-wrap {
    position: relative;
    right: auto;
    width: 100%;
    max-width: 360px;
    height: 320px;
    margin: 28px auto 0;
  }

  .idwl-partnership-visual {
    grid-template-columns: 1fr;
  }

  .idwl-connector {
    margin: 0 auto;
  }

  .idwl-profit-cards,
  .idwl-check-grid,
  .idwl-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .idwl-service-grid article,
  .idwl-process-line article,
  .idwl-testimonial-card,
  .idwl-form-card,
  .idwl-cta-card {
    padding: 22px;
  }

  .idwl-chart {
    min-height: 300px;
  }

  .idwl-label-1 {
    left: 6%;
    bottom: 14%;
  }

  .idwl-label-2 {
    right: 20%;
    top: 30%;
  }

  .idwl-label-3 {
    right: 5%;
    top: 10%;
  }
}
