:root {
  --primary: #1238d6;
  --primary-dark: #07143f;
  --accent: #10b981;
  --text: #172033;
  --muted: #667085;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #e4e7ec;
  --shadow: 0 20px 45px rgba(16, 24, 40, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-wrapper {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-family: Georgia, "Times New Roman", serif;
}

.logo span {
  background: linear-gradient(90deg, #07143f 0%, #1238d6 55%, #0ea5a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.logo img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(7, 20, 63, 0.12);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.nav-menu a:hover {
  color: var(--primary);
}

.header-btn {
  background: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #0b2db3;
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(18, 56, 214, 0.14), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  right: -160px;
  top: 80px;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(18, 56, 214, 0.10);
  left: -120px;
  bottom: 40px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-24px) translateX(18px);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow.light {
  color: #a7f3d0;
}

.hero-content h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-small-text {
  color: var(--muted);
  font-size: 15px;
}

.dashboard-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--primary-dark);
}

.dashboard-header span {
  background: #dcfce7;
  color: #047857;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.stats-grid div {
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
}

.stats-grid small {
  color: var(--muted);
}

.stats-grid h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-top: 4px;
}

.chart {
  height: 170px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f1f5ff, #ffffff);
  border: 1px solid var(--border);
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  margin-bottom: 18px;
}

.bar {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.bar-1 { height: 42%; }
.bar-2 { height: 68%; }
.bar-3 { height: 54%; }
.bar-4 { height: 82%; }
.bar-5 { height: 72%; }

.dashboard-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Partner Marquee */

.partner-marquee {
  background: #050b1f;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
}

.marquee-label {
  flex: 0 0 auto;
  padding-left: 4%;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  min-width: max-content;
  animation: scrollPartners 28s linear infinite;
}

.marquee-content span {
  margin-right: 42px;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

.marquee-content span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Trust */

.trust-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-grid strong {
  color: var(--primary-dark);
}

.trust-grid p {
  color: var(--muted);
  font-size: 14px;
}

/* Sections */

.section {
  padding: 86px 0;
}

.light-bg {
  background: var(--light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 8px 25px rgba(16, 24, 40, 0.04);
}

.info-card span {
  width: 44px;
  height: 44px;
  background: #eef4ff;
  color: var(--primary);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.info-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.info-card p {
  color: var(--muted);
  font-size: 15px;
}

/* Calling Leads */

.call-leads-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.16), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(18, 56, 214, 0.14), transparent 32%),
    #f8fbff;
}

.call-leads-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.call-leads-grid h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.call-leads-grid > div > p {
  color: var(--muted);
  margin-bottom: 20px;
}

.lead-dashboard {
  background: #07143f;
  border-radius: 30px;
  padding: 28px;
  color: #ffffff;
  box-shadow: 0 28px 60px rgba(7, 20, 63, 0.25);
  position: relative;
  overflow: hidden;
}

.lead-dashboard::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.18);
  border-radius: 50%;
  top: -80px;
  right: -70px;
}

.lead-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 18px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.lead-row span {
  color: #cbd5e1;
  font-size: 14px;
}

.lead-row strong {
  font-size: 24px;
  color: #ffffff;
}

.lead-row.active {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.35);
}

.mini-graph {
  position: relative;
  z-index: 1;
  height: 120px;
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
}

.mini-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 999px 999px 6px 6px;
  animation: pulseBars 2.5s ease-in-out infinite;
}

.mini-bar.one { height: 45%; }
.mini-bar.two { height: 70%; animation-delay: 0.2s; }
.mini-bar.three { height: 55%; animation-delay: 0.4s; }
.mini-bar.four { height: 88%; animation-delay: 0.6s; }
.mini-bar.five { height: 76%; animation-delay: 0.8s; }

@keyframes pulseBars {
  0%, 100% {
    transform: scaleY(0.92);
    opacity: 0.75;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Split */

.split-section {
  padding: 80px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.split-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 38px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.split-card.dark {
  background: var(--primary-dark);
  color: var(--white);
}

.split-card h2 {
  font-size: 34px;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.split-card.dark h2,
.split-card.dark p,
.split-card.dark li {
  color: var(--white);
}

.split-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.split-card ul {
  list-style: none;
  margin-bottom: 28px;
}

.split-card li {
  margin-bottom: 10px;
}

.split-card li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 8px;
}

/* Verticals */

.vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vertical-grid span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  color: var(--primary-dark);
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  border-left: 3px solid var(--primary);
  padding: 8px 0 8px 20px;
}

.process-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 16px;
}

.process-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.process-card p {
  color: var(--muted);
}

/* Compliance */

.compliance-section {
  background: var(--primary-dark);
  padding: 86px 0;
}

.compliance-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  color: var(--white);
}

