@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Syne:wght@600;700;800&display=swap');

:root {
  --mkt-bg: #f4f3ef;
  --mkt-surface: #ffffff;
  --mkt-surface-soft: #eceae4;
  --mkt-border: rgba(0, 0, 0, 0.09);
  --mkt-text: #1a1a1e;
  --mkt-muted: #7a7870;
  --mkt-muted-2: #cac8c0;
  --mkt-accent: #1a1a2e;
  --mkt-accent-strong: #151525;
  --mkt-accent-dim: rgba(26, 26, 46, 0.06);
  --mkt-radius-lg: 24px;
  --mkt-radius-md: 16px;
  --mkt-radius-sm: 12px;
  --mkt-shadow-soft: 0 16px 32px rgba(16, 24, 40, 0.08);
}

html[data-theme="dark"] {
  --mkt-bg: #0a0a0b;
  --mkt-surface: #111114;
  --mkt-surface-soft: #16161c;
  --mkt-border: rgba(255, 255, 255, 0.07);
  --mkt-text: #f0f0ed;
  --mkt-muted: #6b6b70;
  --mkt-muted-2: #2e2e34;
  --mkt-accent: #c8f53d;
  --mkt-accent-strong: #b7e030;
  --mkt-accent-dim: rgba(200, 245, 61, 0.08);
}

html[data-theme="light"] body.marketing-home {
  --blog-cover-bg: #e4e2dc;
  --blog-tag-bg: rgba(26, 26, 46, 0.06);
  --blog-tag-color: #1a1a2e;
  --blog-tag-border: rgba(26, 26, 46, 0.12);
  --blog-btn-bg: #1a1a2e;
  --blog-btn-color: #f4f3ef;
  --contact-btn-bg: #1a1a2e;
  --contact-btn-color: #f4f3ef;
  --contact-media-bg: #e4e2dc;
  --contact-link-hover: #1a1a2e;
  --contact-icon-bg: rgba(26, 26, 46, 0.07);
  --contact-divider: rgba(0, 0, 0, 0.07);
}

html[data-theme="dark"] body.marketing-home {
  --blog-cover-bg: #1a1a22;
  --blog-tag-bg: rgba(200, 245, 61, 0.1);
  --blog-tag-color: #c8f53d;
  --blog-tag-border: rgba(200, 245, 61, 0.2);
  --blog-btn-bg: #c8f53d;
  --blog-btn-color: #0a0a0b;
  --contact-btn-bg: #c8f53d;
  --contact-btn-color: #0a0a0b;
  --contact-media-bg: #16161c;
  --contact-link-hover: #c8f53d;
  --contact-icon-bg: rgba(200, 245, 61, 0.1);
  --contact-divider: rgba(255, 255, 255, 0.06);
}

body.marketing-page {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  background: var(--mkt-bg);
  color: var(--mkt-text);
}

.marketing-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 16px 72px;
}

.mkt-section {
  margin-bottom: 24px;
}

.mkt-shell {
  border-radius: var(--mkt-radius-lg);
  padding: clamp(20px, 4vw, 42px);
}

.mkt-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.mkt-grid--hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.mkt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #b2ccff;
  color: var(--mkt-accent);
  background: #eef4ff;
  padding: 6px 12px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.mkt-title {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.mkt-subtitle {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 1.03rem;
  max-width: 64ch;
}

.mkt-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mkt-btn {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 11px 18px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mkt-btn--primary {
  background: var(--mkt-accent);
  color: #fff;
  border: 1px solid var(--mkt-accent);
}

.mkt-btn--primary:hover {
  color: #fff;
  background: var(--mkt-accent-strong);
  border-color: var(--mkt-accent-strong);
}

.mkt-btn--ghost {
  background: #fff;
  color: var(--mkt-text);
  border: 1px solid var(--mkt-border);
}

.mkt-btn--ghost:hover {
  color: var(--mkt-accent);
  border-color: var(--mkt-accent);
}

html[data-theme="dark"] .marketing-services .mkt-badge {
  background: var(--mkt-accent);
  border-color: var(--mkt-accent);
  color: #0a0a0b;
}

html[data-theme="dark"] .marketing-services .mkt-btn--primary {
  color: #0a0a0b;
}

html[data-theme="dark"] .marketing-services .mkt-btn--primary:hover {
  color: #0a0a0b;
}

html[data-theme="dark"] .marketing-services .mkt-btn--ghost {
  background: var(--mkt-accent);
  border-color: var(--mkt-accent);
  color: #0a0a0b;
}

html[data-theme="dark"] .marketing-services .mkt-btn--ghost:hover {
  background: var(--mkt-accent-strong);
  border-color: var(--mkt-accent-strong);
  color: #0a0a0b;
}

.mkt-hero-media {
  border-radius: var(--mkt-radius-md);
  overflow: hidden;
  border: 1px solid var(--mkt-border);
  background: var(--mkt-surface-soft);
}

.mkt-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.mkt-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mkt-metric {
  border: 1px solid var(--mkt-border);
  background: var(--mkt-surface-soft);
  border-radius: var(--mkt-radius-sm);
  padding: 12px;
}

.mkt-metric strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.1;
}

.mkt-metric span {
  color: var(--mkt-muted);
  font-size: 0.82rem;
}

html[data-theme="light"] body.marketing-home::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 10%, rgba(26, 26, 46, 0.04) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b0ad9f' fill-opacity='0.35'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.marketing-home .marketing-main {
  position: relative;
  z-index: 1;
}

