:root {
  --green: #11a861;
  --green-dark: #07854b;
  --green-soft: #eaf8f1;
  --ink: #07121f;
  --muted: #536171;
  --line: #e6ecef;
  --shadow: 0 18px 45px rgba(16, 35, 50, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 50% 2%,
      rgba(17, 168, 97, 0.08),
      transparent 32rem
    ),
    #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 48px, 1210px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 236, 239, 0.65);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  position: relative;
  color: var(--green);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background: currentColor;
  border-radius: 4px;
}

.brand-mark::before {
  left: 0;
  width: 11px;
}

.brand-mark::after {
  left: 16px;
  width: 18px;
  transform: skewX(-34deg);
  transform-origin: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 22px rgba(17, 168, 97, 0.25);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-outline {
  color: #172233;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 25px rgba(16, 35, 50, 0.06);
}

.hero {
  /* padding: 46px 0 24px; */
  min-height: 650px;
  overflow: hidden;
  background: #fff;
}

.hero .container {
  width: min(100% - 128px, 1740px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(720px, 760px) minmax(760px, 1fr);
  align-items: center;
  gap: 0;
}

.hero-grid > div:first-child {
  position: relative;
  z-index: 2;
}

.pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #d6f1e3;
  font-size: 16px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 57px 0 31px;
  font-size: clamp(54px, 3.7vw, 68px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
}

.headline-line {
  display: inline-block;
  color: var(--ink);
  white-space: nowrap;
}

h1 .accent,
.green-text {
  color: var(--green);
}

.hero-copy {
  max-width: 675px;
  color: #3f4c62;
  font-size: 20px;
  line-height: 1.72;
  margin-bottom: 39px;
}

.hero-actions,
.benefits {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions {
  margin-bottom: 41px;
}

.hero-actions .btn {
  min-height: 73px;
  padding: 0 39px;
  border-radius: 7px;
  font-size: 18px;
  box-shadow: 0 18px 30px rgba(17, 168, 97, 0.17);
}

.hero-actions .btn-outline {
  min-width: 236px;
  box-shadow: 0 13px 30px rgba(16, 35, 50, 0.07);
}

.play {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 2px solid var(--green);
}

.benefits {
  width: 930px;
  gap: 43px;
  color: #344153;
  font-size: 16px;
  font-weight: 700;
}

.benefit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.icon-dot {
  width: 31px;
  height: 31px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
}

.hero-visual {
  min-height: 590px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-photo {
  position: absolute;
  inset: 0 auto auto -190px;
  width: calc(100% + 310px);
  height: 590px;
  object-fit: cover;
  object-position: 58% center;
  border-radius: 0;
  filter: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 16%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 16%,
    #000 92%,
    transparent 100%
  );
}

.stat-stack {
  position: absolute;
  right: 8px;
  top: 46px;
  display: grid;
  gap: 21px;
}

.stat-card {
  width: 316px;
  min-height: 166px;
  position: relative;
  padding: 34px 34px 28px 84px;
  display: block;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(222, 231, 235, 0.9);
  border-radius: 9px;
  box-shadow: 0 26px 55px rgba(16, 35, 50, 0.12);
}

.stat-card .icon-dot {
  position: absolute;
  left: 0;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  background: rgba(220, 249, 235, 0.95);
}

.stat-label {
  color: #6d7788;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.stat-sub {
  margin-top: 11px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.logo-bar {
  margin: 18px auto 0;
  padding: 27px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(16, 35, 50, 0.05);
  overflow-x: auto;
}

.trusted {
  color: #657282;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.logo-text {
  flex: 0 0 auto;
  color: #243148;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.88;
}

.logo-text:nth-child(4) {
  color: #0b3c82;
}
.logo-text:nth-child(5) {
  color: #c33321;
}
.logo-text:nth-child(6) {
  color: #41556a;
}
.logo-text:nth-child(7) {
  color: #a20e61;
}
.logo-text:nth-child(8) {
  color: #157ac0;
}
.logo-text:nth-child(9) {
  color: #6026a8;
}

.section {
  padding: 34px 0;
}

#journey {
  padding-top: 42px;
  padding-bottom: 40px;
}

#journey .container {
  width: min(100% - 22px, 1780px);
}

.section-title {
  margin-bottom: 28px;
  text-align: center;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 800;
}

.section-title p {
  color: #6d7886;
  font-size: 19px;
  margin: 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-top: 40px;
}

.journey-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  border: 2px solid #d9f0e5;
  background: linear-gradient(
    90deg,
    #effaf5 0%,
    #f7fffb 40%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 0 16px 46px rgba(16, 35, 50, 0.06);
  padding: 44px;
}

.journey-card.light {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 43%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-color: #edf2f3;
}

.journey-content {
  width: 43%;
  min-width: 340px;
  position: relative;
  z-index: 2;
}

.journey-card h3 {
  margin-bottom: 28px;
  font-size: 37px;
  line-height: 1.05;
  font-weight: 800;
}

.journey-card p {
  color: #24303c;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 0;
}

.mini-title {
  margin: 32px 0 24px;
  color: var(--green-dark);
  font-size: 19px;
  font-weight: 800;
}

.check-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 19px;
  color: #344251;
  font-size: 17px;
  font-weight: 600;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 17px;
}

.check-list i {
  width: 20px;
  height: 20px;
  color: var(--green);
  stroke-width: 3;
  fill: rgba(17, 168, 97, 0.18);
  flex: 0 0 auto;
}

.journey-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%);
}

.journey-card .btn {
  min-height: 58px;
  padding: 0 31px;
  border-radius: 7px;
  font-size: 16px;
}

.journey-card .btn-outline {
  border: 2px solid #a7e3c5;
  background: #fff;
  box-shadow: none;
}

.industry-grid,
.feature-grid {
  display: grid;
  gap: 14px;
}

.industry-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}

.industry-card,
.feature-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(16, 35, 50, 0.04);
}

.industry-card {
  min-height: 150px;
  padding: 28px 12px 22px;
  display: grid;
  place-items: center;
  gap: 13px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.industry-card .icon-dot {
  width: 60px;
  height: 60px;
  background: #e8f8f0;
}

.industry-card i {
  width: 34px;
  height: 34px;
  stroke-width: 2.3;
}

.industries-section {
  padding-top: 38px;
  padding-bottom: 45px;
}

.industries-section .container {
  width: min(100% - 56px, 1740px);
}

.industries-section .section-title {
  margin-bottom: 35px;
}

.industries-section .section-title h2 {
  font-size: 36px;
  line-height: 1.15;
}

.usecase-wrap {
  padding: 40px 0 42px;
  background: #fff;
}

.usecase-wrap .container {
  width: min(100% - 76px, 1740px);
}

.usecase-wrap .section-title {
  margin-bottom: 34px;
}

.usecase-wrap .section-title h2 {
  font-size: 35px;
  line-height: 1.15;
}

.tags {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 22px;
}

.tag {
  min-width: 0;
  height: 61px;
  padding: 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  color: #364352;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 11px 24px rgba(16, 35, 50, 0.04);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.tag i {
  width: 21px;
  height: 21px;
  color: var(--green);
  stroke-width: 2.5;
  flex: 0 0 auto;
}

.feature-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  min-height: 238px;
  padding: 34px 33px 28px;
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(16, 35, 50, 0.08);
}

.feature-card .icon-dot {
  width: 48px;
  height: 48px;
  margin-bottom: 31px;
  background: #e8f8f0;
}

.feature-card i {
  width: 29px;
  height: 29px;
  stroke-width: 2.2;
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.feature-card p {
  color: #52606d;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

#why {
  padding-top: 38px;
  padding-bottom: 28px;
}

#why .container {
  width: min(100% - 52px, 1740px);
}

#why .section-title {
  margin-bottom: 28px;
}

#why .section-title h2 {
  font-size: 31px;
  line-height: 1.2;
}

.dashboard-cta {
  margin: 40px 0 36px;
  min-height: 326px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 23% 50%,
      rgba(67, 214, 136, 0.45),
      transparent 31%
    ),
    linear-gradient(90deg, #07854b, #12b967);
  color: #fff;
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  align-items: center;
  gap: 26px;
  padding: 44px 52px;
}

.dashboard-cta h2 {
  max-width: 515px;
  margin-bottom: 27px;
  font-size: 37px;
  line-height: 1.14;
  font-weight: 800;
}

