/* Adsmash Solar Landing — scoped styles */
.asm-landing {
  --asm-bg: #F5F5F7;
  --asm-text: #1C1C1E;
  --asm-accent: #5271FF;
  --asm-accent-dark: #3d57d9;
  --asm-tertiary: #6E6E73;
  --asm-white: #FFFFFF;
  --asm-dark: #171717;
  --asm-dark-card: #1C1C1C;
  --asm-radius: 20px;
  --asm-radius-sm: 12px;
  --asm-shadow: 0 20px 60px rgba(28, 28, 30, 0.08);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--asm-text);
  background: var(--asm-bg);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

.asm-landing > section,
.asm-landing > .asm-bg-ambient {
  position: relative;
  z-index: 1;
}

.asm-landing *,
.asm-landing *::before,
.asm-landing *::after {
  box-sizing: border-box;
}

.asm-landing img {
  max-width: 100%;
  height: auto;
  display: block;
}

.asm-landing a {
  text-decoration: none;
  color: inherit;
}

.asm-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Ambient background FX ── */
.asm-bg-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.asm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  will-change: transform;
}

.asm-orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(82, 113, 255, 0.55) 0%, transparent 70%);
  top: -8%;
  left: -6%;
  animation: asm-orb-drift-1 14s ease-in-out infinite;
}

.asm-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(143, 164, 255, 0.5) 0%, transparent 70%);
  top: 35%;
  right: -8%;
  animation: asm-orb-drift-2 18s ease-in-out infinite;
}

.asm-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(82, 113, 255, 0.35) 0%, transparent 70%);
  bottom: 15%;
  left: 20%;
  animation: asm-orb-drift-3 16s ease-in-out infinite;
}

.asm-orb--4 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 180, 60, 0.18) 0%, transparent 70%);
  top: 12%;
  right: 18%;
  animation: asm-orb-drift-4 20s ease-in-out infinite;
}

@keyframes asm-orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
}

@keyframes asm-orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 30px) scale(1.1); }
}

@keyframes asm-orb-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -35px); }
}

@keyframes asm-orb-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.18; }
  50% { transform: translate(-30px, 25px) scale(1.15); opacity: 0.28; }
}

/* Hero floating stat chips */
.asm-hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.asm-float-chip {
  position: absolute;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(82, 113, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--asm-accent);
  box-shadow: 0 4px 20px rgba(82, 113, 255, 0.15);
  white-space: nowrap;
  animation: asm-chip-float 5s ease-in-out infinite;
}

.asm-float-chip--1 { top: 14%; left: 6%; animation-delay: 0s; }
.asm-float-chip--2 { top: 22%; right: 5%; animation-delay: 0.8s; }
.asm-float-chip--3 { bottom: 28%; left: 4%; animation-delay: 1.6s; }
.asm-float-chip--4 { bottom: 20%; right: 6%; animation-delay: 2.4s; }

@keyframes asm-chip-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.85; }
  50% { transform: translateY(-10px) rotate(1deg); opacity: 1; }
}

.asm-pulse-ring {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  border: 2px solid rgba(82, 113, 255, 0.35);
  animation: asm-pulse-ring 2.5s ease-out infinite;
}

@keyframes asm-pulse-ring {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hero entrance — hits in first 5 seconds */
.asm-hero .asm-badge,
.asm-hero .asm-hero-title,
.asm-hero .asm-hero-sub,
.asm-hero .asm-cta-wrap,
.asm-hero .asm-hero-card {
  animation: asm-rise-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.asm-hero .asm-badge { animation-delay: 0.05s; }
.asm-hero .asm-hero-title { animation-delay: 0.18s; }
.asm-hero .asm-hero-sub { animation-delay: 0.32s; }
.asm-hero .asm-cta-wrap { animation-delay: 0.46s; }
.asm-hero .asm-hero-card { animation-delay: 0.62s; }

@keyframes asm-rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section ambient blobs */
.asm-section-animated {
  position: relative;
  overflow: hidden;
}

.asm-section-animated::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 113, 255, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
  animation: asm-section-blob 12s ease-in-out infinite;
}

.asm-section-animated::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 113, 255, 0.06) 0%, transparent 70%);
  bottom: -60px;
  left: -40px;
  pointer-events: none;
  animation: asm-section-blob 15s ease-in-out infinite reverse;
}