.marketing-home .mkt-section:first-child {
  position: relative;
  overflow: hidden;
}

.marketing-home .mkt-section:first-child::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -200px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(26, 26, 46, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.marketing-home .mkt-section:first-child::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 26, 46, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.marketing-home .mkt-grid--hero {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.marketing-home .mkt-grid--hero > * {
  position: relative;
  z-index: 1;
}

.marketing-home .mkt-badge {
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(26, 26, 46, 0.12);
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.06);
  color: #1a1a2e;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
}

html[data-theme="dark"] .marketing-home .mkt-badge {
  border-color: rgba(200, 245, 61, 0.22);
  background: rgba(200, 245, 61, 0.08);
  color: #f0f0ed;
}

.marketing-home .mkt-badge::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: mkt-pulse 2s ease-in-out infinite;
}

.marketing-home .mkt-title {
  margin: 0 0 24px;
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--mkt-text);
}

.marketing-home .mkt-title em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--mkt-accent);
  color: transparent;
}

html[data-theme="dark"] .marketing-home .mkt-title em {
  -webkit-text-stroke: 0;
  color: var(--mkt-accent);
}

.marketing-home .mkt-subtitle {
  font-size: 1.05rem;
  color: var(--mkt-muted);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 40px;
}

.marketing-home .mkt-grid--hero .mkt-actions {
  margin: 0 0 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.marketing-home .mkt-grid--hero .mkt-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.22s ease;
}

.marketing-home .mkt-grid--hero .mkt-btn--primary {
  background: var(--mkt-accent);
  color: #fff;
  border: 1px solid var(--mkt-accent);
}

html[data-theme="dark"] .marketing-home .mkt-grid--hero .mkt-btn--primary {
  color: #0a0a0b;
}

.marketing-home .mkt-grid--hero .mkt-btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  background: var(--mkt-accent);
}

.marketing-home .mkt-grid--hero .mkt-btn--ghost {
  background: transparent;
  color: var(--mkt-text);
  border: 1px solid var(--mkt-border);
}

.marketing-home .mkt-grid--hero .mkt-btn--ghost:hover {
  color: var(--mkt-text);
  border-color: var(--mkt-muted);
}

.marketing-home .mkt-metrics {
  display: flex;
  gap: 0;
  margin-top: 0;
  border: 1px solid var(--mkt-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--mkt-surface);
}

.marketing-home .mkt-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border: 0;
  border-right: 1px solid var(--mkt-border);
  border-radius: 0;
  background: transparent;
  position: relative;
  transition: background 0.2s ease;
}

.marketing-home .mkt-metric:last-child {
  border-right: none;
}

.marketing-home .mkt-metric:hover {
  background: var(--mkt-accent-dim);
}

.marketing-home .mkt-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mkt-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.marketing-home .mkt-metric:hover::before {
  transform: scaleX(1);
}

.marketing-home .mkt-metric strong {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--mkt-text);
}

.marketing-home .mkt-metric span {
  font-size: 0.78rem;
  line-height: 1.3;
}

.marketing-home .mkt-hero-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #e8e6e0;
  border: 1px solid var(--mkt-border);
}

.marketing-home .mkt-hero-media::before,
.marketing-home .mkt-hero-media::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.marketing-home .mkt-hero-media::before {
  top: 16px;
  right: 16px;
  border-top: 2px solid var(--mkt-accent);
  border-right: 2px solid var(--mkt-accent);
  border-radius: 0 8px 0 0;
}