.dashboard-cta p {
  max-width: 485px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.dashboard-cta .btn {
  min-height: 64px;
  padding: 0 32px;
  border-radius: 7px;
  font-size: 16px;
  min-width: 316px;
}

.dashboard-art {
  min-height: 270px;
  position: relative;
}

.mock-dashboard {
  position: absolute;
  right: 180px;
  top: -28px;
  width: 664px;
  height: 292px;
  display: grid;
  grid-template-columns: 155px 1fr;
  background: #fff;
  color: var(--ink);
  border-radius: 9px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.dash-sidebar {
  padding: 58px 20px 24px;
  background: #f8fbf9;
  display: grid;
  align-content: start;
  gap: 18px;
  color: #8995a1;
  font-size: 12px;
  font-weight: 800;
}

.dash-sidebar span:first-child {
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 4px;
  padding: 8px;
}

.dash-main {
  padding: 24px;
}

.dash-title {
  margin-bottom: 15px;
  color: #5b6774;
  font-size: 13px;
  font-weight: 800;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dash-box {
  padding: 16px;
  min-height: 78px;
  background: #f6f8f8;
  border-radius: 6px;
  font-size: 11px;
  color: #74808c;
  font-weight: 700;
}

.dash-box strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 21px;
}

.line-chart {
  height: 102px;
  margin-top: 18px;
  border-radius: 6px;
  background:
    linear-gradient(
      145deg,
      transparent 44%,
      rgba(17, 168, 97, 0.85) 45%,
      rgba(17, 168, 97, 0.85) 47%,
      transparent 48%
    ),
    linear-gradient(
      30deg,
      transparent 50%,
      rgba(17, 168, 97, 0.55) 51%,
      rgba(17, 168, 97, 0.55) 53%,
      transparent 54%
    ),
    #fbfdfc;
  border: 1px solid #edf2f2;
}

.campaign-card {
  position: absolute;
  right: 153px;
  bottom: 8px;
  width: 262px;
  padding: 20px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 700;
}

.campaign-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
}

.campaign-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: #52606d;
}

.headset {
  position: absolute;
  right: 0;
  top: 36px;
  width: 170px;
  height: 210px;
}

.headset::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 3px;
  width: 116px;
  height: 116px;
  border: 22px solid #25323b;
  border-bottom-color: transparent;
  border-radius: 80px 80px 30px 30px;
  transform: rotate(-8deg);
}