.asm-section-animated > .asm-container {
  position: relative;
  z-index: 1;
}

@keyframes asm-section-blob {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(25px, 20px); }
}

/* Grid background */
.asm-grid-bg {
  position: relative;
  background-color: var(--asm-bg);
  background-image:
    linear-gradient(rgba(28, 28, 30, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 30, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.asm-grid-bg::before,
.asm-grid-bg::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.asm-grid-bg::before {
  background: var(--asm-accent);
  bottom: 10%;
  left: -5%;
  animation: asm-orb-drift-1 12s ease-in-out infinite;
}

.asm-grid-bg::after {
  background: #8fa4ff;
  bottom: 5%;
  right: -5%;
  animation: asm-orb-drift-2 15s ease-in-out infinite;
}

/* Floating logos */
.asm-float-logo {
  position: absolute;
  opacity: 0.55;
  filter: blur(0.5px);
  z-index: 2;
  animation: asm-logo-float 7s ease-in-out infinite;
}

.asm-float-logo--left {
  left: 4%;
  top: 28%;
  width: 72px;
  animation-delay: 0s;
}

.asm-float-logo--right {
  right: 4%;
  top: 22%;
  width: 64px;
  animation-delay: 1.2s;
}

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

/* Hero */
.asm-hero {
  position: relative;
  padding: 72px 0 48px;
  text-align: center;
  overflow: hidden;
}

.asm-badge {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.asm-badge strong {
  color: var(--asm-accent);
}

.asm-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}

.asm-hero-title .asm-highlight {
  color: var(--asm-accent) !important;
}

.asm-hero-title .asm-meta-tag {
  display: inline-block;
  border: 2px solid var(--asm-text);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.55em;
  vertical-align: middle;
  margin-left: 6px;
  font-weight: 600;
}

.asm-hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--asm-tertiary);
  max-width: 720px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.asm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(180deg, #6280ff 0%, var(--asm-accent) 55%, #4a66eb 100%);
  color: var(--asm-white) !important;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(82, 113, 255, 0.35);
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
}

.asm-btn:hover {
  background: linear-gradient(180deg, #5271FF 0%, var(--asm-accent-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(82, 113, 255, 0.45);
}

/* CTA arrow + pulse — matches growth.houseofvirality.com hero */
.asm-cta-wrap {
  position: relative;
  display: inline-block;
  margin: 20px auto 0;
  z-index: 2;
}

.asm-cta-arrow {
  position: absolute;
  width: 152px;
  height: auto;
  right: calc(100% + 6px);
  top: -34px;
  pointer-events: none;
  z-index: 4;
  transform: rotate(64deg);
  transform-origin: center center;
  filter: brightness(0) saturate(100%) invert(37%) sepia(98%) saturate(1842%) hue-rotate(214deg) brightness(99%) contrast(96%);
  opacity: 1;
  animation: asm-arrow-float 3s ease-in-out infinite alternate;
}

@keyframes asm-arrow-float {
  0% {
    transform: rotate(64deg) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: rotate(64deg) translate(8px, 10px);
    opacity: 0.85;
  }
}

@keyframes asm-btn-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 32px rgba(82, 113, 255, 0.35);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 16px 44px rgba(82, 113, 255, 0.52);
  }
}

.asm-btn--pulse {
  animation: asm-btn-pulse 3s ease-in-out infinite alternate;
}

.asm-btn--pulse:hover {
  animation: none;
  transform: translateY(-2px) scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .asm-btn--pulse,
  .asm-cta-arrow,
  .asm-orb,
  .asm-float-chip,
  .asm-pulse-ring,
  .asm-float-logo,
  .asm-grid-bg::before,
  .asm-grid-bg::after,
  .asm-section-animated::before,
  .asm-section-animated::after,
  .asm-stat-card,
  .asm-hero .asm-badge,
  .asm-hero .asm-hero-title,
  .asm-hero .asm-hero-sub,
  .asm-hero .asm-cta-wrap,
  .asm-hero .asm-hero-card {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .asm-cta-arrow {
    display: none;
  }
}

.asm-btn--dark {
  background: var(--asm-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.asm-btn--dark:hover {
  background: #000;
}

/* Hero media card */
.asm-hero-card {
  margin: 48px auto 0;
  max-width: 920px;
  background: var(--asm-white);
  border-radius: var(--asm-radius);
  box-shadow: var(--asm-shadow);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(28, 28, 30, 0.06);
}

.asm-hero-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  min-height: 320px;
  background:
    linear-gradient(rgba(28, 28, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 30, 0.03) 1px, transparent 1px),
    var(--asm-white);
  background-size: 32px 32px, 32px 32px, auto;
}

.asm-hero-card-left {
  padding: 40px;
  text-align: left;
}

.asm-hero-card-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.asm-hero-card-text {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.asm-hero-card-text span {
  color: var(--asm-accent);
}

.asm-hero-card-right {
  position: relative;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(135deg, rgba(82, 113, 255, 0.08), rgba(82, 113, 255, 0.02));
}

.asm-hero-founder {
  max-height: 340px;
  width: auto;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto;
}

.asm-hero-founder-placeholder {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e8ecff 0%, #f5f5f7 100%);
  color: var(--asm-tertiary);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

/* Trust bar */
.asm-trust {
  padding: 28px 0;
  background: var(--asm-white);
  border-top: 1px solid rgba(28, 28, 30, 0.06);
  border-bottom: 1px solid rgba(28, 28, 30, 0.06);
}

.asm-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 40px;
  text-align: center;
}

.asm-trust-logo {
  height: 36px;
  width: auto;
}

.asm-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(28, 28, 30, 0.12);
}

.asm-trust-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--asm-tertiary);
}

.asm-trust-label strong {
  color: var(--asm-text);
  display: block;
  font-size: 13px;
  font-weight: 700;
}

/* Stats */
.asm-stats {
  padding: 56px 0;
  position: relative;
  z-index: 2;
}

.asm-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.asm-stat-card {
  background: var(--asm-white);
  border-radius: var(--asm-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--asm-shadow);
  border: 1px solid rgba(28, 28, 30, 0.05);
  animation: asm-stat-glow 4s ease-in-out infinite;
}

.asm-stat-card:nth-child(2) { animation-delay: 0.6s; }
.asm-stat-card:nth-child(3) { animation-delay: 1.2s; }

@keyframes asm-stat-glow {
  0%, 100% {
    box-shadow: var(--asm-shadow);
    border-color: rgba(28, 28, 30, 0.05);
  }
  50% {
    box-shadow: 0 16px 48px rgba(82, 113, 255, 0.14);
    border-color: rgba(82, 113, 255, 0.18);
  }
}

.asm-stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--asm-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.asm-stat-label {
  font-size: 15px;
  color: var(--asm-tertiary);
  font-weight: 500;
}

/* Dark sections */
.asm-dark-section {
  background: var(--asm-dark);
  color: var(--asm-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.asm-dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='80' viewBox='0 0 200 80'%3E%3Cpath d='M0 60 Q50 20 100 50 T200 40' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 400px 160px;
  opacity: 0.6;
  pointer-events: none;
}

.asm-section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

/* Explicit white on dark sections — WP themes (Astra) override heading colors */
.asm-dark-section .asm-section-title {
  color: var(--asm-white) !important;
}

.asm-section-title .asm-highlight {
  color: var(--asm-accent);
}

.asm-section-sub {
  text-align: center;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 760px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.asm-screenshot-wrap {
  max-width: 860px;
  margin: 0 auto 48px;
  border-radius: var(--asm-radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.asm-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

/* But How */
.asm-but-how {
  text-align: center;
  position: relative;
  z-index: 1;
}

.asm-but-how-title {
  font-family: 'Architects Daughter', cursive;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
  color: var(--asm-white) !important;
}

.asm-arrow-down {
  width: 48px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.asm-bullets {
  max-width: 720px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asm-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--asm-radius-sm);
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  line-height: 1.55;
}

.asm-bullet-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--asm-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

/* Light sections */
.asm-light-section {
  padding: 80px 0;
  background: var(--asm-bg);
}

.asm-light-section--white {
  padding-bottom: 48px;
  background: var(--asm-white);
}

.asm-brands-marquee {
  overflow: hidden;
  margin-top: 32px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.asm-brands-track {
  display: flex;
  gap: 16px;
  animation: asm-marquee 30s linear infinite;
  width: max-content;
}

.asm-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 10px 22px 10px 12px;
  background: var(--asm-white);
  border: 1px solid rgba(28, 28, 30, 0.1);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--asm-text);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(28, 28, 30, 0.06);
}

.asm-brand-badge__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

/* ── HoV-style client logo marquee ── */
.asm-logo-marquee-section {
  padding: 64px 0 48px;
  background: var(--asm-white);
  overflow: hidden;
}

.asm-logo-marquee-title {
  color: var(--asm-text);
  margin-bottom: 36px;
}

.asm-logo-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.asm-logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: asm-logo-scroll 28s linear infinite;
  padding: 8px 0;
}

.asm-logo-marquee:hover .asm-logo-marquee__track {
  animation-play-state: paused;
}

.asm-logo-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 8px;
}

.asm-logo-marquee__item--dark {
  background: #101010;
  border-radius: 14px;
  padding: 10px 18px;
  height: auto;
  min-height: 72px;
}

.asm-logo-marquee__item img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
}

.asm-logo-marquee__item--dark img {
  height: 48px;
}

@keyframes asm-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ── Results screenshot carousel ── */
.asm-results-section {
  padding: 72px 0 80px;
  background: var(--asm-bg);
  overflow: hidden;
}

.asm-results-carousel {
  position: relative;
  margin: 40px auto 48px;
  max-width: 920px;
  padding: 0 52px;
}

.asm-results-orbit {
  position: absolute;
  right: -28px;
  top: 50%;
  width: 180px;
  height: 180px;
  margin-top: -90px;
  border-radius: 50%;
  border: 3px solid rgba(82, 113, 255, 0.35);
  pointer-events: none;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Architects Daughter', cursive;
  font-size: 22px;
  color: var(--asm-accent);
  transform: rotate(12deg);
  opacity: 0.85;
}

.asm-carousel-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;
  background: var(--asm-white);
  box-shadow: 0 24px 60px rgba(28, 28, 30, 0.1);
  border: 1px solid rgba(28, 28, 30, 0.06);
  touch-action: pan-y;
}

