:root {
  color-scheme: light;
  --background: #f9f9ff;
  --surface: #ffffff;
  --surface-soft: #f1f3ff;
  --surface-blue: #e8eeff;
  --surface-green: #effbed;
  --surface-purple: #f1edff;
  --text: #151c29;
  --muted: #444656;
  --muted-light: #73778c;
  --primary: #2c4bff;
  --primary-deep: #002de0;
  --secondary: #3d6839;
  --secondary-soft: #bef0b4;
  --tertiary: #6748de;
  --outline: #d9deef;
  --dark: #141c2d;
  --shadow: 0 18px 60px rgba(18, 25, 38, 0.11);
  --shadow-soft: 0 10px 32px rgba(18, 25, 38, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  background: var(--surface-green);
  color: #265024;
  font-size: 14px;
}

.announcement-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.announcement a {
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(196, 197, 217, 0.55);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand span:not(.brand-mark) {
  display: inline-block;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(44, 75, 255, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-links a,
.footer nav a,
.nav-menu-button {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover,
.footer nav a:hover,
.login-link:hover,
.nav-menu-button:hover {
  color: var(--primary);
}

.nav-menu {
  position: relative;
}

.nav-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-menu-button span {
  font-size: 12px;
  transition: transform 180ms ease;
}

.nav-menu.is-open .nav-menu-button span {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(760px, calc(100vw - 32px));
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(196, 197, 217, 0.72);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-menu.is-open .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  display: block;
  padding: 18px;
  border-radius: 16px;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background: var(--surface-soft);
}

.nav-dropdown strong,
.nav-dropdown span {
  display: block;
}

.nav-dropdown strong {
  color: var(--text);
  font-size: 17px;
}

.nav-dropdown span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.made-for-dropdown {
  width: min(360px, calc(100vw - 32px));
  grid-template-columns: 1fr;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.login-link {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(44, 75, 255, 0.28);
}

.button-secondary {
  background: #fff;
  border: 1px solid rgba(44, 75, 255, 0.22);
  color: var(--primary-deep);
  box-shadow: var(--shadow-soft);
}

.button-white {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 16px 32px rgba(0, 13, 95, 0.2);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--outline);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  background:
    linear-gradient(180deg, rgba(239, 251, 237, 0.98) 0%, rgba(241, 243, 255, 0.98) 100%),
    var(--background);
  padding: 84px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.testimonial-grid h2,
.resource-header h2,
.cta-panel h2 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(44px, 6vw, 72px);
}

.hero-text {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.signup-form {
  width: min(100%, 548px);
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 8px;
  border: 1px solid rgba(117, 118, 136, 0.2);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.signup-form input {
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--text);
  background: transparent;
}

.signup-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(44, 75, 255, 0.12), var(--shadow-soft);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted-light);
  font-size: 14px;
}

.hero-product {
  position: relative;
  min-height: 560px;
  padding: 22px;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-topbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #dce2f5;
}

.product-topbar span:first-child {
  background: var(--secondary-soft);
}

.product-topbar p {
  margin: 0 0 0 auto;
}

.product-shell {
  min-height: 466px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
  background: var(--surface-soft);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 14px;
  border-radius: 22px;
  background: #fff;
}

.sidebar-pill {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-blue);
}

.sidebar-pill.active {
  background: var(--primary);
}

.sidebar-pill.short {
  height: 88px;
  margin-top: auto;
  background: var(--surface-purple);
}

.calendar-board {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.calendar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
}

.calendar-header p,
.calendar-header strong {
  display: block;
  margin: 0;
}

.calendar-header p {
  color: var(--muted-light);
  font-size: 13px;
  font-weight: 700;
}

.calendar-header strong {
  margin-top: 4px;
  font-size: 24px;
}

.calendar-header span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-green);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

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

.post-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(18, 25, 38, 0.08);
}

.post-card span,
.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.post-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.post-card.blue {
  background: #dfe5ff;
}

.post-card.green {
  background: #def6d7;
}

.post-card.purple {
  background: #e6ddff;
}

.post-card.white {
  background: #fff;
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-card span,
.floating-card p {
  display: block;
  margin: 0;
  color: var(--muted-light);
  font-size: 13px;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.floating-card strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.floating-card .metric-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.metric-label svg,
.channel-dot svg,
.pillar-column svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approval-card {
  left: -22px;
  top: 134px;
}

.stats-band {
  padding: 34px 0;
  background: #fff;
}

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

.stats-grid div {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  text-align: center;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--primary-deep);
  font-size: clamp(34px, 4vw, 50px);
}

.stats-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.resource-header h2 {
  font-size: clamp(34px, 4.6vw, 54px);
}

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

.feature-card {
  min-height: 330px;
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.green-card {
  background: var(--surface-green);
}

.purple-card {
  background: var(--surface-purple);
}

.feature-card h3 {
  margin: 26px 0 12px;
  font-size: 24px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--surface-blue);
}

.calendar-icon::before,
.calendar-icon::after,
.approval-icon::before,
.approval-icon::after,
.chart-icon::before,
.chart-icon::after {
  content: "";
  position: absolute;
}

.calendar-icon::before {
  inset: 15px 12px 12px;
  border: 3px solid var(--primary);
  border-radius: 6px;
}

.calendar-icon::after {
  left: 12px;
  right: 12px;
  top: 25px;
  height: 3px;
  background: var(--primary);
}

.approval-icon {
  background: #dff8d9;
}

.approval-icon::before {
  width: 25px;
  height: 13px;
  left: 16px;
  top: 18px;
  border-left: 4px solid var(--secondary);
  border-bottom: 4px solid var(--secondary);
  transform: rotate(-45deg);
}

.chart-icon {
  background: #e6ddff;
}

.chart-icon::before {
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 4px;
  background: var(--tertiary);
  box-shadow: 0 -10px 0 #8b73ee, 0 -20px 0 #b6a8ff;
}

.split-section {
  padding: 88px 0;
  background: var(--surface-blue);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.channel-preview {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.channel-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.channel-row strong,
.channel-row p {
  display: block;
  margin: 0;
}

.channel-row p {
  margin-top: 4px;
  color: var(--muted-light);
  font-size: 14px;
}

.channel-row em {
  color: var(--primary-deep);
  font-style: normal;
  font-weight: 800;
}

.channel-dot {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.instagram {
  background: #dfe5ff;
  color: var(--primary-deep);
}

.linkedin {
  background: #dff8d9;
  color: var(--secondary);
}

.tiktok {
  background: #e6ddff;
  color: var(--tertiary);
}

.split-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.testimonial-section {
  padding: 84px 0;
  background: var(--dark);
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.testimonial-grid .eyebrow {
  color: #bbc3ff;
}

.testimonial-grid h2 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 50px);
}

blockquote {
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #ecf0ff;
  font-size: 20px;
  line-height: 1.7;
}

cite {
  display: block;
  margin-top: 22px;
  color: #bbc3ff;
  font-style: normal;
  font-weight: 800;
}

.resources-section {
  background: #fff;
}

.resource-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

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

.resource-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.resource-image {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 25, 38, 0.08);
}

.resource-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.resource-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary-deep);
  font-weight: 800;
  text-decoration: none;
}

.cta-section {
  padding: 0 0 86px;
  background: #fff;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 58px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: #fff;
}

.cta-panel .eyebrow,
.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.footer {
  background: var(--dark);
  color: #fff;
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer .brand {
  color: #fff;
}

.footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer nav a {
  color: #cbd3e4;
}

.create-page {
  background: var(--surface);
}

.create-hero {
  padding: 88px 0 72px;
}

.create-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 56px;
}

.create-copy h1,
.create-board-section h2,
.create-dark-section h2,
.create-templates h2 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.create-copy h1 {
  max-width: 620px;
  font-size: clamp(44px, 6vw, 76px);
}

.create-copy p:not(.eyebrow),
.create-board-section p {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.create-copy p:not(.eyebrow) {
  margin: 24px 0 30px;
}

.create-hero img,
.create-split img,
.create-template-grid img {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.create-hero img {
  aspect-ratio: 16 / 10;
  border-radius: 34px;
}

.create-feature-band {
  padding: 72px 0;
  background: var(--surface-soft);
}

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

.create-feature-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(196, 197, 217, 0.56);
  border-radius: 24px;
  background: #fff;
}

.create-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--surface-blue);
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 800;
}

