/* ============================================================
   LeadRallyPros — styles.css
   Brand palette derived from the LeadRallyPros logo:
   navy #070A1D · electric blue #4077F6 · cyan #4BCBF8 ·
   purple #5341EF · white #FEFEFE
   ============================================================ */

/* ---------- Custom properties ---------- */
:root {
  /* Dark navy scale */
  --navy-950: #04061a;
  --navy-900: #070a1d;
  --navy-850: #0a0f26;
  --navy-800: #0d1330;
  --navy-750: #101736;
  --navy-700: #161f45;

  /* Brand accents */
  --blue: #4077f6;
  --blue-bright: #5c8bff;
  --cyan: #4bcbf8;
  --cyan-bright: #67d5f0;
  --purple: #5341ef;
  --purple-bright: #7a5cff;

  --white: #fefefe;

  /* Text */
  --text-dark: #0b1026;
  --text-dark-soft: #3a4468;
  --text-light: #eef1fb;
  --text-light-soft: #c2c9e4;
  --text-muted-dark: #8b93b8;
  --text-muted-light: #98a1c4;

  /* Light surfaces */
  --light-bg: #f4f6fc;
  --light-card: #ffffff;
  --light-border: #e2e7f4;

  /* Gradients */
  --grad-main: linear-gradient(120deg, #4077f6 0%, #7a5cff 100%);
  --grad-cyan: linear-gradient(120deg, #4bcbf8 0%, #4077f6 100%);
  --grad-cta: linear-gradient(120deg, #4077f6 0%, #5341ef 55%, #7a5cff 100%);

  /* Glow */
  --glow-blue: 0 0 34px rgba(64, 119, 246, 0.35);
  --glow-soft: 0 0 60px rgba(91, 72, 255, 0.22);

  /* Shape */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(7, 10, 29, 0.06);
  --shadow: 0 10px 30px rgba(7, 10, 29, 0.1);
  --shadow-lg: 0 24px 60px rgba(7, 10, 29, 0.16);
  --shadow-dark: 0 14px 40px rgba(0, 0, 0, 0.35);

  /* Layout */
  --container: 1160px;
  --header-h: 72px;
  --section-pad: clamp(64px, 9vw, 116px);

  /* Fonts */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--light-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(64, 119, 246, 0.28);
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section--dark {
  background: var(--navy-900);
  color: var(--text-light);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--light {
  background: var(--light-bg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(64, 119, 246, 0.1);
  border: 1px solid rgba(64, 119, 246, 0.28);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section--dark .eyebrow {
  color: var(--cyan-bright);
  background: rgba(75, 203, 248, 0.1);
  border-color: rgba(75, 203, 248, 0.3);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-cyan);
  box-shadow: 0 0 10px rgba(75, 203, 248, 0.8);
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 2.85rem);
  max-width: 17ch;
  margin-bottom: 18px;
}

.section-sub {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  color: var(--text-dark-soft);
  max-width: 60ch;
}

.section--dark .section-sub {
  color: var(--text-light-soft);
}

.section-head {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.22s ease;
}

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

.btn--primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(64, 78, 246, 0.4);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(64, 78, 246, 0.55);
}

.btn--ghost {
  color: var(--text-light);
  border: 1px solid rgba(238, 241, 251, 0.35);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(75, 203, 248, 0.18);
}

.btn--light {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(4, 6, 26, 0.28);
}

.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(4, 6, 26, 0.34);
}

.btn--outline-dark {
  color: var(--text-dark);
  border: 1.5px solid var(--navy-700);
  background: var(--light-card);
}

.btn--outline-dark:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--block {
  width: 100%;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--cyan);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 8, 26, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(4, 6, 22, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 38px;
  width: auto;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-light-soft);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  padding: 12px 20px;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: rgba(4, 6, 22, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 24px 30px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-light);
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a:hover {
  color: var(--cyan-bright);
}

.mobile-nav .btn {
  margin-top: 22px;
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(52% 44% at 82% 12%, rgba(83, 65, 239, 0.34) 0%, rgba(83, 65, 239, 0) 70%),
    radial-gradient(46% 42% at 8% 88%, rgba(64, 119, 246, 0.3) 0%, rgba(64, 119, 246, 0) 70%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--text-light);
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 88px));
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 3.7rem);
  color: var(--white);
  margin-bottom: 22px;
}

.hero h1 .gradient-text {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  color: var(--text-light-soft);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  max-width: 54ch;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light-soft);
}

.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--cyan-bright);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: conic-gradient(from 210deg, rgba(64, 119, 246, 0.35), rgba(83, 65, 239, 0.3), rgba(75, 203, 248, 0.25), rgba(64, 119, 246, 0.35));
  filter: blur(48px);
  border-radius: 50%;
  opacity: 0.75;
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-dark);
  aspect-ratio: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(7, 10, 29, 0) 55%, rgba(7, 10, 29, 0.55) 100%);
  pointer-events: none;
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 12, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}