.asm-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.asm-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.asm-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  user-select: none;
  -webkit-user-drag: none;
}

.asm-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(28, 28, 30, 0.1);
  background: var(--asm-white);
  color: var(--asm-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(28, 28, 30, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.asm-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.asm-carousel-btn:hover {
  background: var(--asm-accent);
  color: #fff;
  border-color: var(--asm-accent);
}

.asm-carousel-btn--prev { left: 0; }
.asm-carousel-btn--next { right: 0; }

.asm-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.asm-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(28, 28, 30, 0.18);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.asm-carousel-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--asm-accent);
}

/* Solar case study cards */
.asm-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.asm-case-card {
  background: var(--asm-white);
  border-radius: var(--asm-radius);
  padding: 28px 28px 24px;
  border: 1px solid rgba(28, 28, 30, 0.06);
  box-shadow: var(--asm-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.asm-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--asm-accent), #8fa4ff);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.asm-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(82, 113, 255, 0.12);
}

.asm-case-card:hover::before {
  opacity: 1;
}

.asm-case-card__logo-wrap {
  margin: -28px -28px 0;
  padding: 22px 28px;
  min-height: 92px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(245, 245, 247, 0.9), rgba(255, 255, 255, 0));
  border-bottom: 1px solid rgba(28, 28, 30, 0.05);
}