.marketing-home .mkt-hero-media::after {
  bottom: 16px;
  left: 16px;
  border-bottom: 2px solid var(--mkt-accent);
  border-left: 2px solid var(--mkt-accent);
  border-radius: 0 0 0 8px;
}

.marketing-home .mkt-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.marketing-home .mkt-hero-media:hover img {
  transform: scale(1.03);
}

.mkt-media-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mkt-border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
}

.mkt-media-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26, 26, 46, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mkt-accent);
}

.mkt-media-badge-text strong {
  display: block;
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mkt-text);
  line-height: 1;
  margin-bottom: 3px;
}

.mkt-media-badge-text span {
  font-size: 0.75rem;
  color: var(--mkt-muted);
}

html[data-theme="dark"] .mkt-media-badge {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] .mkt-media-badge-icon {
  background: rgba(26, 26, 46, 0.08);
  color: #1a1a2e;
}

html[data-theme="dark"] .mkt-media-badge-text strong {
  color: #1a1a1e;
}

html[data-theme="dark"] .mkt-media-badge-text span {
  color: #7a7870;
}

@keyframes mkt-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes mkt-fade-up-hero {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mkt-fade-right-hero {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.marketing-home .mkt-badge {
  animation: mkt-fade-up-hero 0.5s 0.05s ease both;
}

.marketing-home .mkt-title {
  animation: mkt-fade-up-hero 0.6s 0.12s ease both;
}

.marketing-home .mkt-subtitle {
  animation: mkt-fade-up-hero 0.6s 0.2s ease both;
}

.marketing-home .mkt-grid--hero .mkt-actions {
  animation: mkt-fade-up-hero 0.6s 0.28s ease both;
}

.marketing-home .mkt-metrics {
  animation: mkt-fade-up-hero 0.6s 0.36s ease both;
}

.marketing-home .mkt-hero-media {
  animation: mkt-fade-right-hero 0.7s 0.15s ease both;
}

.mkt-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.mkt-section-title {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  letter-spacing: -0.01em;
}

.mkt-section-text {
  margin: 6px 0 0;
  color: var(--mkt-muted);
  max-width: 68ch;
}

.mkt-services-feature {
  position: relative;
  overflow: hidden;
  --svc-bg: #f4f3ef;
  --svc-surface: #ffffff;
  --svc-surface-2: #eceae4;
  --svc-border: rgba(0, 0, 0, 0.09);
  --svc-border-2: rgba(0, 0, 0, 0.05);
  --svc-accent: #1a1a2e;
  --svc-accent-ink: #ffffff;
  --svc-accent-dim: rgba(26, 26, 46, 0.06);
  --svc-dot: #b0ad9f;
  --svc-text: #1a1a1e;
  --svc-muted: #7a7870;
  --svc-muted-2: #cac8c0;
}

html[data-theme="dark"] .mkt-services-feature {
  --svc-bg: #0a0a0b;
  --svc-surface: #111114;
  --svc-surface-2: #16161c;
  --svc-border: rgba(255, 255, 255, 0.07);
  --svc-border-2: rgba(255, 255, 255, 0.05);
  --svc-accent: #c8f53d;
  --svc-accent-ink: #0a0a0b;
  --svc-accent-dim: rgba(200, 245, 61, 0.08);
  --svc-dot: #3a3a42;
  --svc-text: #f0f0ed;
  --svc-muted: #6b6b70;
  --svc-muted-2: #2e2e34;
}

.mkt-services-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 74% 8%, rgba(26, 26, 46, 0.05) 0%, transparent 56%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b0ad9f' fill-opacity='0.35'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

html[data-theme="dark"] .mkt-services-feature::before {
  background-image: radial-gradient(circle at 74% 8%, rgba(200, 245, 61, 0.08) 0%, transparent 56%);
}

.mkt-services-feature .mkt-shell {
  position: relative;
  z-index: 1;
}

.mkt-services-feature .mkt-section-head--services {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 72px;
}

.mkt-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--svc-muted, var(--mkt-muted));
  margin: 0 0 20px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--svc-border, var(--mkt-border));
  border-radius: 999px;
  background: var(--svc-surface, var(--mkt-surface));
}

.mkt-services-feature .mkt-section-title--services {
  font-family: "Syne", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 14ch;
  color: var(--svc-text);
}

.mkt-services-feature .mkt-section-title--services em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--svc-accent);
  color: transparent;
}

html[data-theme="dark"] .mkt-services-feature .mkt-section-title--services em {
  -webkit-text-stroke: 0;
  color: var(--svc-accent);
}