.create-feature-grid h3,
.create-dark-grid h3,
.create-template-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.create-feature-grid p,
.create-dark-grid p,
.create-template-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.create-board-section {
  padding: 92px 0;
}

.create-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: 56px;
}

.create-board-section h2,
.create-dark-section h2,
.create-templates h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.create-split img {
  aspect-ratio: 16 / 10;
  border-radius: 28px;
}

.create-dark-section {
  padding: 88px 0;
  background: var(--dark);
  color: #fff;
}

.create-dark-section .eyebrow,
.create-dark-section h2 {
  color: #fff;
}

.create-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.create-dark-grid article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.create-dark-grid h3 {
  color: #fff;
}

.create-dark-grid p {
  color: #d9def0;
}

.create-templates {
  padding: 88px 0;
  background: #fff;
}

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

.create-template-grid article {
  padding: 18px;
  border-radius: 24px;
  background: var(--surface-soft);
}

.create-template-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 8px;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 12px;
    transform: none;
    box-shadow: none;
  }

  .site-header.is-open .header-actions {
    padding-bottom: 18px;
  }

  .hero-grid,
  .split-grid,
  .testimonial-grid,
  .create-hero-grid,
  .create-split {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: auto;
    border-radius: 26px;
  }

  .feature-grid,
  .resource-grid,
  .create-feature-grid,
  .create-dark-grid,
  .create-template-grid {
    grid-template-columns: 1fr;
  }
}

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

  .announcement-inner {
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .create-hero,
  .create-board-section,
  .create-dark-section,
  .create-templates {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .create-copy h1 {
    font-size: 42px;
  }

  .signup-form {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .signup-form .button {
    width: 100%;
  }

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

  .hero-product {
    padding: 14px;
  }

  .product-shell {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .product-sidebar {
    display: none;
  }

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

  .floating-card {
    position: static;
    margin-top: 14px;
  }

  .section,
  .split-section,
  .testimonial-section {
    padding: 64px 0;
  }

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

  .channel-row em {
    grid-column: 2;
  }

  .resource-header,
  .cta-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel {
    padding: 34px 24px;
    border-radius: 26px;
  }
}