.asm-case-card__logo-wrap--dark {
  background: linear-gradient(180deg, #101010, #161616);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  padding: 20px 28px;
}

.asm-case-card__logo {
  max-height: 68px;
  max-width: min(260px, 100%);
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.asm-case-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--asm-text);
  line-height: 1.3;
}

.asm-case-card__tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--asm-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: -6px;
}

.asm-case-card__story {
  font-size: 14px;
  color: var(--asm-tertiary);
  line-height: 1.65;
  flex: 1;
}

.asm-case-card__metric {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--asm-accent);
  line-height: 1.15;
  padding-top: 8px;
  border-top: 1px solid rgba(28, 28, 30, 0.06);
}

.asm-case-card__metric-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--asm-text);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .asm-case-grid {
    grid-template-columns: 1fr;
  }

  .asm-results-orbit {
    display: none;
  }

  .asm-results-carousel {
    padding: 0 44px;
    max-width: 100%;
  }

  .asm-logo-marquee__track {
    gap: 40px;
    animation-duration: 22s;
  }

  .asm-logo-marquee__item img {
    height: 44px;
    max-width: 140px;
  }
}

@keyframes asm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Results grid (legacy fallback — carousel preferred) */
.asm-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.asm-result-card {
  border-radius: var(--asm-radius-sm);
  overflow: hidden;
  background: var(--asm-white);
  box-shadow: var(--asm-shadow);
  border: 1px solid rgba(28, 28, 30, 0.06);
}