.mkt-services-feature .mkt-section-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.mkt-services-feature .mkt-section-text--services {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--svc-muted);
  max-width: 32ch;
  text-align: right;
  line-height: 1.75;
}

.mkt-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--svc-accent, var(--mkt-accent));
  display: inline-block;
  flex-shrink: 0;
}

.mkt-btn--services {
  gap: 8px;
  padding: 13px 22px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  border: 1px solid var(--svc-accent);
  background: var(--svc-accent);
  color: var(--svc-accent-ink);
  transition: all 0.2s ease;
}

.mkt-btn--services:hover {
  background: transparent;
  color: var(--svc-accent);
  border-color: var(--svc-accent);
}

.mkt-btn--services svg {
  transition: transform 0.2s ease;
}

.mkt-btn--services:hover svg {
  transform: translateX(3px);
}

.mkt-services-feature .mkt-card-grid--services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mkt-services-feature .mkt-card--service {
  position: relative;
  border: 1px solid var(--svc-border);
  border-radius: 20px;
  background: var(--svc-surface);
  padding: 44px 36px 48px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.mkt-services-feature .mkt-card--service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--svc-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.mkt-services-feature .mkt-card--service:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: var(--svc-muted-2);
}

.mkt-services-feature .mkt-card--service:hover::before {
  transform: scaleX(1);
}

.mkt-services-feature .mkt-card--service:hover .mkt-card-num {
  color: var(--svc-accent);
}

.mkt-services-feature .mkt-card--service:hover .mkt-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.mkt-services-feature .mkt-card--service .mkt-card-num {
  margin: 0 0 28px;
  font-family: "Syne", "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--svc-muted-2);
  transition: color 0.25s ease;
}

.mkt-services-feature .mkt-card--service h3 {
  margin: 0 0 14px;
  font-family: "Syne", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--svc-text);
}

.mkt-services-feature .mkt-card--service > p {
  margin: 0 0 32px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--svc-muted);
}

.mkt-services-feature .mkt-card-divider {
  width: 28px;
  height: 1px;
  background: var(--svc-muted-2);
  margin-bottom: 24px;
}

.mkt-services-feature .mkt-card--service ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.mkt-services-feature .mkt-card--service ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--svc-muted);
}

.mkt-services-feature .mkt-card--service ul li::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--svc-muted-2);
  margin-top: 7px;
}

.mkt-services-feature .mkt-card--service .mkt-card-arrow {
  position: absolute;
  right: 36px;
  bottom: 36px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--svc-border);
  border-radius: 999px;
  background: var(--svc-bg);
  color: var(--svc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mkt-services-strip {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  border: 1px solid var(--svc-border);
  border-radius: 14px;
  background: var(--svc-surface);
}

.mkt-strip-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--svc-muted-2);
  white-space: nowrap;
}

.mkt-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.mkt-tag {
  padding: 5px 14px;
  border: 1px solid var(--svc-border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--svc-muted);
  background: var(--svc-bg);
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mkt-tag:hover {
  border-color: var(--svc-accent);
  color: var(--svc-accent);
}

.marketing-home .mkt-flow-showcase {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.marketing-home .mkt-section-head--flow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 88px;
}

.marketing-home .mkt-section-title--flow {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--mkt-text);
}

.marketing-home .mkt-section-title--flow em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--mkt-accent);
  color: transparent;
}

html[data-theme="dark"] .marketing-home .mkt-section-title--flow em {
  -webkit-text-stroke: 0;
  color: var(--mkt-accent);
}

.marketing-home .mkt-section-text--flow {
  font-size: 0.95rem;
  color: var(--mkt-muted);
  max-width: 38ch;
  line-height: 1.75;
  margin-top: 20px;
}

.marketing-home .mkt-flow--home {
  --flow-line: var(--mkt-border);
  --flow-step-active: var(--mkt-accent);
  --flow-accent-dim: var(--mkt-accent-dim);
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.marketing-home .mkt-flow--home::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 1px;
  background: var(--flow-line);
  z-index: 0;
}

.marketing-home .mkt-flow--home::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(100% / 10);
  width: 0%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--flow-step-active) 0,
    var(--flow-step-active) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 1;
  animation: mkt-flow-line-grow 1.6s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.marketing-home .mkt-flow--home .mkt-flow-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px 0 0;
  cursor: default;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.marketing-home .mkt-flow--home .mkt-flow-step:last-child {
  padding-right: 0;
}