.headset::after {
  content: "";
  position: absolute;
  left: 37px;
  top: 91px;
  width: 106px;
  height: 76px;
  background:
    radial-gradient(circle at 20px 32px, #0f1d25 0 19px, transparent 20px),
    radial-gradient(circle at 72px 32px, #0f1d25 0 19px, transparent 20px);
}

.testimonials {
  padding: 35px 0 55px;
  background: linear-gradient(180deg, rgba(248, 250, 251, 0.8), #fff);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.testimonial-card {
  min-height: 189px;
  padding: 30px 34px;
  position: relative;
  box-shadow: 0 17px 38px rgba(16, 35, 50, 0.07);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 9px;
  left: 28px;
  color: rgba(17, 168, 97, 0.18);
  font-size: 74px;
  line-height: 1;
  font-weight: 800;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: #41505d;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
}

.person strong {
  display: block;
  font-size: 13px;
}

.person span {
  color: #6c7784;
  font-size: 11px;
  font-weight: 600;
}

.slider-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  color: #9aa6b1;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfd8dc;
}

.dot.active {
  background: var(--green);
}

.prefooter {
  width: min(100% - 44px, 960px);
  margin: 28px auto 43px;
  min-height: 86px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(90deg, #edf9f3 0%, #effaf4 78%, #dff5eb 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 245px 18px 94px;
}

.prefooter h2 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.prefooter p {
  margin: 0;
  color: #536171;
  font-size: 12px;
}

.pt-3 {
  margin-top: 14px;
}

.prefooter .btn {
  position: absolute;
  right: 205px;
  top: 50%;
  min-width: 164px;
  min-height: 37px;
  transform: translateY(-50%);
  border-radius: 5px;
  font-size: 10px;
  box-shadow: none;
}

.prefooter .btn:hover {
  transform: translateY(calc(-50% - 1px));
}

.prefooter-photo {
  position: absolute;
  right: 72px;
  bottom: 0;
  width: 136px;
  height: 104px;
  object-fit: cover;
  object-position: 82% 20%;
}

footer {
  padding: 0 0 19px;
  background: #fff;
}

footer .container {
  width: min(100% - 44px, 960px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 58px;
  padding: 0 54px 31px;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand {
  margin-bottom: 13px;
  gap: 8px;
  font-size: 22px;
}

.footer-brand .brand-mark {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
}

.footer-brand .brand-mark::before {
  width: 9px;
}

.footer-brand .brand-mark::after {
  left: 13px;
  width: 17px;
}

.footer-brand p {
  max-width: 220px;
  color: #51606f;
  font-size: 10px;
  line-height: 1.55;
  margin-bottom: 0;
}

.social {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  color: #26333f;
  font-size: 11px;
  font-weight: 800;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 800;
}

.footer-col a {
  display: block;
  margin: 0 0 8px;
  color: #4f5d6b;
  font-size: 10px;
  font-weight: 500;
}

.copyright {
  padding-top: 14px;
  text-align: center;
  color: #6a7683;
  font-size: 10px;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 20px;
  }

  .hero-grid,
  .journey-grid,
  .dashboard-cta,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .industry-grid,
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mock-dashboard {
    right: 120px;
  }

  .prefooter {
    padding-right: 190px;
    padding-left: 35px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1210px);
  }

  .nav {
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .brand {
    font-size: 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    display: block;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-visual {
    margin-top: 26px;
    min-height: 470px;
  }

  .hero-photo {
    height: 400px;
  }

  .stat-stack {
    right: 8px;
    top: 220px;
  }

  .stat-card {
    width: 184px;
    min-height: 92px;
    padding: 14px;
  }

  .stat-value {
    font-size: 22px;
  }

  .logo-bar {
    justify-content: flex-start;
  }

  .journey-content {
    width: 100%;
  }

  .journey-card {
    min-height: 560px;
  }

  .journey-img {
    width: 100%;
    height: 270px;
    top: auto;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%);
    mask-image: linear-gradient(180deg, transparent, #000 20%);
  }

  .industry-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tag {
    min-width: 0;
    width: 100%;
  }

  .tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-cta {
    padding: 26px;
  }

  .dashboard-cta h2 {
    font-size: 30px;
  }

  .dashboard-art {
    min-height: 320px;
  }

  .mock-dashboard {
    width: 100%;
    right: 0;
    grid-template-columns: 74px 1fr;
  }

  .campaign-card {
    right: 18px;
  }

  .headset {
    display: none;
  }

  .prefooter {
    padding: 24px;
    display: grid;
  }

  .prefooter-photo {
    display: none;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .industry-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tags {
    grid-template-columns: 1fr;
  }

  .benefits {
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }
}

.active-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eceff1;
  z-index: 9999;
}

.navbar {
  width: min(100% - 96px, 1660px);
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 286px;
}

.logo-mark {
  width: 55px;
  height: 50px;
  position: relative;
  flex: 0 0 55px;
  color: #22bf6b;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background: currentColor;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.logo-mark::before {
  left: 0;
  width: 17px;
  border-radius: 3px;
}

.logo-mark::after {
  left: 25px;
  width: 38px;
  border-radius: 7px 3px 3px 7px;
  clip-path: polygon(
    22% 0,
    100% 0,
    47% 50%,
    100% 100%,
    22% 100%,
    0 76%,
    19% 50%,
    0 24%
  );
}

.wordmark {
  color: #070b10;
  font-size: 43px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  flex: 1 1 auto;
}

.menu a {
  /* color: #07111f; */
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.menu a:hover {
  color: #16a34a;
}

.start-btn {
  min-width: 250px;
  height: 58px;
  padding: 0 32px;
  border-radius: 8px;
  background: #139b51;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 11px 22px rgba(19, 155, 81, 0.2);
}

.start-btn:hover {
  background: #0f8746;
}

body {
  padding-top: 96px;
}

@media (max-width: 1100px) {
  .navbar {
    width: min(100% - 40px, 1660px);
    gap: 24px;
  }

  .logo {
    flex-basis: auto;
  }

  .menu {
    gap: 22px;
  }

  .menu a {
    font-size: 14px;
  }

  .start-btn {
    min-width: 180px;
  }
}

@media (max-width: 760px) {
  .active-header,
  .navbar {
    height: 82px;
  }

  body {
    padding-top: 82px;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .logo-mark::before {
    width: 13px;
  }

  .logo-mark::after {
    left: 18px;
    width: 28px;
  }

  .wordmark {
    font-size: 32px;
  }

  .menu {
    display: none;
  }

  .start-btn {
    min-width: 0;
    height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }
}

/* Final responsive scale pass to match the supplied full-page reference. */
body {
  padding-top: 76px;
}

.container,
.hero .container,
#journey .container,
.industries-section .container,
.usecase-wrap .container,
#why .container,
.testimonials .container {
  width: min(100% - 48px, 1360px);
}

.active-header,
.navbar {
  height: 76px;
}

.navbar {
  width: min(100% - 48px, 1360px);
  gap: 36px;
}

.logo {
  flex: 0 0 170px;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.logo-mark::before {
  width: 12px;
  border-radius: 3px;
}

.logo-mark::after {
  left: 17px;
  width: 24px;
}

.wordmark {
  font-size: 32px;
}

.menu {
  gap: 48px;
}

.menu a {
  font-size: 13px;
  font-weight: 700;
}

.start-btn {
  min-width: 176px;
  height: 45px;
  padding: 0 23px;
  border-radius: 6px;
  font-size: 12px;
}

.hero {
  min-height: 535px;
  /* padding: 62px 0 22px; */
}

.hero-grid {
  grid-template-columns: minmax(440px, 555px) minmax(620px, 1fr);
  gap: 12px;
}

.pill {
  padding: 8px 13px;
  font-size: 12px;
}

h1 {
  max-width: 610px;
  margin: 51px 0 28px;
  font-size: clamp(42px, 3.6vw, 56px);
  line-height: 1.12;
}

.hero-copy {
  max-width: 485px;
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 30px;
}

.hero-actions {
  gap: 14px;
  margin-bottom: 36px;
}

.hero-actions .btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 6px;
  font-size: 13px;
}

.hero-actions .btn-outline {
  min-width: 155px;
}

.play {
  width: 24px;
  height: 24px;
}

.benefits {
  width: 740px;
  gap: 38px;
  font-size: 12px;
}

.benefit {
  gap: 9px;
}

.icon-dot {
  width: 26px;
  height: 26px;
}

.hero-visual {
  min-height: 455px;
}

.hero-photo {
  inset: -18px auto auto -98px;
  width: calc(100% + 92px);
  height: 482px;
  object-position: 62% center;
}

.stat-stack {
  right: 0;
  top: 48px;
  gap: 17px;
}

.stat-card {
  width: 240px;
  min-height: 104px;
  padding: 22px 22px 20px 70px;
  border-radius: 7px;
}

.stat-card .icon-dot {
  width: 50px;
  height: 50px;
}

.stat-label {
  font-size: 11px;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 28px;
}

.stat-sub {
  margin-top: 8px;
  font-size: 11px;
}

.spark {
  right: 23px;
  bottom: 22px;
  width: 73px;
  height: 28px;
}

.logo-bar {
  width: min(100% - 48px, 1360px);
  margin: 14px auto 0;
  padding: 20px 26px;
  min-height: 72px;
  gap: 33px;
  border-radius: 7px;
}

.trusted {
  font-size: 10px;
}

.logo-text {
  font-size: 16px;
}

#journey {
  padding-top: 38px;
  padding-bottom: 34px;
}

.section-title {
  margin-bottom: 26px;
}

.section-title h2,
.industries-section .section-title h2,
.usecase-wrap .section-title h2,
#why .section-title h2 {
  font-size: 30px;
}

.section-title p {
  font-size: 14px;
}

.journey-grid {
  gap: 28px;
  margin-top: 30px;
}

.journey-card {
  min-height: 378px;
  padding: 32px;
}

.journey-content {
  width: 47%;
  min-width: 250px;
}

.journey-card h3 {
  margin-bottom: 18px;
  font-size: 29px;
}

.journey-card p {
  font-size: 14px;
  line-height: 1.65;
}

.mini-title {
  margin: 22px 0 14px;
  font-size: 14px;
}

.check-list {
  gap: 12px;
  margin-bottom: 24px;
  font-size: 13px;
}

.check-list li {
  gap: 10px;
}

.check-list i {
  width: 16px;
  height: 16px;
}

.journey-card .btn {
  min-height: 43px;
  padding: 0 22px;
  font-size: 12px;
}

.journey-img {
  width: 61%;
}

.industries-section {
  padding-top: 34px;
  padding-bottom: 35px;
}

.industry-grid {
  gap: 16px;
}

.industry-card {
  min-height: 127px;
  padding: 22px 10px 18px;
  gap: 11px;
  font-size: 12px;
}

.industry-card .icon-dot {
  width: 48px;
  height: 48px;
}

.industry-card i {
  width: 27px;
  height: 27px;
}

.usecase-wrap {
  padding: 34px 0 36px;
}

.usecase-wrap .section-title {
  margin-bottom: 28px;
}

.tags {
  gap: 14px 18px;
}

.tag {
  height: 42px;
  padding: 0 18px;
  gap: 10px;
  font-size: 12px;
  justify-content: center;
}

.tag i {
  width: 16px;
  height: 16px;
}

#why {
  padding-top: 36px;
  padding-bottom: 24px;
}

.feature-grid {
  gap: 18px;
}

.feature-card {
  min-height: 194px;
  padding: 30px 24px 24px;
}

.feature-card .icon-dot {
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
}

.feature-card i {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  font-size: 13px;
}

.feature-card p {
  font-size: 11px;
  line-height: 1.65;
}

.dashboard-cta {
  min-height: 270px;
  margin: 34px 0 34px;
  padding: 36px 42px;
  grid-template-columns: 0.38fr 0.62fr;
}

.dashboard-cta h2 {
  max-width: 415px;
  font-size: 31px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.dashboard-cta p {
  max-width: 360px;
  font-size: 14px;
  margin-bottom: 29px;
}

.dashboard-cta .btn {
  min-width: 230px;
  min-height: 50px;
  font-size: 12px;
}

.dashboard-art {
  min-height: 220px;
}

.mock-dashboard {
  right: 145px;
  top: -22px;
  width: 560px;
  height: 236px;
  grid-template-columns: 112px 1fr;
}

.dash-sidebar {
  padding: 46px 16px 20px;
  gap: 14px;
  font-size: 10px;
}

.dash-main {
  padding: 19px;
}

.dash-box {
  min-height: 62px;
  padding: 12px;
  font-size: 9px;
}

.dash-box strong {
  font-size: 17px;
}

.line-chart {
  height: 79px;
}

.campaign-card {
  right: 122px;
  bottom: 2px;
  width: 232px;
  padding: 17px;
  font-size: 10px;
}

.campaign-card strong {
  font-size: 13px;
}

.headset {
  right: 0;
  top: 28px;
  width: 146px;
  height: 180px;
}

.testimonials {
  padding: 42px 0 52px;
}

.testimonial-grid {
  width: min(100%, 1080px);
  margin: 28px auto 0;
  gap: 22px;
}

.testimonial-card {
  min-height: 168px;
  padding: 29px 34px;
}

.prefooter,
footer .container {
  width: min(100% - 44px, 960px);
}

@media (max-width: 1100px) {
  body {
    padding-top: 72px;
  }

  .active-header,
  .navbar {
    height: 72px;
  }

  .container,
  .hero .container,
  #journey .container,
  .industries-section .container,
  .usecase-wrap .container,
  #why .container,
  .testimonials .container {
    width: min(100% - 36px, 900px);
  }

  .menu {
    display: none;
  }

  .hero-grid,
  .journey-grid,
  .dashboard-cta,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 22px;
  }

  .hero-photo {
    inset: 0 auto auto 0;
    width: 100%;
    height: 430px;
  }

  .stat-stack {
    right: 14px;
    top: 36px;
  }

  .benefits {
    width: auto;
  }

  .journey-card {
    min-height: 430px;
  }

  .industry-grid,
  .feature-grid,
  .tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-dashboard {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 620px);
  }

  .campaign-card {
    right: 20px;
  }

  .headset {
    display: none;
  }
}

@media (max-width: 640px) {
  .container,
  .hero .container,
  #journey .container,
  .industries-section .container,
  .usecase-wrap .container,
  #why .container,
  .testimonials .container,
  .prefooter,
  footer .container {
    width: min(100% - 28px, 560px);
  }

  .logo-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .wordmark {
    font-size: 26px;
  }

  .start-btn {
    min-width: 0;
    height: 40px;
    padding: 0 14px;
  }

  h1 {
    font-size: 36px;
  }

  .headline-line {
    white-space: normal;
  }

  .hero-actions .btn,
  .btn {
    width: auto;
  }

  .journey-content {
    width: 100%;
    min-width: 0;
  }

  .journey-card {
    min-height: 590px;
  }

  .journey-img {
    width: 100%;
    height: 300px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 23%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 23%);
  }

  .industry-grid,
  .feature-grid,
  .tags,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-cta {
    padding: 26px;
  }

  .prefooter {
    padding: 22px;
  }

  .prefooter .btn {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .prefooter-photo {
    display: none;
  }

  .footer-grid {
    padding: 0 0 28px;
    gap: 24px;
  }
}

/* Testimonials and footer final match to the provided reference. */
.testimonials {
  margin-top: 10px;
  padding: 58px 0 64px;
  background: #f7f8f9;
}

.testimonials .container {
  width: min(100% - 48px, 1360px);
}

.testimonials .section-title {
  margin-bottom: 34px;
}

.testimonials .section-title h2 {
  font-size: 28px;
  line-height: 1.2;
}

.testimonial-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.testimonial-card {
  min-height: 184px;
  padding: 32px 36px 29px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #edf1f2;
  box-shadow: 0 18px 45px rgba(16, 35, 50, 0.06);
}

.testimonial-card::before {
  top: 7px;
  left: 29px;
  font-size: 68px;
  color: rgba(17, 168, 97, 0.16);
}

.testimonial-card p {
  min-height: 65px;
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1.65;
  color: #394958;
}

.avatar {
  width: 42px;
  height: 42px;
}

.person strong {
  font-size: 12px;
}

.person span {
  font-size: 10px;
}

.slider-dots {
  margin-top: 27px;
  gap: 11px;
}

.prefooter {
  width: min(100% - 48px, 1360px);
  min-height: 92px;
  margin: 42px auto 42px;
  padding: 20px 330px 20px 112px;
  border-radius: 8px;
  background: linear-gradient(90deg, #edf9f3 0%, #edf9f3 72%, #e3f6ec 100%);
}

.prefooter h2 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.prefooter p {
  font-size: 12px;
}

.prefooter .btn {
  right: 300px;
  min-width: 198px;
  min-height: 43px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}

.prefooter-photo {
  right: 110px;
  width: 150px;
  height: 112px;
  object-position: 82% 18%;
}

footer {
  padding-bottom: 24px;
}

footer .container {
  width: min(100% - 48px, 1360px);
}

.footer-grid {
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 92px;
  padding: 0 72px 42px;
  border-bottom: 1px solid #e8edf0;
}

.footer-brand .brand {
  margin-bottom: 16px;
  gap: 9px;
  font-size: 27px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
}

.footer-brand .brand-mark::before {
  width: 11px;
}

.footer-brand .brand-mark::after {
  left: 15px;
  width: 20px;
}

.footer-brand p {
  max-width: 260px;
  font-size: 12px;
  line-height: 1.6;
}

.social {
  gap: 18px;
  margin-top: 20px;
  font-size: 12px;
}

.social a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #26333f;
  background: #f7faf9;
  border: 1px solid #e5ecef;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.social a:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
}

.social i {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

.footer-col h3 {
  margin-bottom: 14px;
  font-size: 12px;
}

.footer-col a {
  margin-bottom: 9px;
  font-size: 11px;
}

.copyright {
  padding-top: 18px;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .testimonials .container,
  .prefooter,
  footer .container {
    width: min(100% - 36px, 900px);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
  }

  .prefooter {
    padding: 22px 220px 22px 36px;
  }

  .prefooter .btn {
    right: 190px;
  }

  .prefooter-photo {
    right: 34px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    padding-right: 0;
    gap: 34px 60px;
  }
}

@media (max-width: 640px) {
  .testimonials {
    padding: 42px 0 48px;
  }

  .testimonials .container,
  .prefooter,
  footer .container {
    width: min(100% - 28px, 560px);
  }

  .prefooter {
    padding: 22px;
  }

  .prefooter .btn {
    position: static;
    min-width: 0;
    width: fit-content;
    margin-top: 16px;
    transform: none;
  }

  .prefooter .btn:hover {
    transform: translateY(-1px);
  }

  .prefooter-photo {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.testimonial-window {
  width: 100%;
  overflow: hidden;
}

.testimonial-grid {
  will-change: transform;
  transition: transform 480ms ease;
}

.testimonial-grid.carousel-track {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}

.testimonial-grid.carousel-track .testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
}

.slider-dots button {
  border: 0;
  padding: 0;
  cursor: pointer;
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.slider-arrow {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #dce5e8;
  border-radius: 999px;
  color: #96a3ad;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .testimonial-grid.carousel-track .testimonial-card {
    flex-basis: 100%;
  }
}
.active {
  color: #11a861;
}

/* Hire caller page */
.hire-page {
  background: #fff;
}

.hire-page .section {
  padding: 46px 0;
}

.hire-hero {
  padding: 64px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(17, 168, 97, 0.13), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fcfa 100%);
}

.hire-hero .container {
  width: min(100% - 112px, 1700px);
}

.hire-hero-grid {
  display: grid;
  grid-template-columns: minmax(820px, 0.95fr) minmax(560px, 1fr);
  gap: 60px;
  align-items: center;
}

.hire-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hire-hero-copy h1 {
  margin: 34px 0 22px;
  max-width: 820px;
  font-size: clamp(48px, 3.55vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hire-hero-copy .headline-line {
  white-space: nowrap;
}

.hire-hero-media {
  position: relative;
  z-index: 1;
  min-height: 430px;
  border: 1px solid rgba(17, 168, 97, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: var(--green-soft);
  box-shadow: 0 22px 54px rgba(16, 35, 50, 0.09);
}

.hire-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.hire-page .hero-actions .btn-outline {
  min-width: 220px;
}

.hire-page .play {
  color: var(--green);
  background: #e7f8ef;
  border: 1px solid #bdebd3;
}

.hire-page .play i {
  width: 15px;
  height: 15px;
  stroke-width: 2.7;
}

.hire-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.hire-mini-card,
.hire-model-card,
.hire-steps article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 35, 50, 0.06);
}

.hire-mini-card {
  min-height: 172px;
  padding: 24px;
}

.hire-mini-card .icon-dot {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.hire-mini-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.hire-mini-card p {
  margin: 0;
  color: #52606d;
  font-size: 12px;
  line-height: 1.6;
}

.hire-steps {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.hire-steps article {
  min-height: 138px;
  padding: 18px 12px;
  text-align: center;
}

.hire-steps article span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.hire-steps article i {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  color: var(--green);
  stroke-width: 2.3;
}

.hire-steps article h3 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.hire-steps article p {
  margin: 0;
  color: #52606d;
  font-size: 11px;
  line-height: 1.45;
}

.hire-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hire-model-card {
  padding: 28px;
}

.hire-model-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.hire-model-card p {
  margin: 0;
  color: #52606d;
  font-size: 14px;
  line-height: 1.6;
}

.hire-model-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
  color: #344251;
  font-size: 13px;
  font-weight: 600;
}

.hire-model-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
  vertical-align: middle;
}

.hire-inline-cta {
  margin-top: 28px;
  margin-bottom: 28px;
}

.hire-final-cta {
  margin-top: 34px;
  margin-bottom: 58px;
}

.hire-proof-list {
  display: grid;
  gap: 16px;
  align-content: center;
  justify-self: end;
  min-width: 260px;
  color: #fff;
}

.hire-proof-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.hire-proof-list i {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.hire-page .industry-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.hire-page .tags {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1520px) {
  .hire-hero .container {
    width: min(100% - 64px, 1360px);
  }

  .hire-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 36px;
  }

  .hire-hero-copy h1 {
    max-width: 680px;
    font-size: clamp(44px, 4.1vw, 58px);
  }

  .hire-hero-copy .headline-line {
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .hire-hero .container {
    width: min(100% - 36px, 900px);
  }

  .hire-hero-grid {
    grid-template-columns: 1fr;
  }

  .hire-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hire-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hire-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hire-page .industry-grid,
  .hire-page .tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hire-proof-list {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hire-hero {
    padding-top: 40px;
  }

  .hire-hero-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hire-hero-copy .headline-line {
    white-space: normal;
  }

  .hire-card-grid,
  .hire-steps,
  .hire-model-grid,
  .hire-page .industry-grid,
  .hire-page .tags {
    grid-template-columns: 1fr;
  }

  .hire-hero-media,
  .hire-hero-media img {
    min-height: 320px;
  }

  .hire-final-cta {
    margin-bottom: 42px;
  }
}

/* Caller page */
.caller-page {
  background: #fff;
}

.caller-page .section {
  padding: 46px 0;
}

.caller-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(17, 168, 97, 0.15), transparent 30rem),
    linear-gradient(180deg, #fff 0%, #f8fcfa 100%);
}

.caller-hero .hire-hero-media {
  background: #eaf8f1;
}

.caller-hero .hire-hero-media img {
  object-position: 54% center;
}

.caller-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #344251;
  font-size: 13px;
  font-weight: 800;
}

.caller-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #dbeee5;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(16, 35, 50, 0.05);
}

.caller-hero-points i {
  width: 16px;
  height: 16px;
  color: var(--green);
  stroke-width: 2.5;
}

.caller-steps {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.caller-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.caller-app-section {
  background: linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
}

.caller-app-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(500px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 35, 50, 0.07);
  overflow: hidden;
}

.caller-left-title {
  text-align: left;
  margin-bottom: 28px;
}

.caller-app-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  color: #344251;
  font-size: 14px;
  font-weight: 700;
}

.caller-app-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.caller-app-list i {
  width: 20px;
  height: 20px;
  color: var(--green);
  stroke-width: 2.4;
  flex: 0 0 auto;
}

.caller-phone-demo,
.caller-dashboard-art {
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caller-dashboard-art {
  min-height: 360px;
}

.caller-dashboard-art .mock-dashboard {
  right: 104px;
  top: 16px;
  width: 560px;
  height: 248px;
}

.caller-dashboard-art .campaign-card {
  right: 58px;
  bottom: 8px;
  z-index: 2;
}

.phone-shell {
  width: 230px;
  min-height: 340px;
  padding: 20px;
  border: 8px solid #172233;
  border-radius: 28px;
  background: #f8fbfa;
  box-shadow: 0 22px 48px rgba(16, 35, 50, 0.18);
}

.phone-dashboard {
  transform: rotate(-7deg) translateX(24px);
}

.phone-campaigns {
  width: 252px;
  transform: rotate(5deg) translateX(-12px);
  background: #fff;
}

.phone-top {
  margin-bottom: 18px;
  color: #172233;
  font-size: 12px;
  font-weight: 800;
}

.earning-box {
  padding: 16px;
  border-radius: 8px;
  background: var(--green-soft);
  border: 1px solid #d6f1e3;
}

.earning-box span,
.phone-stats span {
  display: block;
  color: #6d7788;
  font-size: 10px;
  font-weight: 700;
}

.earning-box strong {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 25px;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.phone-stats span {
  padding: 12px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--line);
}

.phone-stats strong {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 20px;
}

.score-line {
  height: 76px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(145deg, transparent 47%, rgba(17, 168, 97, 0.85) 48%, rgba(17, 168, 97, 0.85) 51%, transparent 52%),
    #fff;
}

.campaign-option {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #344251;
  background: #f8fbfa;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-align: left;
}

.campaign-option strong {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 9px;
}

.campaign-option.active {
  border-color: #a7e3c5;
  background: var(--green-soft);
  box-shadow: 0 10px 22px rgba(17, 168, 97, 0.1);
}

.campaign-detail {
  min-height: 58px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 7px;
  color: #52606d;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.55;
}

.caller-tags {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.caller-testimonials {
  margin-top: 0;
  background: #f7f8f9;
}

.caller-inline-cta .prefooter-photo {
  object-position: 58% 22%;
}

@media (max-width: 1100px) {
  .caller-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caller-benefit-grid,
  .caller-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .caller-app-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .caller-phone-demo {
    justify-content: flex-start;
  }

  .caller-dashboard-art {
    min-height: 430px;
    justify-content: flex-start;
  }

  .caller-dashboard-art .mock-dashboard {
    right: auto;
    top: 0;
    width: min(100%, 620px);
  }

  .caller-dashboard-art .campaign-card {
    right: 18px;
    bottom: 0;
  }
}

@media (max-width: 760px) {
  .caller-steps,
  .caller-benefit-grid,
  .caller-tags {
    grid-template-columns: 1fr;
  }

  .caller-app-card {
    padding: 26px;
  }

  .caller-phone-demo,
  .caller-dashboard-art {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .caller-dashboard-art .mock-dashboard,
  .caller-dashboard-art .campaign-card {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .phone-shell,
  .phone-campaigns {
    width: min(100%, 260px);
    min-height: 0;
    transform: none;
  }
}

/* Site-wide readability pass for all Kallo pages. */
body {
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.menu a,
.nav-links,
.start-btn,
.btn {
  font-size: 14px;
}

.pill {
  font-size: 14px;
}

h1 {
  font-size: clamp(48px, 4vw, 66px);
  line-height: 1.08;
}

.hero-copy {
  font-size: 17px;
  line-height: 1.75;
}

.benefits,
.caller-hero-points,
.check-list,
.mini-title,
.journey-card p,
.section-title p {
  font-size: 15px;
}

.section-title h2,
.industries-section .section-title h2,
.usecase-wrap .section-title h2,
#why .section-title h2,
.testimonials .section-title h2 {
  font-size: clamp(32px, 2.4vw, 40px);
  line-height: 1.15;
}

.journey-card h3 {
  font-size: 32px;
}

.industry-card {
  font-size: 14px;
}

.tag {
  height: 50px;
  font-size: 14px;
  font-weight: 700;
}

.feature-card h3,
.hire-mini-card h3,
.hire-model-card h3 {
  font-size: 16px;
}

.feature-card p,
.hire-mini-card p,
.hire-model-card p,
.hire-model-card ul,
.hire-proof-list span,
.caller-app-list,
.testimonial-card p {
  font-size: 14px;
}

.hire-steps article h3 {
  font-size: 14px;
}

.hire-steps article p {
  font-size: 13px;
}

.hire-steps article span,
.stat-label,
.stat-sub,
.trusted {
  font-size: 12px;
}

.dashboard-cta p {
  font-size: 16px;
}

.dashboard-cta .btn {
  font-size: 14px;
}

.dash-sidebar,
.campaign-card {
  font-size: 12px;
}

.dash-box {
  font-size: 11px;
}

.dash-box strong {
  font-size: 20px;
}

.campaign-card strong {
  font-size: 15px;
}

.prefooter h2 {
  font-size: 22px;
}

.prefooter p,
.prefooter .btn {
  font-size: 13px;
}

.footer-brand p,
.footer-col h3,
.footer-col a,
.copyright,
.person span {
  font-size: 12px;
}

.person strong {
  font-size: 13px;
}

@media (max-width: 760px) {
  .menu a,
  .nav-links,
  .start-btn,
  .btn {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .section-title h2,
  .industries-section .section-title h2,
  .usecase-wrap .section-title h2,
  #why .section-title h2,
  .testimonials .section-title h2 {
    font-size: 28px;
  }

  .tag {
    height: auto;
    min-height: 48px;
    white-space: normal;
  }

  .prefooter h2 {
    font-size: 20px;
  }
}

/* Optimized homepage flow section. */
.kallo-flow-section {
  padding: 34px 0 26px;
  background: #fff;
}

.kallo-flow-section .container {
  width: min(100% - 48px, 1360px);
}

.kallo-info-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(520px, 1.08fr);
  gap: 36px;
  padding: 34px 34px 26px;
  border: 1px solid #e7eef0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
  box-shadow: 0 16px 42px rgba(16, 35, 50, 0.05);
}

.kallo-explain h2,
.virtual-callers h2,
.process-strip h2,
.compact-usecases h2,
.compact-why h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
}

.kallo-explain p {
  max-width: 520px;
  margin-bottom: 18px;
  color: #52606d;
  font-size: 15px;
  line-height: 1.7;
}

.kallo-explain ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #344251;
  font-size: 14px;
  font-weight: 700;
}

.kallo-explain li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kallo-explain i {
  width: 17px;
  height: 17px;
  color: var(--green);
  stroke-width: 2.7;
  flex: 0 0 auto;
}

.virtual-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.virtual-card-grid article,
.compact-usecase-grid article,
.compact-why-grid article {
  border: 1px solid #e6ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 35, 50, 0.04);
}

.virtual-card-grid article {
  min-height: 172px;
  padding: 24px 18px 20px;
  text-align: center;
}

.virtual-card-grid .icon-dot {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
}

.virtual-card-grid h3,
.compact-usecase-grid h3,
.compact-why-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}

.virtual-card-grid p,
.compact-usecase-grid p,
.compact-why-grid p {
  margin: 0;
  color: #52606d;
  font-size: 13px;
  line-height: 1.6;
}

.flow-action {
  min-height: 42px;
  margin-top: 16px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 14px;
  font-weight: 800;
}

.process-strip,
.homepage-industries,
.compact-usecases,
.compact-why {
  margin-top: 34px;
  text-align: center;
}

.homepage-industries h2,
.compact-usecases h2,
.compact-why h2 {
  margin: 0 0 22px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 18px;
  border-top: 1px solid #edf2f3;
  border-bottom: 1px solid #edf2f3;
}

.process-steps article {
  min-width: 0;
}

.process-steps .icon-dot {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
}

.process-steps h3 {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 800;
}

.process-steps p {
  margin: 0 auto;
  max-width: 180px;
  color: #52606d;
  font-size: 12px;
  line-height: 1.55;
}

.process-arrow {
  color: #9aa8b2;
  display: grid;
  place-items: center;
}

.process-arrow i {
  width: 30px;
  height: 30px;
}

.homepage-industry-grid,
.compact-usecase-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.homepage-industry-grid article,
.compact-usecase-grid article {
  min-width: 0;
  border: 1px solid #e6ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 35, 50, 0.055);
}

.homepage-industry-grid article {
  min-height: 118px;
  padding: 18px 12px 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
}

.homepage-industry-grid .icon-dot {
  width: 50px;
  height: 50px;
  background: #e5f8ee;
  color: var(--green);
}

.homepage-industry-grid i {
  width: 28px;
  height: 28px;
  stroke-width: 2.3;
  color: var(--green);
}

.homepage-industry-grid h3 {
  margin: 0;
  color: #07121f;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.compact-usecase-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.compact-usecase-grid article {
  min-height: 116px;
  padding: 18px 16px;
  text-align: center;
}

.compact-usecase-grid i,
.compact-why-grid i {
  width: 25px;
  height: 25px;
  margin-bottom: 12px;
  color: var(--green);
  stroke-width: 2.4;
}

.compact-usecase-grid i {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.compact-usecase-grid h3 {
  margin-bottom: 6px;
  color: #07121f;
}

.compact-usecase-grid p {
  max-width: 170px;
  margin: 0 auto;
}

.earn-strip {
  min-height: 92px;
  margin: 32px 0 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 22px 210px 22px 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eaf8f1 0%, #eaf8f1 72%, #d9f4e7 100%);
}

.earn-strip h2 {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.15;
}

.earn-strip p {
  margin: 0;
  color: #52606d;
  font-size: 14px;
}

.earn-strip .btn {
  flex: 0 0 auto;
  min-width: 190px;
}

.earn-strip img {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: 150px;
  height: 108px;
  object-fit: cover;
  object-position: 70% 18%;
}

.compact-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.compact-why-grid article {
  min-height: 118px;
  padding: 18px 12px 16px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid #e6ecef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 35, 50, 0.055);
}

.compact-why {
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.compact-why h2 {
  color: var(--ink);
}

.compact-why-grid .why-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 0;
  border-radius: 999px;
  color: var(--green);
  background: #e5f8ee;
}

.compact-why-grid .why-icon i {
  width: 25px;
  height: 25px;
  margin: 0;
  color: var(--green);
}

.compact-why-grid h3 {
  margin: 0;
  color: #07121f;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.kallo-flow-section [data-lucide],
.kallo-flow-section .lucide,
.check-list .lucide,
.check-list i {
  color: var(--green);
  stroke: currentColor;
}

@media (max-width: 1100px) {
  .kallo-info-grid {
    grid-template-columns: 1fr;
  }

  .homepage-industry-grid,
  .compact-usecase-grid,
  .compact-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .kallo-flow-section .container {
    width: min(100% - 28px, 560px);
  }

  .kallo-info-grid {
    padding: 24px;
  }

  .virtual-card-grid,
  .process-steps,
  .homepage-industry-grid,
  .compact-usecase-grid,
  .compact-why-grid {
    grid-template-columns: 1fr;
  }

  .earn-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .earn-strip img {
    display: none;
  }
}

/* Virtual caller onboarding form */
.onboarding-page {
  min-height: calc(100vh - 76px);
  background:
    radial-gradient(circle at 78% 8%, rgba(17, 168, 97, 0.08), transparent 28rem),
    #fff;
}

.onboarding-shell {
  padding: 34px 0 48px;
}

.onboarding-container {
  width: min(100% - 32px, 1440px);
}

.onboarding-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.onboarding-heading h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.onboarding-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
}

.onboarding-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.onboarding-step {
  border: 0;
  background: transparent;
  color: #536171;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0;
}

.onboarding-step span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #6d7788;
  background: #fff;
  border: 1px solid #d7e1e5;
  font-size: 12px;
}

.onboarding-step.active,
.onboarding-step.done {
  color: var(--green-dark);
}

.onboarding-step.active span,
.onboarding-step.done span {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.onboarding-progress > i {
  height: 2px;
  background: #dfe7ea;
}

.onboarding-progress > i.done {
  background: var(--green);
}

.onboarding-card {
  min-height: 650px;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step-title {
  margin-bottom: 26px;
}

.form-step-title h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
}

.form-step-title p {
  margin: 0;
  color: #6b7788;
  font-size: 13px;
}

.form-grid {
  display: grid;
  gap: 22px 28px;
}

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label,
.availability-block > label {
  display: grid;
  gap: 8px;
  color: #172233;
  font-size: 12px;
  font-weight: 800;
}

.form-grid b,
.availability-block b,
.form-foot b {
  color: #e22d3c;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce5e8;
  border-radius: 6px;
  padding: 0 14px;
  color: #172233;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}

.form-grid select[multiple] {
  min-height: 52px;
  padding: 8px;
}

.form-grid textarea {
  min-height: 76px;
  padding-top: 13px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(17, 168, 97, 0.1);
}

.form-grid small {
  color: #6d7788;
  font-size: 11px;
  font-weight: 600;
}

.upload-drop {
  min-height: 90px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border: 1.5px dashed #cfdadd;
  border-radius: 8px;
  background: #fbfdfc;
  color: #344251;
  text-align: center;
  cursor: pointer;
}

.upload-drop i {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.upload-drop span {
  font-size: 13px;
  font-weight: 800;
}

.upload-drop small {
  color: #6d7788;
}

.upload-drop + input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.wide-2 {
  grid-column: span 2;
}

.wide-3 {
  grid-column: 1 / -1;
}

.availability-block {
  margin: 28px 0 22px;
}

.availability-block h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
}

.day-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 12px;
}

.day-row label,
.confirm-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #344251;
  font-size: 13px;
  font-weight: 700;
}

.day-row input,
.confirm-line input,
.choice-card input {
  accent-color: var(--green);
}

.shift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  min-height: 82px;
  padding: 14px 14px;
  border: 1px solid #dce5e8;
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 6px 10px;
  cursor: pointer;
}

.choice-card.selected {
  border-color: var(--green);
  background: var(--green-soft);
}

.choice-card i {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.choice-card strong {
  font-size: 13px;
}

.choice-card span {
  grid-column: 2;
  color: #536171;
  font-size: 11px;
  line-height: 1.35;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.form-foot small {
  color: #6d7788;
  font-size: 12px;
}

.verify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.verify-card {
  min-height: 350px;
  padding: 42px 24px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid #dce5e8;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 35, 50, 0.04);
}

.verify-card video,
.verify-card img {
  width: min(100%, 320px);
  max-height: 190px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #07121f;
}

.verify-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
}

.verify-icon i {
  width: 38px;
  height: 38px;
}

.verify-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.verify-card p {
  margin: 0 0 22px;
  color: #536171;
  font-size: 13px;
}

.verify-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.verify-card small {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
}

.speech-box {
  margin-top: 30px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid #cfeee0;
  border-radius: 10px;
  color: #344251;
  background: #edf9f3;
  font-size: 13px;
  font-weight: 700;
}

.speech-box i {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.speech-box strong {
  color: var(--green-dark);
}

.review-stack {
  display: grid;
  gap: 16px;
}

.review-panel {
  padding: 18px;
  border: 1px solid #dce5e8;
  border-radius: 10px;
  background: #fff;
}

.review-panel > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-panel h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
}

.review-panel h3 i {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.review-panel button {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #bfe8d2;
  border-radius: 6px;
  color: var(--green-dark);
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.review-panel dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 26px;
}

.review-panel dt {
  color: #6d7788;
  font-size: 11px;
  font-weight: 700;
}

.review-panel dd {
  margin: 3px 0 0;
  color: #172233;
  font-size: 12px;
  font-weight: 700;
}

.confirm-line {
  margin-top: 18px;
}

.submit-error {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #b42318;
  background: #fff1f0;
  font-size: 13px;
  font-weight: 700;
}

.success-step {
  padding-top: 10px;
}

.success-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr 420px;
  align-items: center;
  gap: 26px;
  padding: 54px 70px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 38%, rgba(17, 168, 97, 0.12), transparent 22rem),
    linear-gradient(90deg, #e6f8ef 0%, #f7fffb 100%);
}

.success-check {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(17, 168, 97, 0.12);
}

.success-check i {
  width: 76px;
  height: 76px;
  stroke-width: 3;
}

.success-card span {
  display: block;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 800;
}

.success-card h2 {
  margin: 8px 0 18px;
  color: var(--green-dark);
  font-size: 44px;
  line-height: 1.05;
}

.success-card p {
  max-width: 620px;
  color: #344251;
  font-size: 16px;
  line-height: 1.7;
}

.success-card img {
  align-self: end;
  width: 420px;
  max-height: 360px;
  object-fit: cover;
  object-position: 56% center;
  border-radius: 12px;
  mix-blend-mode: multiply;
}

.verify-time {
  width: fit-content;
  min-width: 280px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid #a7e3c5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
}

.verify-time i {
  grid-row: span 2;
  color: var(--green);
}

.verify-time span {
  color: #536171;
  font-size: 12px;
}

.verify-time strong {
  color: var(--green-dark);
  font-size: 22px;
}

.success-flow,
.success-actions,
.help-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.success-flow {
  gap: 52px;
  margin: 32px 0;
}

.success-flow span {
  display: inline-grid;
  place-items: center;
  gap: 9px;
  color: #344251;
  font-size: 13px;
  font-weight: 800;
}

.success-flow i {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
}

.success-actions {
  gap: 34px;
}

.success-actions .btn {
  min-width: 205px;
}

.help-strip {
  width: min(100%, 980px);
  min-height: 56px;
  gap: 28px;
  margin: 28px auto 0;
  padding: 10px 20px;
  border: 1px solid #bfe8d2;
  border-radius: 10px;
  color: #344251;
  background: #eaf8f1;
  font-size: 14px;
  font-weight: 700;
}

.help-strip span,
.help-strip a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.help-strip i {
  width: 18px;
  height: 18px;
  color: var(--green);
}

@media (max-width: 1100px) {
  .onboarding-progress {
    overflow-x: auto;
    grid-template-columns: repeat(9, max-content);
    padding-bottom: 8px;
  }

  .form-grid.three,
  .form-grid.two,
  .verify-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wide-2,
  .wide-3 {
    grid-column: 1 / -1;
  }

  .review-panel dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .success-card {
    grid-template-columns: 120px 1fr;
    padding: 42px;
  }

  .success-card img {
    display: none;
  }
}

@media (max-width: 760px) {
  .onboarding-shell {
    padding-top: 24px;
  }

  .onboarding-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .onboarding-heading h1 {
    font-size: 22px;
  }

  .form-grid.three,
  .form-grid.two,
  .verify-grid,
  .shift-grid,
  .review-panel dl {
    grid-template-columns: 1fr;
  }

  .onboarding-step {
    font-size: 12px;
  }

  .form-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .form-foot .btn {
    width: 100%;
  }

  .verify-card {
    min-height: 300px;
    padding: 30px 18px;
  }

  .speech-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .success-card {
    display: block;
    padding: 32px 24px;
    text-align: center;
  }

  .success-check {
    width: 100px;
    height: 100px;
    margin: 0 auto 26px;
  }

  .success-card h2 {
    font-size: 34px;
  }

  .verify-time {
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .success-flow {
    gap: 18px;
  }

  .success-actions {
    gap: 14px;
  }

  .success-actions .btn {
    width: 100%;
  }
}

/* Compact onboarding scale to match provided step screenshots. */
.onboarding-shell {
  padding: 26px 0 42px;
}

.onboarding-container {
  width: min(100% - 48px, 980px);
}

.onboarding-heading {
  gap: 12px;
  margin-bottom: 20px;
}

.onboarding-heading h1 {
  font-size: 20px;
  line-height: 1.2;
}

.onboarding-heading span {
  min-height: 24px;
  padding: 0 10px;
  font-size: 11px;
}

.onboarding-progress {
  gap: 8px;
  margin-bottom: 28px;
}

.onboarding-step {
  gap: 8px;
  font-size: 11px;
}

.onboarding-step span {
  width: 25px;
  height: 25px;
  font-size: 10px;
}

.onboarding-progress > i {
  height: 1px;
}

.onboarding-card {
  min-height: 520px;
}

.form-step-title {
  margin-bottom: 24px;
}

.form-step-title h2 {
  color: #07121f;
  font-size: 18px;
  line-height: 1.2;
}

.form-step-title p {
  font-size: 12px;
}

.form-grid {
  gap: 18px 28px;
}

.form-grid label,
.availability-block > label {
  display: block;
  color: #07121f;
  font-size: 11px;
  line-height: 1.2;
}

.form-grid b,
.availability-block b {
  margin-left: 2px;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.upload-drop {
  margin-top: 8px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  display: block;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.form-grid textarea {
  min-height: 58px;
  padding-top: 11px;
}

.form-grid small {
  display: block;
  margin-top: 5px;
  font-size: 10px;
}

.form-foot {
  margin-top: 34px;
}

.form-foot .btn {
  min-height: 42px;
  min-width: 144px;
  border-radius: 6px;
  font-size: 12px;
}

.form-foot small {
  font-size: 11px;
}

.upload-drop {
  min-height: 76px;
  border-radius: 6px;
}

.upload-drop span {
  font-size: 12px;
}

@media (max-width: 760px) {
  .onboarding-container {
    width: min(100% - 28px, 560px);
  }
}

body.video-open {
  overflow: hidden;
}

.landing-video {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.landing-video.hidden {
  display: none;
}

.landing-video__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.04), transparent 28rem),
    rgba(8, 10, 13, 0.94);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.landing-video__frame {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(1.08);
  opacity: 0;
  overflow: hidden;
  border-radius: 0;
  background: #090b0f;
  box-shadow: none;
  cursor: default;
  transition:
    right 0.62s cubic-bezier(0.2, 0.86, 0.2, 1),
    bottom 0.62s cubic-bezier(0.2, 0.86, 0.2, 1),
    width 0.62s cubic-bezier(0.2, 0.86, 0.2, 1),
    height 0.62s cubic-bezier(0.2, 0.86, 0.2, 1),
    border-radius 0.62s cubic-bezier(0.2, 0.86, 0.2, 1),
    box-shadow 0.62s cubic-bezier(0.2, 0.86, 0.2, 1),
    opacity 0.38s ease,
    transform 0.62s cubic-bezier(0.2, 0.86, 0.2, 1);
}

.landing-video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.26)),
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.2));
}

.landing-video__frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #090b0f;
}

.landing-video__close,
.landing-video__dismiss {
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    background 0.24s ease;
}

.landing-video__close {
  position: fixed;
  right: 34px;
  top: 118px;
  z-index: 2;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--green);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow:
    0 0 0 8px rgba(17, 168, 97, 0.18),
    0 22px 52px rgba(7, 18, 31, 0.32);
}

