/* Savvy Dental Experts homepage */
:root {
  --navy: #061b2f;
  --navy-2: #0b2a45;
  --teal: #087c72;
  --green: #17a768;
  --money: #15b36b;
  --gold: #f5b942;
  --mint: #eaf8f3;
  --mint-2: #f5fffb;
  --red: #ef4444;
  --orange: #f97316;
  --purple: #6d5dfc;
  --text: #102033;
  --muted: #637083;
  --line: #e2e8f0;
  --card: #fff;
  --shadow: 0 18px 45px rgba(7, 31, 52, 0.12);
  --shadow-soft: 0 10px 24px rgba(7, 31, 52, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 27, 47, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand strong { color: #4ee0a6; }
.brand-icon { width: 34px; height: 34px; color: #34d399; display: inline-grid; place-items: center; }
.brand-icon svg { width: 100%; height: 100%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--green));
  color: #fff;
  box-shadow: 0 12px 24px rgba(8,124,114,.26);
}

.btn-gold {
  background: linear-gradient(135deg, #ffd56d, var(--gold));
  color: #173047;
  box-shadow: 0 12px 26px rgba(245,185,66,.32);
}

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: rgba(11,42,69,.12);
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(23,167,104,.14), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(14,165,141,.18), transparent 30%),
    linear-gradient(180deg, #f7fffb 0%, #fff 64%);
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,124,114,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8,124,114,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 75%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
  padding: 76px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff6dd;
  color: #a66c00;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(245,185,66,.38);
}

h1, h2, h3 { margin: 0; letter-spacing: -0.055em; line-height: 1.02; }

.hero-copy h1 {
  margin-top: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5vw, 74px);
  color: var(--navy);
}

.hero-copy h1 span { color: var(--teal); }

.hero-copy p {
  max-width: 560px;
  margin: 22px 0 28px;
  font-size: 18px;
  color: #425268;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: 560px;
}

.trust-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #31465b;
  font-size: 13px;
  font-weight: 800;
}

.small-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #e4f8ef;
  color: var(--teal);
  flex: 0 0 auto;
}