.asm-result-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

/* Founder section */
.asm-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.asm-founder-photo {
  border-radius: var(--asm-radius);
  overflow: hidden;
  box-shadow: var(--asm-shadow);
  background: var(--asm-white);
}

.asm-founder-photo-placeholder {
  min-height: 400px;
  background: linear-gradient(180deg, #e8ecff, #f5f5f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--asm-tertiary);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

.asm-founder-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.asm-founder-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
}

.asm-founder-bullet::before {
  content: '→';
  color: var(--asm-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ */
.asm-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--asm-dark);
  border-radius: var(--asm-radius);
  padding: 40px 32px;
  position: relative;
  z-index: 3;
}

.asm-faq-title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--asm-white);
  margin-bottom: 28px;
}

.asm-faq-item {
  background: var(--asm-white);
  border-radius: var(--asm-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.asm-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--asm-text);
}

.asm-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--asm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s;
}

.asm-faq-item.is-open .asm-faq-icon {
  transform: rotate(45deg);
}

.asm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px 0 66px;
  font-size: 14px;
  color: var(--asm-tertiary);
  line-height: 1.65;
}

.asm-faq-item.is-open .asm-faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* FAQ section with ticker overlap */
.asm-faq-section {
  position: relative;
  overflow: visible;
  padding-bottom: 100px !important;
}