.compliance-box h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin-bottom: 14px;
}

.compliance-box p {
  color: #d0d5dd;
}

.check-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 26px;
  border-radius: 24px;
}

.check-box p {
  color: var(--white);
  margin-bottom: 12px;
}

/* CTA */

.cta-section {
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  background: var(--light);
  padding: 58px 24px;
  border-radius: 28px;
}

.cta-box h2 {
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 26px;
}

/* Inner Pages */

.page-hero {
  padding: 86px 0;
  background:
    radial-gradient(circle at top left, rgba(18, 56, 214, 0.12), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
  max-width: 850px;
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--muted);
  max-width: 780px;
  font-size: 18px;
}

.content-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.content-box h2 {
  color: var(--primary-dark);
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.content-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.simple-list {
  margin-top: 18px;
  margin-bottom: 24px;
}

.simple-list p {
  margin-bottom: 12px;
  color: var(--text);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.tag-list span {
  background: #eef4ff;
  color: var(--primary-dark);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(18, 56, 214, 0.08);
}

.contact-form button {
  border: none;
  cursor: pointer;
  width: fit-content;
}

.contact-details {
  margin-top: 28px;
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
}

.contact-details p {
  margin-bottom: 10px;
}

.legal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
  max-width: 920px;
}

.legal-box h2 {
  color: var(--primary-dark);
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 26px;
}

.legal-box h2:first-child {
  margin-top: 0;
}

.legal-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* Fixed Responsive Footer */

.site-footer {
  background: #07143f;
  color: #ffffff;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.2fr;
  gap: 42px;
  align-items: flex-start;
  margin-bottom: 44px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-brand h3 {
  font-size: 22px;
}

.footer-brand p {
  color: #cbd5e1;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  margin-bottom: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-contact i {
  color: var(--accent);
  width: 18px;
  min-width: 18px;
  margin-top: 4px;
}

.footer-contact span {
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #cbd5e1;
  font-size: 14px;
  margin: 0;
  max-width: none;
}

/* Footer Responsive */

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand p,
  .footer-contact p {
    max-width: 100%;
  }

  .footer-bottom {
    text-align: left;
  }

  .footer-bottom p {
    width: min(1120px, 92%);
    margin: 0 auto;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .compliance-box,
  .call-leads-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .trust-grid,
  .vertical-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 64px;
  }

  .partner-marquee {
    display: block;
  }

  .marquee-label {
    padding-left: 4%;
    margin-bottom: 12px;
  }
}

@media (max-width: 560px) {
  .logo span:last-child {
    font-size: 15px;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .cards-grid,
  .trust-grid,
  .vertical-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .split-card,
  .content-box,
  .legal-box {
    padding: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }
}
/* Advanced Page Enhancements */

.inner-buttons {
  margin-top: 28px;
}

.advertiser-hero,
.publisher-hero {
  position: relative;
  overflow: hidden;
}

.advertiser-hero::after,
.publisher-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  right: -120px;
  top: 40px;
  background: rgba(16, 185, 129, 0.13);
  animation: floatGlow 9s ease-in-out infinite;
}

.advanced-cards .info-card {
  transition: 0.25s ease;
}

.advanced-cards .info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(18, 56, 214, 0.25);
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

.thankyou-section {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(18, 56, 214, 0.14), transparent 36%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.14), transparent 32%),
    #f8fbff;
}

.thankyou-box {
  max-width: 780px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 56px 34px;
  box-shadow: var(--shadow);
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: #047857;
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 900;
}

.thankyou-box h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.thankyou-box p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 26px;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .thankyou-actions {
    flex-direction: column;
  }
}
/* Mobile logo adjustment */

@media (max-width: 560px) {
  .logo {
    font-size: 17px;
    gap: 9px;
  }

  .logo img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .logo span {
    white-space: nowrap;
  }
}