/* =========================================================
   ComplyBinder Theme Variables
   ========================================================= */

:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;

  --brand: #2563eb;
  --brand2: #0f172a;

  --ok: #15803d;
  --bad: #b91c1c;
  --warn: #b45309;
}


/* =========================================================
   Base / Reset
   ========================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


/* =========================================================
   Layout Containers
   ========================================================= */

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

.narrow {
  width: min(820px, calc(100% - 32px));
}


/* =========================================================
   Branding / Logos
   ========================================================= */

/* Dashboard app brand: icon + dark text on white topbar */
.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.app-brand:hover {
  text-decoration: none;
}

.app-brand span {
  color: var(--ink);
}

.app-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Landing page brand: icon + white text on blue hero */
.hero-brand {
  color: white;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-brand span {
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.hero-logo {
  width: 65px;
  height: 65px;
  object-fit: contain;
  display: block;
  border-radius: 15px;
  background: white;
  padding: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

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

.brand:hover {
  text-decoration: none;
}

/* Old text logo square. Safe to leave for fallback. */
.mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  font-weight: 900;
}

/* Small square icon used inside logged-in dashboard topbar */
.topbar .brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* Wide wordmark logo used on landing page */
.hero-nav .brand-wordmark {
  width: 240px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Landing page logo link */
.hero-nav .brand.use-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

/* Prevent underline on logo hover */
.hero-nav .brand.use-wordmark:hover {
  text-decoration: none;
}

/* If you use the wide wordmark image, hide duplicate text beside it */
.hero-nav .brand.use-wordmark span {
  display: none;
}

/* Optional: slightly smaller wordmark on narrow screens */
@media (max-width: 800px) {
  .hero-nav .brand-wordmark {
    width: 180px;
  }
}


/* =========================================================
   Top Navigation - Logged In App
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.topbar nav,
.hero-nav nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.linkbtn {
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font: inherit;
}


/* =========================================================
   Landing Page Hero
   ========================================================= */

.hero {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: white;
  min-height: 620px;
  padding: 22px;
}

.hero .brand,
.hero a {
  color: white;
}

.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero section {
  width: min(1180px, 100%);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  margin: 8px 0 20px;
}

.hero ul {
  padding-left: 20px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.lead {
  font-size: 20px;
  color: #dbeafe;
  max-width: 720px;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #60a5fa;
  font-size: 12px;
  margin: 0 0 6px;
}



/* Landing page white navbar */
.landing-white-nav {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.16);
}

.landing-white-nav a {
  color: var(--ink);
}

.landing-white-nav a:hover {
  text-decoration: none;
}

.landing-white-nav .btn {
  color: white !important;
}

.landing-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.landing-wordmark {
  display: block;
  width: 245px;
  max-width: 44vw;
  height: auto;
  object-fit: contain;
}

@media (max-width: 800px) {
  .landing-white-nav {
    width: 100%;
    border-radius: 16px;
  }

  .landing-wordmark {
    width: 220px;
    max-width: 100%;
  }
}


/* =========================================================
   Simple Header
   ========================================================= */

.simple {
  padding: 20px 24px;
  background: white;
  border-bottom: 1px solid var(--line);
}


/* =========================================================
   Buttons / Actions
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: white !important;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(0.96);
}

.btn.secondary {
  background: #e2e8f0;
  color: var(--ink) !important;
}

.btn.small {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
}

.btn.full {
  width: 100%;
  margin-top: 10px;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* =========================================================
   Cards / Panels
   ========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card,
.panel,
.auth-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.featured {
  outline: 3px solid #bfdbfe;
}


/* =========================================================
   Pricing
   ========================================================= */

.price {
  font-size: 34px;
  font-weight: 900;
  margin: 0;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}


/* =========================================================
   Page Headers / Grids
   ========================================================= */

.pagehead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.pagehead h1 {
  margin: 0.1em 0;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}


/* =========================================================
   Stats / Lists
   ========================================================= */

.statrow {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.statrow b {
  font-size: 24px;
}

.warn {
  color: var(--warn);
}

.muted {
  color: var(--muted);
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.list span {
  color: var(--muted);
  font-size: 14px;
}


/* =========================================================
   Tables
   ========================================================= */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}


/* =========================================================
   Status Pills
   ========================================================= */

.pill {
  display: inline-block;
  border-radius: 999px;
  background: #e2e8f0;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
}

.pill.complete {
  background: #dcfce7;
  color: #166534;
}

.pill.open,
.pill.needs_action,
.pill.overdue {
  background: #fee2e2;
  color: #991b1b;
}


/* =========================================================
   Forms / Inputs
   ========================================================= */

.filters,
.inlineform {
  display: flex;
  gap: 10px;
  align-items: end;
  flex-wrap: wrap;
}

.form label,
.filters label,
.inlineform label,
.auth-card label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  background: white;
  min-width: 0;
}

.formgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.rtype-fields {
  display: none;
}

.rtype-fields.active {
  display: block;
}


/* =========================================================
   Authentication Pages
   ========================================================= */

.auth {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.auth-card {
  width: min(440px, 100%);
}

.center {
  justify-content: center;
}



/* Auth page wide wordmark logo */
.auth-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 18px;
  text-decoration: none;
}

.auth-logo-link:hover {
  text-decoration: none;
}

.auth-logo {
  display: block;
  width: min(320px, 100%);
  height: auto;
  object-fit: contain;
}


/* =========================================================
   Flash Messages
   ========================================================= */

.flash {
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.flash.ok {
  background: #dcfce7;
  color: #166534;
}

.flash.bad {
  background: #fee2e2;
  color: #991b1b;
}

.auth-card .flash {
  width: 100%;
  margin: 10px 0;
}


/* =========================================================
   Footer / Prose
   ========================================================= */

.footer {
  padding: 30px 20px;
  color: var(--muted);
  text-align: center;
}

.prose {
  max-width: 860px;
}


/* =========================================================
   Definition Lists
   ========================================================= */

dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px;
}

dt {
  font-weight: 800;
}

dd {
  margin: 0;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 800px) {
  .hero section,
  .grid2 {
    grid-template-columns: 1fr;
  }

  .topbar,
  .hero-nav,
  .pagehead {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar nav {
    gap: 10px;
  }

  .list li {
    display: block;
  }

  .filters input,
  .filters select,
  .inlineform input,
  .inlineform select {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .landing-white-nav {
    width: 100%;
    padding: 14px;
    gap: 14px;
    border-radius: 16px;
  }

  .landing-logo-link {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .landing-wordmark {
    width: 230px;
    max-width: 88%;
    height: auto;
  }

  .landing-white-nav nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .landing-white-nav nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px;
    text-align: center;
    font-size: 15px;
    border-radius: 10px;
  }

  .landing-white-nav nav .btn {
    width: 100%;
  }

  .hero {
    padding: 12px;
  }

  .hero section {
    margin-top: 34px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.03;
  }

  .lead {
    font-size: 18px;
  }
}

/* =========================================================
   COMPLYBINDER LANDING HEADER — AUTHORITATIVE OVERRIDE
   ========================================================= */

header.hero {
  min-height: 620px;
  padding: 22px;
  color: #ffffff;

  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(37, 99, 235, 0.26) 0%,
      rgba(37, 99, 235, 0) 40%
    ),
    linear-gradient(
      135deg,
      #08162f 0%,
      #10275a 55%,
      #173d91 100%
    );
}


/* Navigation shell */
header.hero .hero-nav.landing-glass-nav {
  display: block;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 22px 14px;

  background:
    linear-gradient(
      135deg,
      rgba(5, 18, 43, 0.78),
      rgba(12, 39, 91, 0.56)
    );

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;

  box-shadow:
    0 18px 44px rgba(2, 6, 23, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);

  color: #ffffff;
}


/* Upper row: logo and trial button */
header.hero .landing-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

header.hero .landing-logo-link {
  display: flex;
  align-items: center;
  width: auto;
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
}

header.hero .landing-logo-link:hover {
  text-decoration: none;
}

header.hero .landing-wordmark {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


/* Trial button */
header.hero .landing-trial-btn {
  flex: 0 0 auto;
  min-width: 150px;
  min-height: 54px;
  padding: 14px 24px;

  border-radius: 15px;
  background: linear-gradient(135deg, #2563eb, #3475f5);

  color: #ffffff !important;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;

  box-shadow:
    0 11px 25px rgba(37, 99, 235, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}


/* Lower navigation row */
header.hero .landing-nav-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 12px;

  width: 100%;
  margin: 14px 0 0;
}

header.hero .landing-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 8px 12px;

  color: rgba(255, 255, 255, 0.94);
  background: transparent;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  border-radius: 10px;
}

header.hero .landing-nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}


/* Hero copy */
header.hero > section {
  width: min(1180px, 100%);
  margin: 80px auto 0;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

header.hero h1,
header.hero h2,
header.hero h3,
header.hero li {
  color: #ffffff;
}

header.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  margin: 8px 0 20px;
}

header.hero .eyebrow {
  color: #60a5fa;
}

header.hero .lead {
  color: #dbeafe;
}

header.hero .muted {
  color: rgba(219, 234, 254, 0.76);
}


/* Prevent obsolete white-nav rules from resurfacing */
header.hero .landing-white-nav {
  background: transparent;
  border: 0;
  box-shadow: none;
}


/* =========================================================
   Tablet and mobile
   ========================================================= */

@media (max-width: 800px) {
  header.hero > section {
    grid-template-columns: 1fr;
  }

  header.hero .hero-nav.landing-glass-nav {
    flex-direction: initial;
    align-items: initial;
  }
}


@media (max-width: 600px) {
  header.hero {
    padding: 12px;
  }

  header.hero .hero-nav.landing-glass-nav {
    display: block;
    width: 100%;
    padding: 12px 14px 10px;
    border-radius: 19px;

    background:
      linear-gradient(
        135deg,
        rgba(4, 17, 42, 0.82),
        rgba(11, 40, 94, 0.56)
      );
  }

  header.hero .landing-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
  }

  header.hero .landing-logo-link {
    display: flex;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }

  header.hero .landing-wordmark {
    width: 245px;
    max-width: 100%;
  }

  header.hero .landing-trial-btn {
    min-width: 118px;
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 16px;
  }

  header.hero .landing-nav-links {
    display: grid;
    grid-template-columns: 0.85fr 1.5fr 0.85fr;
    gap: 4px;
    width: 100%;
    margin-top: 10px;
  }

  header.hero .landing-nav-links a {
    min-height: 40px;
    padding: 6px 4px;
    font-size: 15px;
    line-height: 1.15;
  }

  header.hero > section {
    margin-top: 68px;
  }

  header.hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.03;
  }

  header.hero .lead {
    font-size: 18px;
  }
}


@media (max-width: 400px) {
  header.hero .hero-nav.landing-glass-nav {
    padding-left: 11px;
    padding-right: 11px;
  }

  header.hero .landing-wordmark {
    width: 210px;
  }

  header.hero .landing-trial-btn {
    min-width: 105px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 15px;
  }

  header.hero .landing-nav-links a {
    font-size: 14px;
  }
}

/* =========================================================
   MARKETING SUBPAGES
   Pricing and compliance pages
   ========================================================= */

header.hero.marketing-hero {
  min-height: auto;
  padding-bottom: 64px;
}

header.hero.marketing-hero .landing-nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.marketing-hero-copy {
  width: min(1180px, 100%);
  margin: 72px auto 0;
}

.marketing-hero-copy h1 {
  width: min(900px, 100%);
  margin: 8px 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.marketing-hero-copy .lead {
  width: min(760px, 100%);
  margin: 0;
}

.marketing-main {
  padding-top: 54px;
  padding-bottom: 70px;
}

.marketing-intro {
  width: min(900px, 100%);
  margin-bottom: 38px;
}

.marketing-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.marketing-intro p {
  font-size: 17px;
}

.marketing-pricing {
  align-items: stretch;
  margin-top: 26px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
}

.pricing-card.featured {
  outline: none;
  border-color: rgba(37, 99, 235, 0.44);
  box-shadow:
    0 18px 50px rgba(37, 99, 235, 0.14),
    0 10px 30px rgba(15, 23, 42, 0.06);
}

.pricing-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: 18px;
  right: -35px;
  width: 145px;
  padding: 5px 0;

  background: var(--brand);
  color: #ffffff;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;

  transform: rotate(38deg);
}

.pricing-label {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card .price {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
}

.pricing-card .price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.pricing-features {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
}

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

.compliance-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
}

.compliance-card h2 {
  margin: 4px 0 14px;
  font-size: 28px;
  letter-spacing: -0.025em;
}

.compliance-card p:last-child {
  margin-bottom: 0;
}

.compliance-number {
  margin: 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.marketing-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  margin-top: 38px;
  padding: 30px;

  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(37, 99, 235, 0.22),
      transparent 42%
    ),
    linear-gradient(135deg, #08162f, #173d91);

  border: 0;
  color: #ffffff;
}

.marketing-callout > div {
  width: min(760px, 100%);
}

.marketing-callout h2 {
  margin: 4px 0 10px;
  color: #ffffff;
  line-height: 1.12;
}

.marketing-callout p {
  margin-bottom: 0;
  color: #dbeafe;
}

.marketing-callout .eyebrow {
  margin-bottom: 4px;
  color: #60a5fa;
}

.marketing-callout .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.early-access-note {
  width: min(900px, 100%);
  margin-top: 42px;
}

.early-access-note h2 {
  margin-bottom: 12px;
}


/* =========================================================
   Marketing subpages — mobile
   ========================================================= */

@media (max-width: 800px) {
  header.hero.marketing-hero {
    padding-bottom: 48px;
  }

  .marketing-hero-copy {
    margin-top: 54px;
  }

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

  .marketing-callout {
    align-items: flex-start;
    flex-direction: column;
  }
}


@media (max-width: 600px) {
  header.hero.marketing-hero {
    padding-bottom: 40px;
  }

  .marketing-hero-copy {
    margin-top: 44px;
  }

  .marketing-hero-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .marketing-main {
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .pricing-card,
  .compliance-card {
    padding: 23px;
  }

  .marketing-callout {
    padding: 24px;
  }

  .marketing-callout .btn {
    width: 100%;
  }
}