/* Dashboard preview */
.dashboard-card {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(11,42,69,.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.dash-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  color: var(--navy);
}

.filters { display: flex; gap: 8px; flex-wrap: wrap; }

.filters span {
  padding: 9px 12px;
  border-radius: 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 14px; }

.kpi {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 13px;
  min-height: 94px;
}

.kpi p { margin: 0; color: var(--muted); font-weight: 800; font-size: 11px; }
.kpi strong { display: block; margin: 5px 0 2px; font-size: 21px; color: var(--navy); letter-spacing: -.04em; }
.kpi small { display: block; color: #8090a3; font-size: 10px; font-weight: 700; }
.good { color: var(--money); font-weight: 900; font-size: 12px; }
.bad { color: var(--red); font-weight: 900; font-size: 12px; }

.dash-panels { display: grid; grid-template-columns: 1.25fr .9fr; gap: 14px; }

.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.panel h3 {
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -.02em;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-title span {
  font-size: 11px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 132px;
  padding-top: 10px;
  border-bottom: 1px solid var(--line);
}

.bar-chart i {
  flex: 1;
  min-width: 15px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #23c492, #087c72);
  position: relative;
  font-style: normal;
}

.bar-chart b {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
}

.donut-wrap {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
}

.donut {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 46%, #54d6c8 46% 73%, var(--gold) 73% 86%, var(--orange) 86% 94%, var(--red) 94% 100%);
  position: relative;
}

.donut:after {
  content: "";
  position: absolute;
  inset: 27px;
  border-radius: 50%;
  background: #fff;
}

.donut span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.15;
}

.legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 12px; color: #40536a; font-weight: 800; }
.legend li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 7px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.paid { background: var(--teal); }
.pending { background: #54d6c8; }
.follow { background: var(--gold); }
.denied { background: var(--orange); }
.appeal { background: var(--red); }

.dash-bottom { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; margin-top: 14px; }

.mile-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 13px;
}

.mile-row span {
  padding: 10px 8px;
  border-radius: 13px;
  border: 1px solid #bee9d5;
  background: #f7fffb;
  text-align: center;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.mile-row b { display: block; font-size: 16px; margin-top: 4px; }
.mile-row .warn { border-color: #f9d889; background: #fff9e8; color: #ad7000; }
.mile-row .hot { border-color: #ffbd8b; background: #fff4ea; color: #bc4a00; }

.insights { display: grid; gap: 8px; }
.insights h3 { margin-bottom: 3px; }

.insights a {
  padding: 10px 11px;
  border-radius: 14px;
  background: #fbfdff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  font-size: 12px;
  color: #43536a;
  font-weight: 800;
}

.insights em {
  grid-column: 2;
  color: var(--red);
  font-style: normal;
  font-size: 11px;
}

/* Sections */
.section { padding: 74px 0; }

.section-title { text-align: center; margin-bottom: 34px; }
.section-title h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: clamp(32px, 3vw, 48px);
}
.section-title p { max-width: 720px; margin: 12px auto 0; color: var(--muted); font-size: 18px; }
.compact { margin-bottom: 26px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(7,31,52,.04);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border: 2px solid rgba(8,124,114,.24);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 28px;
  font-weight: 900;
}

.feature-card h3 {
  font-size: 16px;
  letter-spacing: -.03em;
  margin-bottom: 8px;
  color: var(--navy);
}

.feature-card p { margin: 0; color: var(--muted); font-size: 13px; }

/* AI section */
.ai-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(26,213,144,.18), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, #052f3f 55%, #063b36 100%);
  color: #fff;
  padding: 68px 0;
  overflow: hidden;
}

.ai-grid {
  display: grid;
  grid-template-columns: .8fr 1.5fr;
  gap: 28px;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.ai-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.2vw, 50px);
  margin-bottom: 16px;
}

.ai-copy p { color: rgba(255,255,255,.76); font-size: 16px; max-width: 440px; margin-bottom: 22px; }

.alert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.alert-card {
  background: #fff;
  color: var(--text);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 22px 45px rgba(0,0,0,.18);
  min-height: 210px;
}

.alert-card.pink { background: #fff2f2; }
.alert-card.yellow { background: #fff8e9; }
.alert-card.purple { background: #f4f2ff; }
.alert-card.peach { background: #fff4ea; }

.alert-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 14px;
}

.alert-card h3 { font-size: 15px; color: var(--navy); letter-spacing: -.03em; margin-bottom: 10px; }
.alert-card strong { display: block; font-size: 26px; letter-spacing: -.05em; color: #102033; margin-bottom: 6px; }
.alert-card p { margin: 0 0 15px; color: #506176; font-size: 13px; }
.alert-card a { color: var(--teal); font-size: 13px; font-weight: 900; }

/* Results */
.results { background: #fff; padding-top: 64px; padding-bottom: 44px; }

.result-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.result-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7,31,52,.04);
}

.result-card strong {
  display: block;
  color: #0f7a4a;
  font-size: 29px;
  letter-spacing: -.06em;
  margin-bottom: 6px;
}

.result-card span {
  color: #24384d;
  font-weight: 800;
  font-size: 13px;
  display: block;
  min-height: 42px;
}

.result-card svg { width: 100%; height: 45px; margin-top: 10px; }
.result-card polyline {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Analytics */
.analytics {
  background: linear-gradient(180deg, #eefcf7 0%, #ffffff 100%);
  padding-top: 54px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: .8fr 1.15fr 1.15fr 1.25fr;
  gap: 18px;
}

.analytics-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  min-height: 238px;
}

.analytics-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 12px; letter-spacing: -.03em; }
.analytics-card p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 800; }
.analytics-card strong { display: block; font-size: 26px; letter-spacing: -.04em; margin: 4px 0 12px; color: var(--navy); }
.analytics-card em { color: var(--money); font-size: 12px; font-style: normal; margin-left: 8px; }

.pipeline-list { display: grid; gap: 9px; margin-top: 18px; }
.pipeline-list span {
  width: var(--w);
  min-width: 66%;
  display: flex;
  justify-content: space-between;
  padding: 9px 12px;
  background: linear-gradient(90deg, #d9eef2, #1ec986);
  border-radius: 8px;
  color: #123348;
  font-size: 12px;
  font-weight: 900;
}

.mini-bars {
  height: 126px;
  display: flex;
  gap: 12px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  margin-top: 16px;
}

.mini-bars i {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #2dd4a0, #087c72);
}

.line-chart { width: 100%; height: 130px; margin-top: 14px; overflow: visible; }
.line-chart polyline { fill: none; stroke: var(--teal); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.line-chart circle { fill: #fff; stroke: var(--teal); stroke-width: 4; }

.aging-card table { width: 100%; border-collapse: collapse; font-size: 12px; }
.aging-card th { text-align: left; color: var(--muted); font-size: 11px; padding: 8px 0; }
.aging-card td { border-top: 1px solid var(--line); padding: 8px 0; color: #33465a; font-weight: 700; }
.aging-card a { display: inline-block; margin-top: 12px; color: var(--teal); font-weight: 900; font-size: 13px; }

.workflow-strip {
  position: relative;
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.workflow-strip h3 { font-size: 18px; color: var(--navy); margin-bottom: 20px; letter-spacing: -.03em; }
.workflow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
  padding-right: 240px;
}

.workflow-line:before {
  content: "";
  position: absolute;
  top: 27px;
  left: 48px;
  right: 270px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--teal));
  border-radius: 999px;
}

.workflow-line div { position: relative; text-align: center; z-index: 1; }
.workflow-line span {
  width: 54px;
  height: 54px;
  margin: 0 auto 9px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5fff4;
  border: 4px solid #fff;
  color: var(--teal);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.workflow-line div:nth-child(3) span,
.workflow-line div:nth-child(4) span { background: #fff4d2; color: #ad7000; }
.workflow-line div:nth-child(5) span { background: var(--teal); color: #fff; }

.workflow-line p { margin: 0; font-size: 12px; font-weight: 900; color: #31465b; }
.workflow-strip aside {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 220px;
  background: #e9f7f3;
  border-radius: 16px;
  padding: 16px;
  color: #36516a;
  font-size: 13px;
  font-weight: 800;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, var(--navy) 0%, #053447 100%);
  color: #fff;
  padding: 64px 0 58px;
}

.testimonials h2 {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 3vw, 46px);
  margin-bottom: 32px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-grid article {
  border: 1px solid rgba(87, 224, 166, .28);
  background: rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 25px;
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.testimonial-grid p { color: rgba(255,255,255,.88); margin: 0 0 20px; }
.person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(135deg, #fbd7c3, #a7f3d0);
  border: 3px solid rgba(255,255,255,.78);
}
.avatar-2 { background: linear-gradient(135deg, #d9e9ff, #f5c8a8); }
.avatar-3 { background: linear-gradient(135deg, #c7d2fe, #fde68a); }
.person strong { display: block; }
.person small { color: rgba(255,255,255,.7); }

.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.slider-dots span { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.34); }
.slider-dots span:nth-child(2) { width: 24px; background: #fff; }

/* CTA and footer */
.final-cta {
  background: linear-gradient(135deg, #076b56, #079268 54%, #0a3c4c);
  color: #fff;
  padding: 48px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr auto .65fr;
  align-items: center;
  gap: 30px;
}

.final-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 50px);
  margin-bottom: 12px;
}

.final-cta p { margin: 0; color: rgba(255,255,255,.85); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.secure-note { display: flex; gap: 14px; align-items: center; }
.secure-note span { font-size: 42px; }
.secure-note strong { color: #fff; }

.footer {
  background: #061b2f;
  color: rgba(255,255,255,.82);
  padding: 42px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .55fr .55fr .55fr 1.15fr;
  gap: 34px;
}

.footer-brand { margin-bottom: 14px; font-size: 20px; }
.footer p { color: rgba(255,255,255,.7); margin: 0 0 18px; }
.footer nav { display: grid; align-content: start; gap: 9px; }
.footer h4 { color: #fff; margin: 0 0 8px; }
.footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer a:hover { color: #fff; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.newsletter form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 9px;
  padding: 0 12px;
}

.newsletter button {
  border: 0;
  height: 44px;
  border-radius: 9px;
  padding: 0 14px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.copyright {
  text-align: center;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  padding-top: 30px;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hero-grid, .ai-grid, .cta-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .alert-grid { grid-template-columns: repeat(2, 1fr); }
  .result-grid { grid-template-columns: repeat(3, 1fr); }
  .analytics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-line { padding-right: 0; }
  .workflow-line:before { right: 48px; }
  .workflow-strip aside { position: static; width: auto; margin-top: 18px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: auto; padding: 14px 0; flex-wrap: wrap; }
  .nav-actions { width: 100%; justify-content: space-between; }
  .hero-grid { padding: 48px 0; }
  .trust-points { grid-template-columns: 1fr; }
  .kpi-grid, .dash-panels, .dash-bottom { grid-template-columns: 1fr; }
  .donut-wrap { grid-template-columns: 1fr; justify-items: center; }
  .mile-row { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .alert-grid, .result-grid, .analytics-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .workflow-line {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }
  .workflow-line:before { display: none; }
  .workflow-line div { display: flex; align-items: center; gap: 14px; text-align: left; }
  .workflow-line span { margin: 0; }
  .newsletter form { flex-direction: column; }
}
