:root {
  --teal: #139b88;
  --teal-deep: #087568;
  --teal-dark: #066055;
  --teal-soft: #e9faf5;
  --orange: #ff6a1a;
  --orange-soft: #fff1e8;
  --ink: #182433;
  --muted: #5f6f82;
  --line: #d9eee8;
  --paper: #ffffff;
  --wash: #f6fcfa;
  --shadow: 0 24px 60px rgba(8, 91, 82, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f5fcf9 0%, #ffffff 35%, #f5fbf8 100%);
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(19, 155, 136, 0.95);
  box-shadow: 0 6px 24px rgba(5, 78, 68, 0.18);
  backdrop-filter: blur(10px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a,
.mobile-menu a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  outline: none;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 22;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 24px;
  height: 2.5px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 24px;
}

.menu-toggle span:nth-child(3) {
  top: 31px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 21;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(8, 117, 104, 0.98);
  box-shadow: 0 24px 48px rgba(7, 68, 61, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(900px 520px at 50% -220px, rgba(255, 255, 255, 0.16), transparent 65%),
    linear-gradient(165deg, #1db6a2 0%, #128d7e 48%, #087061 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 80%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  padding: 82px 0 210px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.14;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: auto;
  margin-left: auto;
}

.hero-lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-right: auto;
  margin-left: auto;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  padding: 14px 30px;
  min-height: 48px;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(255, 92, 26, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: #ff5410;
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(255, 92, 26, 0.36);
  outline: none;
}

.hero-dashboard {
  position: absolute;
  top: 48px;
  right: 0;
  z-index: 0;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 0.92;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 80px rgba(0, 63, 56, 0.24);
  backdrop-filter: blur(12px);
  opacity: 0.22;
  pointer-events: none;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 106px;
  gap: 14px;
}

.dash-stat,
.dash-chart,
.dash-campaigns {
  min-width: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.dash-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.dash-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.dash-stat strong {
  margin-top: 7px;
  color: var(--teal-deep);
  font-size: 2rem;
  line-height: 1;
}

.dash-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  padding: 18px 22px;
}

.dash-chart span {
  width: 12%;
  min-height: 24px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #28d6bd, #087568);
}

.dash-campaigns {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.dash-campaigns span {
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(8, 117, 104, 0.2), rgba(255, 106, 26, 0.58));
}

.intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.intro-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.intro-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-card h2 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.25;
}

.intro-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.74;
}

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.wave svg {
  width: 100%;
  height: 100%;
}

.wave path {
  fill: #ffffff;
}

.wave-down {
  bottom: -1px;
  height: 170px;
}

.wave-up {
  top: -1px;
  height: 120px;
}

.section-pad {
  padding: 112px 0;
}

.section-title {
  max-width: 780px;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.section-title.inverse {
  color: #ffffff;
}

.section-mark {
  display: block;
  width: 50px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffa149 100%);
}

.formats {
  position: relative;
  background: #ffffff;
}

.formats-shell {
  padding: 46px 40px 56px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 100px;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fdfc;
  color: var(--muted);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tab-btn svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tab-btn span {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.tab-btn:hover,
.tab-btn:focus-visible {
  color: var(--teal-deep);
  border-color: rgba(19, 155, 136, 0.28);
  transform: translateY(-2px);
  outline: none;
}

.tab-btn.is-active {
  background: linear-gradient(180deg, #26c9b5, #139b88);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(19, 155, 136, 0.27);
}

.tab-panel-wrap {
  margin-top: 36px;
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
  min-height: 450px;
  animation: fade-in 0.24s ease both;
}

.tab-panel.is-active {
  display: grid;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mock {
  position: relative;
  width: min(230px, 80vw);
  aspect-ratio: 0.52;
  border: 12px solid rgba(18, 36, 51, 0.08);
  border-radius: 32px;
  background: #f4fbf9;
  box-shadow:
    inset 0 0 0 1px rgba(18, 36, 51, 0.05),
    0 20px 44px rgba(8, 91, 82, 0.1);
  overflow: hidden;
}

.phone-mock::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: rgba(18, 36, 51, 0.08);
  transform: translateX(-50%);
}

.phone-mock::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(19, 155, 136, 0.14), rgba(255, 106, 26, 0.16));
}

.phone-mock span {
  position: absolute;
  border-radius: 14px;
  background: rgba(8, 117, 104, 0.1);
}

.banner-mock span:nth-child(1) {
  top: 42px;
  right: 18px;
  left: 18px;
  height: 42px;
  background: linear-gradient(90deg, rgba(19, 155, 136, 0.18), rgba(255, 106, 26, 0.26));
}

.banner-mock span:nth-child(2),
.banner-mock span:nth-child(3),
.banner-mock span:nth-child(4) {
  top: 108px;
  width: 78px;
  height: 78px;
}

.banner-mock span:nth-child(2) {
  left: 18px;
}

.banner-mock span:nth-child(3) {
  right: 18px;
}

.banner-mock span:nth-child(4) {
  top: 210px;
  right: 18px;
  left: 18px;
  width: auto;
}

.pop-mock span:nth-child(1) {
  inset: 74px 22px auto;
  height: 180px;
  border: 2px solid rgba(19, 155, 136, 0.22);
  background: #ffffff;
  box-shadow: 0 20px 34px rgba(8, 91, 82, 0.12);
}

.pop-mock span:nth-child(2) {
  top: 105px;
  left: 42px;
  width: 118px;
  height: 16px;
  background: rgba(24, 36, 51, 0.12);
}

.pop-mock span:nth-child(3) {
  top: 205px;
  left: 52px;
  width: 96px;
  height: 30px;
  background: var(--orange);
}

.push-mock span:nth-child(1) {
  left: 20px;
  right: 20px;
  top: 125px;
  height: 86px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(8, 91, 82, 0.12);
}

.push-mock span:nth-child(2) {
  top: 147px;
  left: 40px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, #26c9b5, #139b88);
}

.push-mock span:nth-child(3) {
  top: 152px;
  left: 92px;
  width: 88px;
  height: 12px;
  background: rgba(24, 36, 51, 0.15);
}

.message-mock span:nth-child(1) {
  top: 94px;
  left: 26px;
  width: 128px;
  height: 48px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(8, 91, 82, 0.1);
}

.message-mock span:nth-child(2) {
  top: 158px;
  right: 26px;
  width: 128px;
  height: 48px;
  background: rgba(19, 155, 136, 0.2);
}

.message-mock span:nth-child(3) {
  top: 222px;
  left: 26px;
  width: 112px;
  height: 44px;
  background: var(--orange-soft);
}

.video-mock span:nth-child(1) {
  top: 72px;
  right: 20px;
  left: 20px;
  height: 140px;
  background: linear-gradient(135deg, #0f766d, #182433);
}

.video-mock span:nth-child(2) {
  top: 119px;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
}

.video-mock span:nth-child(3) {
  top: 135px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #ffffff;
  border-radius: 0;
  background: transparent;
  transform: translateX(-28%);
}

.skim-mock span:nth-child(1) {
  top: 68px;
  right: 22px;
  left: 22px;
  height: 14px;
  background: rgba(24, 36, 51, 0.14);
}

.skim-mock span:nth-child(2) {
  top: 116px;
  right: 22px;
  left: 22px;
  height: 14px;
  background: rgba(24, 36, 51, 0.14);
}

.skim-mock span:nth-child(3) {
  top: 164px;
  left: 72px;
  width: 90px;
  height: 18px;
  background: rgba(255, 106, 26, 0.62);
}

.panel-text {
  max-width: 560px;
}

.panel-text h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.panel-mark {
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px 0 20px;
  border-radius: 999px;
  background: var(--orange);
}

.panel-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.panel-text ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.panel-text li {
  position: relative;
  padding-left: 28px;
  color: #3c4c5f;
  font-size: 0.95rem;
  line-height: 1.45;
}

.panel-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #d9f7f1;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal-deep);
  font-weight: 900;
}

.targeting {
  position: relative;
  overflow: hidden;
  padding: 170px 0 168px;
  background: linear-gradient(180deg, #149f8c, #087568);
  color: #ffffff;
}

.targeting .wave path,
.join .wave path {
  fill: #ffffff;
}

.targeting-copy {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.75;
  text-align: center;
}

.targeting-layout {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 48px;
}

.target-visual {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
}

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

.icon-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 138px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
}

.icon-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-weight: 900;
}

.icon-card strong {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.42;
}

.advantage-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 26px;
  margin-top: 50px;
}

.advantage-lead {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(150deg, #26c9b5, #087568);
  box-shadow: 0 26px 50px rgba(8, 91, 82, 0.2);
}

.small-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.advantage-lead h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.18;
}

.advantage-lead p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.72;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric-row div {
  min-width: 0;
  padding: 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
}

.metric-row strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.35;
}

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