.float-chip small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--text-muted-light);
}

.float-chip .chip-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.float-chip .chip-ico svg {
  width: 18px;
  height: 18px;
}

.chip-ico--green {
  background: rgba(52, 211, 153, 0.16);
  color: #34d399;
}

.chip-ico--blue {
  background: rgba(75, 203, 248, 0.16);
  color: var(--cyan-bright);
}

.chip-ico--purple {
  background: rgba(122, 92, 255, 0.18);
  color: var(--purple-bright);
}

.float-chip--top {
  top: 7%;
  left: -7%;
}

.float-chip--bottom {
  bottom: 8%;
  right: -6%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Problem section ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(64, 119, 246, 0.35);
}

.card-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--grad-main);
  box-shadow: 0 10px 22px rgba(83, 65, 239, 0.3);
}

.card-ico svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.card-ico--cyan {
  background: linear-gradient(120deg, #4bcbf8, #4077f6);
  box-shadow: 0 10px 22px rgba(64, 119, 246, 0.3);
}

.card-ico--purple {
  background: linear-gradient(120deg, #7a5cff, #5341ef);
  box-shadow: 0 10px 22px rgba(122, 92, 255, 0.32);
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.96rem;
  color: var(--text-dark-soft);
}

/* ---------- What we do ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.step-card {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-850) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(75, 203, 248, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--cyan-bright);
  background: rgba(75, 203, 248, 0.12);
  border: 1px solid rgba(75, 203, 248, 0.3);
  border-radius: 999px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.14rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-light-soft);
}

.step-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted-light);
}

.step-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(75, 203, 248, 0.9);
  flex-shrink: 0;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-cyan);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(75, 203, 248, 0.5);
}

.step-arrow svg {
  width: 14px;
  height: 14px;
}

/* Flow line (visitor -> customer) */
.flow-line {
  margin-top: clamp(40px, 6vw, 60px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border: 1px dashed rgba(75, 203, 248, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(75, 203, 248, 0.05);
}

.flow-line span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 18px;
  border-radius: 999px;
}

.flow-line span.highlight {
  background: var(--grad-main);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(83, 65, 239, 0.45);
}

.flow-line svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

/* What-we-do visual */
.wwd-visual {
  margin-top: clamp(44px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-850));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
}

.wwd-visual-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-dark);
  aspect-ratio: 1;
}

.wwd-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwd-visual-copy h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.wwd-visual-copy p {
  color: var(--text-light-soft);
  margin-bottom: 24px;
  max-width: 46ch;
}

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: how;
}

.how-card {
  position: relative;
  padding-top: 14px;
}

.how-card .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.how-card .num::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--grad-cyan);
  border-radius: 2px;
}

.how-card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 0.95rem;
  color: var(--text-dark-soft);
}

.how-cta {
  margin-top: clamp(36px, 5vw, 52px);
  text-align: center;
}

.how-cta .btn {
  padding: 17px 34px;
  font-size: 1.05rem;
}

/* ---------- Automation workflow ---------- */
.automation {
  position: relative;
  overflow: hidden;
}

.automation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 40% at 18% 0%, rgba(64, 119, 246, 0.22) 0%, rgba(64, 119, 246, 0) 70%),
    radial-gradient(40% 40% at 92% 100%, rgba(83, 65, 239, 0.24) 0%, rgba(83, 65, 239, 0) 70%);
  pointer-events: none;
}

.automation-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.workflow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(13, 19, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  position: relative;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
  backdrop-filter: blur(4px);
}

.workflow-step:hover {
  transform: translateX(6px);
  border-color: rgba(75, 203, 248, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.workflow-step .wf-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(64, 119, 246, 0.16);
  color: var(--cyan-bright);
  border: 1px solid rgba(75, 203, 248, 0.3);
}

.workflow-step .wf-ico svg {
  width: 20px;
  height: 20px;
}

.workflow-step .wf-ico--purple {
  background: rgba(122, 92, 255, 0.16);
  color: var(--purple-bright);
  border-color: rgba(122, 92, 255, 0.35);
}

.workflow-step strong {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--white);
  font-weight: 700;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: var(--cyan);
  padding: 9px 0;
  opacity: 0.9;
}

.workflow-arrow svg {
  width: 22px;
  height: 22px;
}

.workflow-final {
  background: var(--grad-main);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(83, 65, 239, 0.45);
}

.workflow-final .wf-ico {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* ---------- Who we help ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(64, 119, 246, 0.4);
}

.industry-card .ind-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(140deg, rgba(64, 119, 246, 0.12), rgba(83, 65, 239, 0.12));
  color: var(--blue);
  border: 1px solid rgba(64, 119, 246, 0.22);
}