/* Ticker — wavy tape ribbons (reference-style) */
.asm-ticker-wrap {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 120vw;
  height: 140px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.asm-ticker {
  position: absolute;
  left: 0;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.asm-ticker--back {
  top: 18px;
  transform: rotate(-2.5deg);
  opacity: 0.55;
  filter: blur(1.5px);
  z-index: 1;
}

.asm-ticker--front {
  top: 52px;
  transform: rotate(1.8deg);
  z-index: 2;
}

.asm-ticker-ribbon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 6px 24px rgba(82, 113, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.asm-ticker--back .asm-ticker-ribbon {
  background: linear-gradient(180deg, #d4dcff 0%, #c5d0ff 100%);
}

.asm-ticker--front .asm-ticker-ribbon {
  background: linear-gradient(180deg, #6b85ff 0%, #5271FF 45%, #4a66eb 100%);
  box-shadow:
    0 8px 32px rgba(82, 113, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.asm-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: asm-ticker-scroll 28s linear infinite;
  will-change: transform;
}

.asm-ticker--back .asm-ticker-track {
  animation-duration: 34s;
  animation-direction: reverse;
}

.asm-ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: -0.02em;
  padding: 0 8px;
}

.asm-ticker--front .asm-ticker-item {
  color: var(--asm-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.asm-ticker--back .asm-ticker-item {
  color: var(--asm-accent-dark);
}

.asm-ticker-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 28px;
  flex-shrink: 0;
}

.asm-ticker--front .asm-ticker-dot {
  background: rgba(255, 255, 255, 0.45);
}

.asm-ticker--back .asm-ticker-dot {
  background: rgba(61, 87, 217, 0.35);
}

@keyframes asm-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Form */
.asm-form-section {
  padding: 120px 0 100px;
  background: var(--asm-bg);
  position: relative;
  z-index: 2;
}

.asm-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--asm-white);
  border-radius: var(--asm-radius);
  padding: 48px 40px;
  box-shadow: var(--asm-shadow);
}

.asm-form-title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 32px;
}

.asm-form-group {
  margin-bottom: 18px;
}

.asm-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--asm-text);
}

.asm-form-group input,
.asm-form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(28, 28, 30, 0.12);
  border-radius: var(--asm-radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--asm-bg);
  color: var(--asm-text);
  transition: border-color 0.2s;
}

