:root {
  --tm-navy: #0D1F3C;
  --tm-graphite: #121417;
  --tm-graphite-soft: #1A1D21;
  --tm-graphite-light: #22262B;
  --tm-gold: #C8973A;
  --tm-gold-soft: #F3E6C8;
  --tm-off: #F7F5F0;
  --tm-off-2: #FBFAF7;
  --tm-text: #1F2937;
  --tm-muted: #6B7280;
  --tm-border: #E5E2DA;
  --tm-border-dark: rgba(255,255,255,.08);
  --tm-radius-sm: 8px;
  --tm-radius-md: 14px;
  --tm-radius-lg: 18px;
  --tm-shadow-sm: 0 6px 20px rgba(13, 31, 60, .05);
  --tm-shadow-md: 0 10px 30px rgba(13, 31, 60, .08);
  --tm-container: 1180px;
}

body.marketing-child-theme {
  font-family: 'DM Sans', sans-serif;
  color: var(--tm-text);
}

body.marketing-child-theme h1,
body.marketing-child-theme h2,
body.marketing-child-theme h3,
body.marketing-child-theme h4,
body.marketing-child-theme h5,
body.marketing-child-theme h6 {
  font-family: 'Syne', sans-serif;
  color: var(--tm-navy);
  letter-spacing: -0.02em;
}

.marketing-container {
  max-width: var(--tm-container);
  margin: 0 auto;
  padding: 0 24px;
}

.marketing-section {
  padding: 88px 0;
}

.marketing-section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.marketing-section-head > span {
  display: inline-block;
  color: var(--tm-gold);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.marketing-section-head h2 {
  font-size: 42px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.marketing-section-head p {
  color: var(--tm-muted);
  font-size: 17px;
  line-height: 1.75;
}

.marketing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s ease;
}

.marketing-btn-primary {
  background: var(--tm-navy);
  color: #fff;
  box-shadow: var(--tm-shadow-md);
}

.marketing-btn-secondary {
  background: #fff;
  color: var(--tm-navy);
  border: 1px solid var(--tm-border);
}

.marketing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.marketing-card {
  background: #fff;
  border: 1px solid var(--tm-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: .22s ease;
}

.marketing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow-md);
}

.marketing-card p {
  color: var(--tm-muted);
}

@media (max-width: 1100px) {
  .marketing-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .marketing-section {
    padding: 72px 0;
  }

  .marketing-section-head h2 {
    font-size: 34px;
  }

  .marketing-card-grid {
    grid-template-columns: 1fr;
  }
}