.marketing-home .mkt-flow--home .mkt-flow-dot-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.marketing-home .mkt-flow--home .mkt-flow-dot-bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.marketing-home .mkt-flow--home .mkt-flow-step:hover .mkt-flow-dot-bg {
  border-color: var(--flow-step-active);
  box-shadow: 0 0 0 4px var(--flow-accent-dim);
}

.marketing-home .mkt-flow--home .mkt-flow-step-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mkt-muted-2);
  transition: color 0.25s ease;
}

.marketing-home .mkt-flow--home .mkt-flow-step:hover .mkt-flow-step-num {
  color: var(--flow-step-active);
}

.marketing-home .mkt-flow--home .mkt-flow-dot-line {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mkt-surface);
  border: 2px solid var(--mkt-muted-2);
  transition: border-color 0.25s ease, background 0.25s ease;
  z-index: 3;
}

.marketing-home .mkt-flow--home .mkt-flow-step:hover .mkt-flow-dot-line {
  border-color: var(--flow-step-active);
  background: var(--flow-step-active);
}

.marketing-home .mkt-flow--home .mkt-flow-step h4 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--mkt-text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.marketing-home .mkt-flow--home .mkt-flow-step p {
  font-size: 0.85rem;
  color: var(--mkt-muted);
  line-height: 1.65;
  max-width: 22ch;
}

.marketing-home .mkt-flow--home .mkt-flow-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  border: 1px solid var(--mkt-border);
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mkt-muted);
  background: var(--mkt-surface);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.marketing-home .mkt-flow--home .mkt-flow-step:hover .mkt-flow-tag {
  border-color: var(--flow-step-active);
  color: var(--flow-step-active);
}

.marketing-home .mkt-flow-footer {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  border: 1px solid var(--mkt-border);
  border-radius: 14px;
  background: var(--mkt-surface);
}

.marketing-home .mkt-flow-footer-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--flow-accent-dim);
  border: 1px solid var(--mkt-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-home .mkt-flow-footer-icon svg {
  color: var(--flow-step-active);
}

.marketing-home .mkt-flow-footer-text strong {
  display: block;
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mkt-text);
  margin-bottom: 2px;
}

.marketing-home .mkt-flow-footer-text span {
  font-size: 0.82rem;
  color: var(--mkt-muted);
}

.marketing-home .mkt-flow-footer-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--mkt-border);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--mkt-text);
  text-decoration: none;
  transition: border-color 0.2s ease;
  white-space: nowrap;
  background: transparent;
}

.marketing-home .mkt-flow-footer-cta:hover {
  border-color: var(--flow-step-active);
  color: var(--mkt-text);
}

@keyframes mkt-flow-line-grow {
  from {
    width: 0%;
  }
  to {
    width: 80%;
  }
}

@keyframes mkt-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mkt-services-feature .mkt-section-head--services {
  animation: mkt-fade-up 0.45s ease both;
}

.mkt-services-feature .mkt-card--service:nth-child(1) {
  animation: mkt-fade-up 0.45s 0.08s ease both;
}

.mkt-services-feature .mkt-card--service:nth-child(2) {
  animation: mkt-fade-up 0.45s 0.14s ease both;
}

.mkt-services-feature .mkt-card--service:nth-child(3) {
  animation: mkt-fade-up 0.45s 0.2s ease both;
}

.mkt-services-strip {
  animation: mkt-fade-up 0.5s 0.4s ease both;
}

.marketing-home .mkt-section-head--flow {
  animation: mkt-fade-up 0.6s ease both;
}

.marketing-home .mkt-flow--home .mkt-flow-step:nth-child(1) {
  animation: mkt-fade-up 0.5s 0.1s ease both;
}

.marketing-home .mkt-flow--home .mkt-flow-step:nth-child(2) {
  animation: mkt-fade-up 0.5s 0.2s ease both;
}

.marketing-home .mkt-flow--home .mkt-flow-step:nth-child(3) {
  animation: mkt-fade-up 0.5s 0.3s ease both;
}

.marketing-home .mkt-flow--home .mkt-flow-step:nth-child(4) {
  animation: mkt-fade-up 0.5s 0.4s ease both;
}

.marketing-home .mkt-flow--home .mkt-flow-step:nth-child(5) {
  animation: mkt-fade-up 0.5s 0.5s ease both;
}

.marketing-home .mkt-flow-footer {
  animation: mkt-fade-up 0.5s 0.6s ease both;
}