/* Dropdowns — explicit sizing so WP theme (Astra) styles don't clip the text */
.asm-form-group select {
  height: auto !important;
  min-height: 52px;
  line-height: 1.5 !important;
  padding: 14px 44px 14px 16px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236E6E73' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.asm-form-group input:focus,
.asm-form-group select:focus {
  outline: none;
  border-color: var(--asm-accent);
}

.asm-form-submit {
  width: 100%;
  margin-top: 8px;
  font-size: 17px;
  padding: 18px;
}

.asm-cta-center {
  text-align: center;
  margin: 32px 0;
  position: relative;
  z-index: 2;
}

/* Sticky bottom CTA bar */
.asm-sticky-bar,
.asm-sticky-bar *,
.asm-sticky-bar *::before,
.asm-sticky-bar *::after {
  box-sizing: border-box;
}

.asm-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -120px;
  z-index: 9999;
  padding: 0 16px 20px;
  pointer-events: none;
  transition: bottom 0.5s ease-in-out;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.asm-sticky-bar.is-visible {
  bottom: 0;
  pointer-events: auto;
}

.asm-sticky-bar__wrap {
  position: relative;
  width: min(400px, 100%);
  margin: 0 auto;
  padding: 8px;
  border-radius: 999px;
  background: rgba(242, 249, 254, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 40px rgba(28, 28, 30, 0.15);
  overflow: visible;
}

.asm-sticky-bar__btn {
  position: relative;
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 28px !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #6d8aff 0%, #5271FF 50%, #4a66eb 100%) !important;
  color: #FFFFFF !important;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: clamp(15px, 3.8vw, 18px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  text-decoration: none !important;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow:
    0 0 0 0 rgba(82, 113, 255, 0.5),
    0 8px 28px rgba(82, 113, 255, 0.4);
  animation: asm-sticky-pulse 3s ease-in-out infinite;
}

.asm-sticky-bar__btn:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
  background: linear-gradient(180deg, #5271FF 0%, #4a66eb 100%) !important;
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(82, 113, 255, 0.55);
}

@keyframes asm-sticky-pulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow:
      0 0 20px rgba(82, 113, 255, 0.35),
      0 8px 28px rgba(82, 113, 255, 0.4);
  }
  10%, 90% {
    transform: translate3d(-1px, 0, 0) scale(1.02);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0) scale(1.02);
  }
  30%, 50%, 70% {
    transform: translate3d(-3px, 0, 0) scale(1.03);
    box-shadow:
      0 0 36px rgba(82, 113, 255, 0.55),
      0 10px 32px rgba(82, 113, 255, 0.5);
  }
  40%, 60% {
    transform: translate3d(3px, 0, 0) scale(1.03);
    box-shadow:
      0 0 36px rgba(82, 113, 255, 0.55),
      0 10px 32px rgba(82, 113, 255, 0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .asm-sticky-bar {
    transition: none;
  }

  .asm-sticky-bar__btn {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .asm-hero-card-inner,
  .asm-founder-grid {
    grid-template-columns: 1fr;
  }

  .asm-hero-card-right {
    min-height: 260px;
  }

  .asm-stats-grid,
  .asm-results-grid {
    grid-template-columns: 1fr;
  }

  .asm-float-logo {
    display: none;
  }

  .asm-float-chip {
    display: none;
  }

  .asm-form-card {
    padding: 32px 24px;
  }

  .asm-results-orbit {
    display: none;
  }

  .asm-results-carousel {
    padding: 0 44px;
    max-width: 100%;
  }

  .asm-logo-marquee__track {
    gap: 40px;
    animation-duration: 22s;
  }

  .asm-logo-marquee__item img {
    height: 44px;
    max-width: 140px;
  }
}

@media (max-width: 600px) {
  .asm-hero {
    padding-top: 48px;
  }

  .asm-trust-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .asm-trust-divider {
    display: none;
  }

  .asm-logo-marquee__item img {
    height: 36px;
    max-width: 110px;
  }

  .asm-logo-marquee__track {
    gap: 28px;
  }

  .asm-results-carousel {
    margin: 28px auto 36px;
    padding: 0;
  }

  .asm-carousel-btn {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: -8px;
    transform: none;
  }

  .asm-carousel-btn--prev { left: calc(50% - 52px); }
  .asm-carousel-btn--next { right: calc(50% - 52px); left: auto; }

  .asm-carousel-viewport {
    border-radius: 14px;
  }

  .asm-carousel-dots {
    margin-top: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .asm-logo-marquee__track,
  .asm-carousel-track {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Thank you page ── */
.asm-thankyou-page {
  min-height: 100vh;
  min-height: 100dvh;
}

.asm-thankyou {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.asm-thankyou-card {
  width: min(560px, 100%);
  margin: 0 auto;
  text-align: center;
  background: var(--asm-white);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: var(--asm-shadow);
  border: 1px solid rgba(82, 113, 255, 0.1);
  animation: asm-rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.asm-thankyou-logo {
  margin: 0 auto 28px;
  height: 40px;
  width: auto;
}

.asm-thankyou-check {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
}

.asm-thankyou-check svg {
  width: 100%;
  height: 100%;
}

.asm-thankyou-title {
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--asm-text);
}

.asm-thankyou-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--asm-tertiary);
  margin: 0 0 28px;
}

.asm-thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 0 0 32px;
}

.asm-thankyou-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--asm-text);
  background: var(--asm-bg);
  border-radius: 14px;
  padding: 14px 16px;
}

.asm-thankyou-step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--asm-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.asm-thankyou .asm-btn {
  width: 100%;
  max-width: 280px;
}

.asm-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 600px) {
  .asm-thankyou-card {
    padding: 36px 22px;
  }

  .asm-thankyou-sub {
    font-size: 15px;
  }

  .asm-thankyou-step {
    font-size: 14px;
  }

  .asm-thankyou .asm-btn {
    max-width: 100%;
  }
}