.industry-card .ind-ico svg {
  width: 22px;
  height: 22px;
}

.industry-card strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--text-dark);
}

.help-bottom {
  margin-top: 40px;
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.help-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 90% 10%, rgba(83, 65, 239, 0.35) 0%, rgba(83, 65, 239, 0) 70%);
  pointer-events: none;
}

.help-bottom > * {
  position: relative;
}

.help-bottom h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.help-bottom p {
  color: var(--text-light-soft);
  max-width: 60ch;
  font-size: 0.98rem;
}

/* ---------- Why LeadRallyPros ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-850));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 92, 255, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-light-soft);
  font-size: 0.95rem;
}

.why-card .card-ico {
  margin-bottom: 20px;
}

/* ---------- Differentiator ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.diff-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
}

.diff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diff-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(7, 10, 29, 0.06);
  pointer-events: none;
}

.diff-copy h2 {
  margin-bottom: 20px;
}

.diff-copy p {
  color: var(--text-dark-soft);
  margin-bottom: 18px;
  max-width: 52ch;
}

.diff-copy p strong {
  color: var(--text-dark);
}

.diff-copy .btn {
  margin-top: 10px;
}

/* ---------- Results ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.result-card {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-850));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.26s ease, border-color 0.26s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(75, 203, 248, 0.4);
}

.result-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  background: rgba(75, 203, 248, 0.12);
  border: 1px solid rgba(75, 203, 248, 0.3);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 18px;
}

.result-tag--purple {
  color: var(--purple-bright);
  background: rgba(122, 92, 255, 0.14);
  border-color: rgba(122, 92, 255, 0.35);
}

.result-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.result-card p {
  color: var(--text-muted-light);
  font-size: 0.92rem;
}

.result-placeholder {
  margin-top: 16px;
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  font-size: 0.88rem;
  color: var(--text-muted-light);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: rgba(64, 119, 246, 0.4);
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 19px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-dark);
}

.faq-q .faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(64, 119, 246, 0.1);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.28s ease, background 0.28s ease;
}

.faq-q .faq-icon svg {
  width: 15px;
  height: 15px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--grad-main);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--text-dark-soft);
  font-size: 0.97rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--grad-cta);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(70% 90% at 50% 0%, rgba(0, 0, 0, 0.6), transparent 80%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  max-width: 20ch;
  margin-bottom: 18px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.final-cta .btn {
  font-size: 1.1rem;
  padding: 19px 40px;
}

.final-cta .btn:hover {
  box-shadow: 0 20px 44px rgba(4, 6, 26, 0.4);
}

.final-cta .final-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.contact-info p {
  color: var(--text-light-soft);
  margin-bottom: 22px;
  max-width: 46ch;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-points .cp-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(75, 203, 248, 0.12);
  border: 1px solid rgba(75, 203, 248, 0.28);
  color: var(--cyan-bright);
}

.contact-points .cp-ico svg {
  width: 19px;
  height: 19px;
}

.contact-points strong {
  display: block;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.contact-points span {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
}

/* Form */
.lead-form {
  background: var(--light-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3.5vw, 38px);
}

.lead-form h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.lead-form > p {
  color: var(--text-dark-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text-dark);
}

.form-field label .req {
  color: var(--blue);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--light-bg);
  border: 1.5px solid var(--light-border);
  border-radius: 11px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 108px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a6aecd;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(64, 119, 246, 0.14);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%233a4468' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-status {
  display: none;
  margin-top: 20px;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status.success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #0b7a4b;
}

.form-status.success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #b91c1c;
}

.lead-form .btn {
  margin-top: 20px;
}

.form-disclaimer {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--text-muted-light);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand img {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.93rem;
  max-width: 38ch;
  color: var(--text-muted-light);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 0.94rem;
  color: var(--text-muted-light);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cyan-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-muted-light);
}

.footer-bottom a:hover {
  color: var(--cyan-bright);
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-tagline svg {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }

  .step-arrow {
    display: none;
  }

  .industries {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 22px;
  }
}

@media (max-width: 900px) {
  .nav,
  .header-actions .btn--ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .wwd-visual,
  .automation-inner,
  .diff-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .problem-grid,
  .why-grid,
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-chip--top {
    left: -4%;
  }

  .float-chip--bottom {
    right: -4%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), 100% - 32px);
  }

  .problem-grid,
  .why-grid,
  .results-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

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

  .industries {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .industry-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

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

  .float-chip--top {
    left: 2%;
    top: 4%;
  }

  .float-chip--bottom {
    right: 2%;
    bottom: 4%;
  }

  .float-chip {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .flow-line {
    flex-direction: column;
  }

  .flow-line svg {
    transform: rotate(90deg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .industries {
    grid-template-columns: 1fr;
  }

  .brand-name {
    display: none;
  }
}