.marketing-home .mkt-section-head--blog {
  animation: mkt-fade-up 0.6s ease both;
}

.marketing-home .mkt-blog-card:nth-child(1) {
  animation: mkt-fade-up 0.55s 0.1s ease both;
}

.marketing-home .mkt-blog-card:nth-child(2) {
  animation: mkt-fade-up 0.55s 0.2s ease both;
}

.marketing-home .mkt-blog-card:nth-child(3) {
  animation: mkt-fade-up 0.55s 0.3s ease both;
}

.marketing-home .mkt-blog-card:nth-child(4) {
  animation: mkt-fade-up 0.55s 0.35s ease both;
}

.mkt-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mkt-card {
  border: 1px solid var(--mkt-border);
  background: var(--mkt-surface);
  border-radius: var(--mkt-radius-md);
  padding: 16px;
  height: 100%;
}

.mkt-card h3,
.mkt-card h4 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.mkt-card p {
  margin: 0;
  color: #344054;
  font-size: 0.93rem;
  line-height: 1.55;
}

.mkt-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #344054;
  font-size: 0.9rem;
}

.mkt-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mkt-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.mkt-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, #bfd6ff 0%, #0b66ff 50%, #bfd6ff 100%);
  z-index: 0;
}

.mkt-flow-step {
  position: relative;
  z-index: 1;
  border: 1px solid var(--mkt-border);
  background: #fff;
  border-radius: var(--mkt-radius-md);
  padding: 14px;
}

.mkt-flow-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mkt-accent);
  margin-bottom: 12px;
  box-shadow: 0 0 0 6px rgba(11, 102, 255, 0.15);
}

.mkt-flow-step h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.mkt-flow-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #475467;
  line-height: 1.5;
}

.mkt-step-index {
  color: var(--mkt-accent);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.marketing-home .mkt-section-head--blog {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 72px;
}

.marketing-home .mkt-section-title--blog {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--mkt-text);
}

.marketing-home .mkt-section-title--blog em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--mkt-accent);
  color: transparent;
}

html[data-theme="dark"] .marketing-home .mkt-section-title--blog em {
  -webkit-text-stroke: 0;
  color: var(--mkt-accent);
}

.marketing-home .mkt-section-text--blog {
  font-size: 0.95rem;
  color: var(--mkt-muted);
  max-width: 38ch;
  line-height: 1.75;
  margin-top: 18px;
}

.mkt-btn--blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--mkt-text);
  border: 1px solid var(--mkt-border);
}

.mkt-btn--blog:hover {
  border-color: var(--mkt-accent);
  color: var(--mkt-accent);
}

.mkt-btn--blog svg {
  transition: transform 0.2s ease;
}

.mkt-btn--blog:hover svg {
  transform: translateX(3px);
}

.marketing-home .mkt-blog-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 16px;
}

.marketing-home .mkt-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.marketing-home .mkt-blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--mkt-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.marketing-home .mkt-blog-card:hover {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
  border-color: #cac8c0;
}

.marketing-home .mkt-blog-card:hover::before {
  transform: scaleX(1);
}

.marketing-home .mkt-blog-card:first-child {
  grid-row: span 2;
}

.marketing-home .mkt-blog-card:first-child .mkt-blog-cover {
  aspect-ratio: 3 / 2.2;
}

.marketing-home .mkt-blog-card--wide {
  grid-column: 2 / 4;
}

.marketing-home .mkt-blog-card-inline {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.marketing-home .mkt-blog-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--blog-cover-bg);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.marketing-home .mkt-blog-cover--wide {
  width: 240px;
  flex-shrink: 0;
  aspect-ratio: auto;
  height: auto;
}

.marketing-home .mkt-blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.marketing-home .mkt-blog-card:hover .mkt-blog-cover img {
  transform: scale(1.04);
}

.marketing-home .mkt-blog-cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cac8c0;
}

.marketing-home .mkt-blog-cover--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--mkt-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--mkt-border) 1px, transparent 1px);
  background-size: 40px 40px;
}

.marketing-home .mkt-blog-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.marketing-home .mkt-blog-card:first-child .mkt-blog-body {
  padding: 32px 32px 36px;
}

.marketing-home .mkt-blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.marketing-home .mkt-blog-tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--blog-tag-border);
  border-radius: 999px;
  background: var(--blog-tag-bg);
  color: var(--blog-tag-color);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketing-home .mkt-blog-date {
  margin: 0;
  font-size: 0.75rem;
  color: #cac8c0;
  letter-spacing: 0.04em;
}

