:root {
  --violet: #7c3aed;
  --indigo: #4f46e5;
  --teal: #0d9488;
  --coral: #ea580c;
  --amber: #d97706;
  --rose: #e11d48;
  --sky: #0284c7;
  --ink: #0f172a;
  --slate: #475569;
  --mist: #f1f5f9;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.25);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-grid .site-logo {
  height: 40px;
  max-width: 200px;
  margin-bottom: 0.75rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--indigo);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--slate);
}

.dropdown-menu a:hover {
  background: var(--mist);
  color: var(--indigo);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(79, 70, 229, 0.55);
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(234, 88, 12, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav > a {
  padding: 0.65rem 0;
  font-weight: 600;
  color: var(--slate);
  border-bottom: 1px solid var(--mist);
}

.mobile-nav-group {
  border-bottom: 1px solid var(--mist);
}

.mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-submenu-icon {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.mobile-submenu-toggle.open .mobile-submenu-icon {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0 0.75rem 0.75rem;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu-link {
  padding: 0.5rem 0 !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  color: var(--slate) !important;
  border-bottom: none !important;
}

.mobile-submenu-link:hover {
  color: var(--indigo) !important;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(124, 58, 237, 0.18), transparent),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(13, 148, 136, 0.16), transparent),
    radial-gradient(ellipse 60% 40% at 70% 80%, rgba(234, 88, 12, 0.12), transparent),
    linear-gradient(180deg, #fafbff 0%, #fff 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.12), rgba(13, 148, 136, 0.12));
  color: var(--violet);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(120deg, var(--violet), var(--teal), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--violet), var(--teal), var(--coral), var(--amber));
  z-index: -1;
  opacity: 0.35;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

.stat-violet { background: rgba(124, 58, 237, 0.1); color: var(--violet); }
.stat-teal { background: rgba(13, 148, 136, 0.1); color: var(--teal); }
.stat-coral { background: rgba(234, 88, 12, 0.1); color: var(--coral); }
.stat-sky { background: rgba(2, 132, 199, 0.1); color: var(--sky); }

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.2;
}

.stat span {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-head .eyebrow {
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--slate);
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.feature-icon svg,
.icon-wrap svg,
.perk-icon svg,
.contact-icon svg {
  width: 28px;
  height: 28px;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--indigo);
  background: rgba(79, 70, 229, 0.1);
}

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--white);
  color: var(--indigo);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--violet);
  flex-shrink: 0;
}

.icon-violet { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.icon-teal { background: linear-gradient(135deg, #ccfbf1, #99f6e4); }
.icon-coral { background: linear-gradient(135deg, #ffedd5, #fed7aa); }
.icon-sky { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }
.icon-rose { background: linear-gradient(135deg, #ffe4e6, #fecdd3); }
.icon-amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, #1e293b 50%, #312e81 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
  top: -100px;
  right: -50px;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.35), transparent 70%);
  bottom: -80px;
  left: -40px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-band p {
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  position: relative;
}

.cta-band .btn {
  position: relative;
}

/* Services preview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: transform 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-top {
  padding: 1.75rem;
  color: var(--white);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bg-violet { background: linear-gradient(135deg, var(--violet), var(--indigo)); }
.bg-teal { background: linear-gradient(135deg, var(--teal), #059669); }
.bg-coral { background: linear-gradient(135deg, var(--coral), var(--amber)); }
.bg-sky { background: linear-gradient(135deg, var(--sky), #0369a1); }
.bg-rose { background: linear-gradient(135deg, var(--rose), var(--violet)); }

.service-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.service-card-body {
  padding: 1.25rem 1.75rem 1.75rem;
  background: var(--white);
}

.service-card-body p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card-body a {
  font-weight: 700;
  color: var(--indigo);
}

/* Partner perks */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.perk-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--mist);
  border-left: 4px solid;
}

.perk-card:nth-child(1) { border-color: var(--violet); }
.perk-card:nth-child(2) { border-color: var(--teal); }
.perk-card:nth-child(3) { border-color: var(--coral); }
.perk-card:nth-child(4) { border-color: var(--sky); }
.perk-card:nth-child(5) { border-color: var(--amber); }
.perk-card:nth-child(6) { border-color: var(--rose); }

.perk-card h4 {
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}

.perk-card p {
  color: var(--slate);
  font-size: 0.9rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(124, 58, 237, 0.15), transparent),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(13, 148, 136, 0.12), transparent);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--slate);
  max-width: 560px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--indigo);
  font-weight: 600;
}

/* Content pages */
.content-block {
  max-width: 760px;
}

.content-wide {
  max-width: none;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.split-section.reverse .split-media {
  order: 2;
}

.split-section.reverse .split-copy {
  order: 1;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.split-copy p {
  color: var(--slate);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.benefits-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--slate);
}

.benefits-list li svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  border-radius: var(--radius);
  color: var(--white);
}