.landing-video__close:hover {
  background: var(--green-dark);
  transform: scale(1.06);
}

.landing-video__dismiss {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  color: #07121f;
  background: #fff;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.84);
  pointer-events: none;
}

.landing-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.landing-video.active {
  pointer-events: auto;
}

.landing-video.active .landing-video__backdrop {
  opacity: 1;
}

.landing-video.active .landing-video__frame {
  opacity: 1;
  transform: scale(1);
}

.landing-video.minimized {
  pointer-events: auto;
}

.landing-video.minimized .landing-video__frame {
  right: 26px;
  bottom: 26px;
  width: min(360px, calc(100vw - 32px));
  height: min(202px, calc((100vw - 32px) * 0.5625));
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(7, 18, 31, 0.26);
  cursor: pointer;
}

.landing-video.minimized .landing-video__frame video {
  pointer-events: none;
}

.landing-video.minimized .landing-video__close {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.84);
}

.landing-video.minimized .landing-video__dismiss,
.landing-video.minimized .landing-video__play {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

@media (max-width: 760px) {
  .landing-video__frame {
    transform: scale(1.04);
  }

  .landing-video__close {
    right: 16px;
    top: 92px;
    width: 48px;
    height: 48px;
    box-shadow:
      0 0 0 6px rgba(17, 168, 97, 0.18),
      0 18px 38px rgba(7, 18, 31, 0.28);
  }

  .landing-video.minimized .landing-video__frame {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    height: calc((100vw - 24px) * 0.5625);
  }
}

.homepage-industries,
.industries-section {
  overflow: hidden;
}

.homepage-industries h2,
.industries-section .section-title h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.15;
  text-align: center;
}