.marketing-home .mkt-blog-card h3 {
  margin: 0 0 12px;
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--mkt-text);
}

.marketing-home .mkt-blog-card:first-child h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  margin-bottom: 14px;
}

.marketing-home .mkt-blog-excerpt {
  margin: 0;
  font-size: 0.85rem;
  color: var(--mkt-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.marketing-home .mkt-blog-card:first-child .mkt-blog-excerpt {
  -webkit-line-clamp: 4;
}

.marketing-home .mkt-blog-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--mkt-muted);
  transition: color 0.2s ease;
}

.marketing-home .mkt-blog-card:hover .mkt-blog-read {
  color: var(--mkt-accent);
}

.marketing-home .mkt-blog-read svg {
  transition: transform 0.2s ease;
}

.marketing-home .mkt-blog-card:hover .mkt-blog-read svg {
  transform: translateX(3px);
}

.marketing-home .mkt-blog-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 80px 40px;
  border: 1px dashed #cac8c0;
  border-radius: 20px;
  background: var(--mkt-surface);
}

.marketing-home .mkt-blog-empty-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blog-tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mkt-accent);
}

.marketing-home .mkt-blog-empty p {
  font-size: 0.95rem;
  color: var(--mkt-muted);
  max-width: 32ch;
  line-height: 1.65;
}

.marketing-home .mkt-blog-showcase .mkt-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: var(--blog-btn-bg);
  color: var(--blog-btn-color);
  border: 1px solid var(--blog-btn-bg);
}

.marketing-home .mkt-blog-showcase .mkt-btn--primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.marketing-home .mkt-contact-showcase {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

html[data-theme="dark"] .marketing-home .mkt-contact-showcase::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 245, 61, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.marketing-home .mkt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.marketing-home .mkt-contact-left {
  display: flex;
  flex-direction: column;
  animation: mkt-fade-up 0.6s 0.05s ease both;
}

.marketing-home .mkt-section-title--contact {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.7rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--mkt-text);
  margin-bottom: 20px;
}

.marketing-home .mkt-section-title--contact em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--mkt-accent);
  color: transparent;
}

html[data-theme="dark"] .marketing-home .mkt-section-title--contact em {
  -webkit-text-stroke: 0;
  color: var(--mkt-accent);
}

.marketing-home .mkt-contact-showcase .mkt-eyebrow-dot {
  animation: mkt-contact-blink 2.4s ease-in-out infinite;
}

@keyframes mkt-contact-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.marketing-home .mkt-section-text--contact {
  font-size: 1rem;
  color: var(--mkt-muted);
  max-width: 40ch;
  line-height: 1.75;
  margin-bottom: 36px;
}

.marketing-home .mkt-contact-showcase .mkt-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  background: var(--contact-btn-bg);
  color: var(--contact-btn-color);
  border: 1px solid var(--contact-btn-bg);
  transition: all 0.22s ease;
  width: fit-content;
  margin-bottom: 52px;
}

.marketing-home .mkt-contact-showcase .mkt-btn--primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.marketing-home .mkt-contact-showcase .mkt-btn--primary svg {
  flex-shrink: 0;
}

.marketing-home .mkt-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--mkt-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--mkt-surface);
}

.marketing-home .mkt-contact-list li {
  border-bottom: 1px solid var(--contact-divider);
}

.marketing-home .mkt-contact-list li:last-child {
  border-bottom: none;
}

.marketing-home .mkt-contact-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  text-decoration: none;
  color: var(--mkt-muted);
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.marketing-home .mkt-contact-list a::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  rotate: 45deg;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.marketing-home .mkt-contact-list a:hover {
  background: var(--contact-icon-bg);
  color: var(--contact-link-hover);
}

.marketing-home .mkt-contact-list a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.marketing-home .mkt-contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--contact-icon-bg);
  border: 1px solid var(--mkt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.marketing-home .mkt-contact-list a:hover .mkt-contact-icon {
  background: var(--contact-icon-bg);
}

.marketing-home .mkt-contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--mkt-accent);
}

.marketing-home .mkt-contact-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.marketing-home .mkt-contact-label small {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}

.marketing-home .mkt-contact-label span {
  font-size: 0.875rem;
  line-height: 1.3;
}

.marketing-home .mkt-contact-media {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--contact-media-bg);
  border: 1px solid var(--mkt-border);
  flex-shrink: 0;
  animation: mkt-fade-right-hero 0.7s 0.15s ease both;
}