.stats-banner strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
}

.stats-banner span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1rem 0 0.5rem;
}

.why-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--mist);
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(124, 58, 237, 0.25);
  display: block;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--slate);
  font-size: 0.9rem;
}

.service-hero-img {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-hero-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  min-height: 220px;
  background: var(--mist);
}

.split-media {
  min-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
}

.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.include-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px -12px rgba(15, 23, 42, 0.15);
}

.include-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0.75rem 0 0.4rem;
  color: var(--ink);
}

.include-card p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.include-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.include-icon svg {
  width: 22px;
  height: 22px;
}

.about-hero-img {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-hero-img img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-timeline article {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.process-timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--indigo);
  margin-bottom: 0.5rem;
}

.process-timeline h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-timeline p {
  color: var(--slate);
  font-size: 0.9rem;
  margin: 0;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.25rem 0;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--slate);
  font-size: 0.95rem;
}

.contact-cta-section {
  padding: 4rem 0;
  background: var(--mist);
}

.contact-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.contact-cta-inner p {
  color: var(--slate);
  margin-bottom: 1.75rem;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.marketer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.marketer-stat {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.marketer-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--violet);
  line-height: 1.2;
}

.marketer-stat span {
  font-size: 0.85rem;
  color: var(--slate);
  font-weight: 600;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.35rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  cursor: pointer;
}

.policy-toc {
  background: var(--mist);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.policy-toc a {
  display: block;
  padding: 0.35rem 0;
  color: var(--indigo);
  font-weight: 600;
  font-size: 0.95rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}

.content-block p,
.content-block li {
  color: var(--slate);
  margin-bottom: 1rem;
}

.content-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.08), rgba(13, 148, 136, 0.08));
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--slate);
}

.form-card {
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--white);
  box-shadow: 0 8px 30px -18px rgba(15, 23, 42, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(79, 70, 229, 0.25);
}

.blog-thumb-link {
  display: block;
  text-decoration: none;
}

.blog-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mist), #e2e8f0);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-thumb-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.75) 0%,
    rgba(15, 23, 42, 0.15) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.blog-thumb-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.blog-thumb--violet .blog-thumb-tag { background: rgba(124, 58, 237, 0.85); }
.blog-thumb--teal .blog-thumb-tag { background: rgba(13, 148, 136, 0.85); }
.blog-thumb--coral .blog-thumb-tag { background: rgba(234, 88, 12, 0.9); }
.blog-thumb--sky .blog-thumb-tag { background: rgba(14, 165, 233, 0.85); }
.blog-thumb--rose .blog-thumb-tag { background: rgba(244, 63, 94, 0.85); }
.blog-thumb--indigo .blog-thumb-tag { background: rgba(79, 70, 229, 0.9); }

.article-hero-img {
  position: relative;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-hero-img img {
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.article-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.45), transparent 50%);
  pointer-events: none;
}

.article-hero-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.9);
}

.article-hero-img--teal .article-hero-badge { background: rgba(13, 148, 136, 0.9); }
.article-hero-img--coral .article-hero-badge { background: rgba(234, 88, 12, 0.9); }
.article-hero-img--sky .article-hero-badge { background: rgba(14, 165, 233, 0.9); }
.article-hero-img--rose .article-hero-badge { background: rgba(244, 63, 94, 0.9); }
.article-hero-img--violet .article-hero-badge { background: rgba(124, 58, 237, 0.9); }

.blog-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-body h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  line-height: 1.35;
}

.blog-body h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-body h3 a:hover {
  color: var(--indigo);
}

.blog-body p {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.65;
  flex: 1;
}

.blog-read-more {
  font-weight: 700;
  color: var(--indigo);
  font-size: 0.92rem;
}

.blog-read-more:hover {
  color: var(--violet);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.article-meta .tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.article-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 2rem;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.65rem;
  color: var(--ink);
}

.article-content p,
.article-content li {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35rem;
  margin-bottom: 1.25rem;
}

.article-content a {
  color: var(--indigo);
  font-weight: 600;
}

.article-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(20, 184, 166, 0.1));
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

.article-cta h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.article-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.article-related h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.article-related ul {
  list-style: none;
  padding: 0;
}

.article-related li {
  margin-bottom: 0.5rem;
}

.article-related a {
  font-weight: 600;
  color: var(--indigo);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  padding: 2rem;
  border-radius: var(--radius);
  color: var(--white);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-grid .logo {
  margin-bottom: 1rem;
}

.footer-grid p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Utilities */
.bg-mist { background: var(--mist); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-media,
  .split-section.reverse .split-copy {
    order: unset;
  }

  .stats-banner,
  .marketer-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-desktop,
  .nav-desktop-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .stat-row,
  .stats-banner,
  .marketer-stats {
    grid-template-columns: 1fr;
  }
}