.homepage-industry-grid,
.hire-page .industry-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(132px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.homepage-industry-grid article,
.industry-card {
  min-width: 0;
  min-height: 152px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  background-color: #0a4b31;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(7, 18, 31, 0.14);
}

.homepage-industry-grid article::before,
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.04);
}

.homepage-industry-grid article::after,
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 14, 21, 0.1) 0%, rgba(2, 54, 32, 0.82) 100%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.28), transparent 38%);
}

.homepage-industry-grid [data-industry="banking"],
.industry-card[data-industry="banking"] {
  background-image: url("./industry-banking.svg");
  background-position: center;
}

.homepage-industry-grid [data-industry="real-estate"],
.industry-card[data-industry="real-estate"] {
  background-image: url("./industry-real-estate.svg");
  background-position: center;
}

.homepage-industry-grid [data-industry="healthcare"],
.industry-card[data-industry="healthcare"] {
  background-image: url("./industry-healthcare.svg");
  background-position: center;
}

.homepage-industry-grid [data-industry="education"],
.industry-card[data-industry="education"] {
  background-image: url("./industry-education.svg");
  background-position: center;
}

.homepage-industry-grid [data-industry="ecommerce"],
.industry-card[data-industry="ecommerce"] {
  background-image: url("./industry-ecommerce.svg");
  background-position: center;
}