.marketing-home .mkt-contact-media::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  z-index: 2;
  border-top: 2px solid var(--contact-btn-bg);
  border-right: 2px solid var(--contact-btn-bg);
  border-radius: 0 8px 0 0;
  pointer-events: none;
}

.marketing-home .mkt-contact-media::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  z-index: 2;
  border-bottom: 2px solid var(--contact-btn-bg);
  border-left: 2px solid var(--contact-btn-bg);
  border-radius: 0 0 0 8px;
  pointer-events: none;
}

.marketing-home .mkt-contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.marketing-home .mkt-contact-media:hover img {
  transform: scale(1.03);
}

.marketing-home .mkt-availability {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mkt-border);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

html[data-theme="dark"] .marketing-home .mkt-availability {
  background: rgba(17, 17, 20, 0.9);
}

.marketing-home .mkt-availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  animation: mkt-pulse-green 2s ease-in-out infinite;
}

.marketing-home .mkt-availability-text strong {
  display: block;
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mkt-text);
  line-height: 1;
  margin-bottom: 2px;
}

.marketing-home .mkt-availability-text span {
  font-size: 0.72rem;
  color: var(--mkt-muted);
}

@keyframes mkt-pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.05);
  }
}

@media (max-width: 1080px) {
  .mkt-services-feature .mkt-card-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mkt-card-grid,
  .mkt-step-grid,
  .mkt-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .marketing-home .mkt-blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .marketing-home .mkt-blog-card:first-child {
    grid-row: span 1;
  }

  .marketing-home .mkt-blog-card:first-child .mkt-blog-cover {
    aspect-ratio: 16 / 9;
  }

  .marketing-home .mkt-blog-card:first-child h3 {
    font-size: 1.2rem;
  }

  .marketing-home .mkt-blog-card--wide {
    grid-column: auto;
  }

  .marketing-home .mkt-blog-card-inline {
    flex-direction: column;
  }

  .marketing-home .mkt-blog-cover--wide {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 920px) {
  .marketing-home .mkt-flow--home {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .marketing-home .mkt-flow--home::before,
  .marketing-home .mkt-flow--home::after {
    display: none;
  }

  .marketing-home .mkt-flow--home .mkt-flow-dot-line {
    display: none;
  }

  .marketing-home .mkt-flow--home .mkt-flow-dot-wrap {
    margin-bottom: 20px;
  }

  .marketing-home .mkt-grid--hero {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .marketing-home .mkt-hero-media {
    aspect-ratio: 16 / 9;
    max-width: 560px;
  }

  .mkt-services-feature .mkt-section-head--services {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .mkt-services-feature .mkt-section-sub {
    align-items: flex-start;
  }

  .mkt-services-feature .mkt-section-text--services {
    text-align: left;
  }

  .mkt-services-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .mkt-strip-tags {
    justify-content: flex-start;
  }

  .mkt-grid--hero {
    grid-template-columns: 1fr;
  }

  .mkt-flow::before {
    display: none;
  }

  .mkt-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .marketing-home .mkt-contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .marketing-home .mkt-contact-media {
    width: 100%;
    justify-self: start;
    aspect-ratio: 16 / 9;
    max-width: 560px;
  }

  .marketing-home .mkt-contact-media::before,
  .marketing-home .mkt-contact-media::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .marketing-home .mkt-blog-grid {
    grid-template-columns: 1fr;
  }

  .marketing-home .mkt-section-head--blog {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .marketing-home .mkt-flow--home {
    grid-template-columns: 1fr;
  }

  .marketing-home .mkt-flow-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .marketing-home .mkt-flow-footer-cta {
    margin-left: 0;
  }

  .marketing-home .mkt-metrics {
    flex-direction: column;
  }

  .marketing-home .mkt-metric {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .marketing-home .mkt-metric:last-child {
    border-bottom: none;
  }

  .mkt-media-badge {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 680px) {
  .mkt-services-feature .mkt-card-grid--services {
    grid-template-columns: 1fr;
  }

  .mkt-services-feature .mkt-card--service {
    padding: 26px 20px 64px;
  }

  .mkt-services-feature .mkt-card--service .mkt-card-arrow {
    right: 18px;
    bottom: 20px;
  }

  .marketing-main {
    padding: 18px 10px 56px;
  }

  .mkt-shell {
    border-radius: 18px;
    padding: 16px;
  }

  .mkt-card-grid,
  .mkt-step-grid,
  .mkt-flow {
    grid-template-columns: 1fr;
  }
}