.advantage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
  padding: 24px;
  border: 1px solid #e8f2ef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 36, 51, 0.06);
}

.advantage-item span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-weight: 900;
}

.advantage-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

.advantage-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.verticals {
  position: relative;
  background: #eefaf6;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}

.vertical-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
}

.vertical-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 91, 82, 0.08);
}

.vertical-icon svg {
  width: 58px;
  height: 58px;
}

.vertical-icon circle {
  fill: #e7f7ff;
}

.vertical-icon path,
.vertical-icon rect {
  fill: none;
  stroke: #ff6a1a;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vertical-card strong {
  max-width: 180px;
  color: #263447;
  font-size: 0.9rem;
  line-height: 1.35;
}

.join {
  position: relative;
  overflow: hidden;
  padding: 160px 0 158px;
  background: linear-gradient(180deg, #26bea9, #087568);
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: 210px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-card img {
  width: 160px;
  height: 160px;
  border-radius: 16px;
}

.contact-card:hover,
.contact-card:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  outline: none;
}

.site-footer {
  padding: 28px 16px 34px;
  color: #748193;
  background: #f5fbf8;
  text-align: center;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer p:first-child {
  margin-top: 0;
}

.site-footer a {
  color: var(--teal-deep);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-dashboard {
    right: 50%;
    opacity: 0.16;
    transform: translateX(50%);
  }

  .tab-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }

  .panel-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .panel-mark {
    margin-right: auto;
    margin-left: auto;
  }

  .panel-text li {
    text-align: left;
  }

  .targeting-layout,
  .advantage-layout {
    grid-template-columns: 1fr;
  }

  .target-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .verticals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    width: 196px;
  }

  .hero-inner {
    padding: 50px 0 170px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-dashboard {
    top: 96px;
    max-width: 310px;
    opacity: 0.12;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-card {
    padding: 24px;
  }

  .section-pad {
    padding: 86px 0;
  }

  .section-title {
    font-size: 1.58rem;
  }

  .formats-shell {
    padding: 34px 18px 40px;
    border-radius: 20px;
  }

  .tab-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tab-btn {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 62px;
    padding: 12px 16px;
  }

  .tab-btn span {
    text-align: left;
  }

  .tab-panel-wrap {
    margin-top: 20px;
  }

  .tab-panel {
    padding: 22px 0 6px;
  }

  .phone-mock {
    width: min(205px, 72vw);
  }

  .targeting {
    padding: 145px 0;
  }

  .targeting-grid {
    grid-template-columns: 1fr;
  }

  .target-visual {
    min-height: 330px;
  }

  .advantage-lead {
    min-height: 0;
    padding: 28px;
  }

  .advantage-lead h3 {
    font-size: 1.48rem;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .join {
    padding: 140px 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    width: 176px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .primary-cta {
    width: 100%;
    justify-content: center;
  }

  .dashboard-grid {
    grid-auto-rows: 88px;
  }

  .intro-card h2 {
    font-size: 1.12rem;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: min(100%, 230px);
  }
}