.homepage-industry-grid [data-industry="insurance"],
.industry-card[data-industry="insurance"] {
  background-image: url("./industry-insurance.svg");
  background-position: center;
}

.homepage-industry-grid [data-industry="more"],
.industry-card[data-industry="more"] {
  justify-content: center;
  background: linear-gradient(135deg, #effaf5, #e4f6ed);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(17, 168, 97, 0.1);
}

.homepage-industry-grid [data-industry="more"]::before,
.homepage-industry-grid [data-industry="more"]::after,
.industry-card[data-industry="more"]::before,
.industry-card[data-industry="more"]::after {
  display: none;
}

.homepage-industry-grid .icon-dot,
.industry-card .icon-dot {
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
}

.homepage-industry-grid [data-industry="more"] .icon-dot,
.industry-card[data-industry="more"] .icon-dot {
  width: 58px;
  height: 58px;
  color: var(--green);
  background: transparent;
  border: 0;
}

.homepage-industry-grid i,
.industry-card i {
  width: 25px;
  height: 25px;
  margin: 0;
  color: currentColor;
  stroke: currentColor;
  stroke-width: 2.4;
}

.homepage-industry-grid [data-industry="more"] i,
.industry-card[data-industry="more"] i {
  width: 44px;
  height: 44px;
  stroke-width: 2.1;
}

.homepage-industry-grid h3,
.industry-card h3 {
  margin: 0;
  color: currentColor;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.homepage-industry-grid [data-industry="more"] h3,
.industry-card[data-industry="more"] h3 {
  text-shadow: none;
}

@media (max-width: 1180px) {
  .homepage-industry-grid,
  .hire-page .industry-grid,
  .industry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .homepage-industry-grid,
  .hire-page .industry-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .homepage-industry-grid article,
  .industry-card {
    min-height: 138px;
    padding: 20px 12px 18px;
  }
}

.love-panel {
  margin: 42px 0 34px;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  padding: 34px;
  border: 1px solid #dfecee;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 18%, rgba(17, 168, 97, 0.1), transparent 25rem),
    linear-gradient(90deg, #f3fbf8 0%, #f9fdfb 100%);
  box-shadow: 0 18px 50px rgba(16, 35, 50, 0.08);
}

.love-panel .compact-why {
  margin: 0;
  text-align: left;
}

.love-panel .compact-why h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 35px;
  line-height: 1.15;
  font-weight: 800;
}

.love-panel .compact-why > p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #52606d;
  font-size: 17px;
  line-height: 1.65;
}

.love-panel .compact-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.love-panel .compact-why-grid article {
  min-height: 156px;
  padding: 20px 18px 18px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border: 1px solid #e4ecef;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(16, 35, 50, 0.055);
}

.love-panel .compact-why-grid .why-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 12px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
}

.love-panel .compact-why-grid .why-icon i {
  width: 25px;
  height: 25px;
  margin: 0;
}

.love-panel .compact-why-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.love-panel .compact-why-grid p {
  margin: 0;
  color: #52606d;
  font-size: 12px;
  line-height: 1.55;
}

.love-panel .dashboard-art {
  min-height: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}

.love-panel .mock-dashboard {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 500px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border: 1px solid #edf2f3;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(16, 35, 50, 0.08);
  overflow: hidden;
}

.love-panel .dash-sidebar {
  padding: 26px 18px;
  background: #f5faf8;
  display: grid;
  align-content: start;
  gap: 24px;
  color: #6d7788;
  font-size: 14px;
  font-weight: 800;
}

.love-panel .dash-sidebar span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 19px;
}

.love-panel .dash-sidebar span:first-child::before {
  content: "K";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.love-panel .dash-sidebar span:nth-child(2) {
  width: 100%;
  padding: 12px 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 8px;
}

.love-panel .dash-main {
  padding: 28px;
  min-width: 0;
}

.love-panel .dash-title {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.love-panel .dash-title small {
  min-height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5ecef;
  border-radius: 8px;
  color: #536171;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.love-panel .dash-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.love-panel .dash-box {
  min-height: 104px;
  padding: 22px 20px;
  border: 1px solid #edf2f3;
  border-radius: 8px;
  background: #fff;
  color: #667282;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 35, 50, 0.05);
}

.love-panel .dash-box strong {
  margin-top: 7px;
  display: block;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

.love-panel .dash-box::after {
  content: "+12%";
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.love-panel .dash-box:first-child::after {
  content: "+15%";
}

.love-panel .dash-box:nth-child(2)::after {
  content: "+9%";
}

.love-panel .dash-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 26px;
  margin-top: 34px;
}

.love-panel .dash-content > div:first-child > strong {
  display: block;
  margin-bottom: 18px;
  font-size: 16px;
}

.love-panel .line-chart {
  height: 190px;
  margin: 0;
  border: 1px solid #edf2f3;
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 75%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 20% 68%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 32% 55%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 44% 38%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 56% 50%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 68% 42%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 80% 22%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 92% 18%, var(--green) 0 5px, transparent 6px),
    linear-gradient(155deg, transparent 0 11%, rgba(17, 168, 97, 0.8) 11.5% 13%, transparent 13.5% 24%, rgba(17, 168, 97, 0.8) 24.5% 26%, transparent 26.5% 37%, rgba(17, 168, 97, 0.8) 37.5% 39%, transparent 39.5% 50%, rgba(17, 168, 97, 0.8) 50.5% 52%, transparent 52.5% 63%, rgba(17, 168, 97, 0.8) 63.5% 65%, transparent 65.5%),
    linear-gradient(180deg, rgba(17, 168, 97, 0.12), rgba(17, 168, 97, 0.02));
}

.love-panel .campaign-card {
  position: static;
  width: auto;
  padding: 24px 22px;
  border: 1px solid #edf2f3;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 35, 50, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.love-panel .campaign-card strong {
  margin-bottom: 20px;
  font-size: 16px;
}

.love-panel .campaign-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  color: #536171;
}

@media (max-width: 1240px) {
  .love-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .love-panel {
    padding: 20px;
  }

  .love-panel .compact-why-grid,
  .love-panel .dash-stats,
  .love-panel .dash-content {
    grid-template-columns: 1fr;
  }

  .love-panel .mock-dashboard {
    grid-template-columns: 1fr;
  }

  .love-panel .dash-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    font-size: 12px;
  }
}
