/* =========================================================
   Dreamview SEO — new homepage styles
   Block 1: Hero + Stats
   No Bootstrap / Tailwind
   ========================================================= */

:root {
  --brand-orange: #f97316;
  --brand-orange-hover: #ea580c;
  --brand-orange-soft: #fff7ed;
  --hero-bg: #0a0b10;
  --hero-green: #4caf50;
  --hero-text: #ffffff;
  --hero-muted: rgba(255, 255, 255, 0.78);
  --site-font: "Assistant Regular", system-ui, sans-serif;
  --site-font-bold: "Assistant Bold", "Assistant Regular", system-ui, sans-serif;
  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --container-max: 1550px;
  --content-narrow-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--site-font);
  color: var(--text-dark);
  background: #fff;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

#mod-custom183 {
    margin-top: 76px;
}

.highlights {
  color: var(--brand-orange);
}

/* Scroll animation (works with templates/dream/js/myjs.js) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Hero
   ========================================================= */

.hero-video-container {
  position: relative;
  isolation: isolate;
  color: var(--hero-text);
  overflow: visible;
  padding: 3.5rem 0 5.5rem;
  min-height: auto;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--hero-bg);
  background-image:
    radial-gradient(ellipse 85% 55% at 50% 8%, rgba(249, 115, 22, 0.22), transparent 58%),
    radial-gradient(ellipse 75% 50% at 50% 92%, rgba(249, 115, 22, 0.16), transparent 55%);
  pointer-events: none;
}

.hero-video-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    #000 38%,
    #000 62%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 10%,
    #000 38%,
    #000 62%,
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-video-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-top {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 3rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.45rem;
  margin-bottom: 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 115, 22, 0.45);
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero-status-dot {
  position: relative;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.22);
  animation: hero-status-dot-breathe 2.4s ease-in-out infinite;
}

.hero-status-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.45);
  transform: translate(-50%, -50%);
  animation: hero-status-dot-ping 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes hero-status-dot-breathe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.28);
  }
}

@keyframes hero-status-dot-ping {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.45;
  }
  70%,
  100% {
    transform: translate(-50%, -50%) scale(2.35);
    opacity: 0;
  }
}

.hero-status-text {
  color: rgba(255, 255, 255, 0.92);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--site-font-bold);
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--hero-text);
  letter-spacing: -0.02em;
}

.hero-title-accent {
  color: var(--brand-orange);
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--hero-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-icon {
  font-size: 1.1rem;
}

.hero-btn--primary {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  box-shadow: 0 12px 40px -12px rgba(249, 115, 22, 0.65);
}

.hero-btn--primary:hover {
  background: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
  color: #fff;
  transform: translateY(-1px);
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-tag-icon {
  color: var(--brand-orange);
  font-size: 0.75rem;
}

/* Browser mockup */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 32px 90px -28px rgba(249, 115, 22, 0.38),
    0 48px 120px -48px rgba(0, 0, 0, 0.88);
  isolation: isolate;
}

@media (hover: hover) and (pointer: fine) {
  .hero-mockup.animate-on-scroll.is-visible {
    transition:
      opacity 0.6s ease-out,
      transform 0.55s cubic-bezier(0.34, 1.15, 0.64, 1),
      box-shadow 0.55s ease;
  }

  .hero-mockup.animate-on-scroll.is-visible:hover {
    transform: translateY(-4px) perspective(1200px) rotateX(-1.5deg) scale3d(1.002, 1.008, 1);
    transform-origin: center bottom;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 34px 88px -28px rgba(249, 115, 22, 0.42),
      0 48px 110px -44px rgba(0, 0, 0, 0.88);
  }
}

.hero-mockup-chrome {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-height: 3.25rem;
  padding: 0.65rem 1.15rem;
  direction: ltr;
  background: linear-gradient(180deg, #1a1d28 0%, #12151c 100%);
  border-radius: 30px 30px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: none;
}

.hero-mockup-chrome::before {
  order: 1;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  padding-inline-start: 1.25rem;
  min-height: 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  content: "מאובטח";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234caf50' d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E")
    no-repeat left center / 14px 14px;
}

.hero-mockup-dots {
  order: 3;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.hero-mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.hero-mockup-dot--red {
  background: #ff5f57;
}
.hero-mockup-dot--yellow {
  background: #febc2e;
}
.hero-mockup-dot--green {
  background: #28c840;
}

.hero-mockup-url {
  order: 2;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(52%, 22rem);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.4rem 1rem 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-mockup-url::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65rem;
  color: rgba(76, 175, 80, 0.95);
  content: "\f023";
}

.hero-mockup-body {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  width: 100%;
  border-radius: 0 0 30px 30px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: none;
  background: #0a0b10;
  isolation: isolate;
}

.hero-mockup-body #hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 0 0 28px 28px;
}

.hero-mockup-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0.18) 0%,
    transparent 38%,
    rgba(10, 11, 16, 0.58) 100%
  );
}

@keyframes hero-mockup-metal-sheen {
  0%,
  78% {
    opacity: 0;
    background-position: 110% 0%;
  }
  82% {
    opacity: 0.98;
  }
  90% {
    opacity: 0.74;
    background-position: 0% 100%;
  }
  94%,
  100% {
    opacity: 0;
    background-position: -10% 110%;
  }
}

.hero-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 30px;
  clip-path: inset(0 round 30px);
  background: linear-gradient(
    135deg,
    transparent 42%,
    rgba(255, 255, 255, 0.2) 46%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.2) 54%,
    transparent 58%,
    transparent 100%
  );
  background-size: 260% 260%;
  background-position: 100% 0%;
  mix-blend-mode: overlay;
  opacity: 0;
  animation: hero-mockup-metal-sheen 8.8s linear infinite;
}

@keyframes hero-mockup-badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero-mockup-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.75rem;
  background: rgba(10, 12, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: min(340px, calc(100% - 1rem));
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.55);
  animation: hero-mockup-badge-float 5.6s ease-in-out infinite;
}

.hero-mockup-badge--google {
  top: 3rem;
  left: -2rem;
  animation-duration: 5.2s;
}

.hero-mockup-badge--metric {
  top: 2rem;
  right: -2.5rem;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
  animation-delay: 1.75s;
  animation-duration: 6.6s;
}
@media (max-width: 1095px) {
  .hero-mockup-badge--metric {
    right: -1.5rem;
  }
}
@media (max-width: 1055px) {
  .hero-mockup-badge--metric {
    right: 0;
  }
}
@media (max-width: 1095px) {
  .hero-mockup-badge--google {
    left: -1rem;
  }
}
@media (max-width: 1055px) {
  .hero-mockup-badge--google {
    left: 0;
  }
}
.hero-metric-badge-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: row-reverse;
}

.hero-mockup-badge--metric .hero-metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: linear-gradient(145deg, #5cbf65 0%, #3d9144 100%);
  color: #fff;
  font-size: 0.85rem;
}

.hero-google-g {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.35rem;
  background: #fff;
  color: #4285f4;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.hero-mockup-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.3;
}

.hero-mockup-metric-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand-orange);
  letter-spacing: -0.02em;
}

.hero-mockup-metric-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.2;
}

.hero-mockup-metrics {
  position: absolute;
  z-index: 3;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  width: calc(40% - 1.2rem);
}

.hero-metric-card {
  padding: 0.56rem 0.85rem;
  border-radius: 0.8rem;
  background: rgba(10, 12, 20, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  gap: 0.14rem;
}

.hero-metric-card .hero-metric-value,
.hero-metric-card .hero-metric-label {
  width: 100%;
  text-align: right;
}

.hero-metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-metric-label {
  font-size: 0.69rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.25;
}

.hero-mockup-panel {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: calc(60% - 1.2rem);
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  background: rgba(10, 12, 20, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: right;
}

.hero-mockup-panel-kicker {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.22rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.55) 0%, rgba(194, 65, 12, 0.72) 100%);
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-mockup-panel-title {
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
}

.hero-mockup-panel-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

@keyframes hero-mockup-float-bob {
  0%,
  100% {
    transform: translateY(48%);
  }
  50% {
    transform: translateY(calc(48% - 4px));
  }
}

.hero-mockup-float {
  position: absolute;
  z-index: 5;
  right: 1.25rem;
  bottom: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.78rem 1.15rem 0.78rem 0.95rem;
  background: #fff;
  border-radius: 0.65rem;
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: min(300px, calc(100% - 2.5rem));
  animation: hero-mockup-float-bob 6.2s ease-in-out infinite;
  animation-delay: 3.1s;
}

.hero-mockup-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.4rem;
  background: rgba(249, 115, 22, 0.12);
  color: var(--brand-orange);
  font-size: 1.1rem;
}

.hero-mockup-float-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1d26;
  line-height: 1.35;
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  .hero-status-dot,
  .hero-status-dot::before,
  .hero-mockup-badge,
  .hero-mockup-float,
  .hero-mockup::after {
    animation: none !important;
  }

  .hero-mockup-float {
    transform: translateY(48%);
  }

  .hero-mockup::after {
    opacity: 0 !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Hero stats
   ========================================================= */

.hero-stats-section {
  background: #fff;
  padding: 2.2rem 0 2rem;
}

.hero-stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-value {
  margin: 0 0 0.3rem;
  font-family: var(--site-font-bold);
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  font-weight: 800;
}

.hero-stat-label {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================================================
   Responsive — Hero
   ========================================================= */

@media (max-width: 900px) {
  .hero-mockup-metrics {
    left: 0.75rem;
    bottom: 0.75rem;
    width: calc(40% - 0.9rem);
  }

  .hero-metric-value {
    font-size: 1.28rem;
  }

  .hero-mockup-panel {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(60% - 0.9rem);
    padding: 0.8rem 0.9rem;
  }

  .hero-mockup-panel-title {
    font-size: clamp(1.3rem, 3vw, 1.65rem);
  }

  .hero-mockup-panel-text {
    font-size: 0.92rem;
  }
}

@media (max-width: 768px) {
  .hero-video-container {
    padding: 2.5rem 0 4rem;
  }

  .hero-top {
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.35rem);
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    max-width: 20rem;
  }

  .hero-mockup {
    border-radius: 22px;
  }

  .hero-mockup-chrome {
    min-height: 2.9rem;
    padding-inline: 0.65rem;
    border-radius: 22px 22px 0 0;
  }

  .hero-mockup-url {
    max-width: min(48%, 11rem);
    font-size: 0.6875rem;
  }

  .hero-mockup-body {
    border-radius: 0 0 22px 22px;
    min-height: 220px;
  }

  .hero-mockup-body #hero-video,
  .hero-mockup-vignette {
    border-radius: 0 0 20px 20px;
  }

  .hero-mockup::after {
    border-radius: 22px;
    clip-path: inset(0 round 22px);
  }

  .hero-mockup-badge,
  .hero-mockup-metrics,
  .hero-mockup-float {
    display: none;
  }

  .hero-mockup-panel {
    right: 0.65rem;
    left: 0.65rem;
    bottom: 0.65rem;
    width: auto;
    padding: 0.6rem 0.68rem;
  }

  .hero-mockup-panel-title {
    font-size: clamp(1.02rem, 3.2vw, 1.35rem);
  }

  .hero-mockup-panel-text {
    font-size: 0.76rem;
  }

  .hero-stats-section {
    padding: 1.6rem 0 1.4rem;
  }

  .hero-stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.8rem;
  }

  .hero-stat-value {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .hero-stat-label {
    font-size: 0.86rem;
  }
}

@media (max-width: 520px) {
  .hero-mockup-panel-title {
    font-size: 0.9375rem;
  }

  .hero-mockup-panel-text {
    font-size: 0.75rem;
  }

  .hero-tag {
    font-size: 0.75rem;
  }
}

/* =========================================================
   Block 2 — Free course (card like new.html)
   ========================================================= */

.free-course-section {
  padding: 0;
  background: transparent;
  margin: 3rem auto;
  max-width: var(--content-narrow-max);
}

.free-course-container {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.free-course-content {
  flex: 1 1 300px;
  min-width: 300px;
  text-align: right;
}

.free-course-media {
  flex: 1 1 300px;
  min-width: 300px;
  position: relative;
}

.free-course-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.free-course-title {
  margin: 0 0 1rem;
  font-family: var(--site-font-bold);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1f2937;
}

.free-course-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
}

.free-course-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.free-course-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 1rem;
  line-height: 1.45;
}

.free-course-list li i {
  color: var(--brand-orange);
  flex-shrink: 0;
}

.free-course-content .hero-btn {
  display: inline-flex;
  text-decoration: none;
  width: auto;
}

.free-course-content .hero-btn-icon {
  margin-right: 10px;
}

.free-course-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .free-course-section {
    padding: 0 24px;
    margin: 2rem 0;
  }

  .free-course-container {
    padding: 2.5rem 1.25rem;
    gap: 2rem;
  }

  .free-course-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .free-course-content,
  .free-course-media {
    min-width: 0;
    flex-basis: 100%;
  }

  .free-course-title {
    font-size: 1.75rem;
  }

  .free-course-lead,
  .free-course-list li {
    font-size: 0.95rem;
  }

  .free-course-content .hero-btn {
    width: 100%;
    max-width: none;
  }
}

/* =========================================================
   Block 2 — Insight
   ========================================================= */

.insight-section {
  background: #f9fafb;
  padding: 3rem 0;
}

.insight-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.insight-visual {
  order: 2;
  position: relative;
  min-height: 34rem;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2rem;
  color: #fff;
  background: #111827;
  box-shadow: 0 18px 36px -22px rgba(15, 23, 42, 0.52);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.insight-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/seo-strategy.jpg")
    center/cover no-repeat;
  transform: scale(1);
  transition: transform 0.55s ease;
}

.insight-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(2, 6, 23, 0.74) 78%);
}

.insight-visual:hover::before {
  transform: scale(1.06);
}

.insight-visual > * {
  position: relative;
  z-index: 2;
}

.insight-visual-top-badge {
  position: absolute;
  top: 1.95rem;
  right: 2.1rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 3;
}

.insight-visual-pill {
  position: absolute;
  top: 1.5rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  border-radius: 1rem;
  padding: 1.55rem 0.95rem 0.55rem;
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.insight-visual-bottom-badge {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.45rem;
  max-width: max-content;
  align-self: flex-start;
  margin: 0 0 1rem;
  background: rgba(249, 115, 22, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.insight-visual-title {
  margin: 0 0 0.8rem;
  font-family: var(--site-font-bold);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}

.insight-visual-text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
  color: rgba(248, 250, 252, 0.9);
}

.insight-content {
  order: 1;
  text-align: right;
}

.insight-kicker {
  margin: 0 0 0.9rem;
  color: #e04d13;
  font-size: 1rem;
  font-weight: 800;
}

.insight-title {
  margin: 0 0 1.2rem;
  font-family: var(--site-font-bold);
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 800;
}

.insight-description {
  margin: 0 0 0.8rem;
  color: #374151;
  font-size: 1.2rem;
  line-height: 1.55;
}

.insight-feature-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.insight-feature-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.insight-feature-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.insight-feature-title {
  margin: 0;
  color: #111827;
  font-size: 1.2rem;
  font-weight: 700;
}

.insight-feature-text {
  margin: 0.35rem 0 0;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.45;
}

.insight-process-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #c2410c;
  background: #fff7ed;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .insight-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .insight-visual,
  .insight-content {
    order: initial;
  }

  .insight-title {
    font-size: 2rem;
  }

  .insight-visual {
    min-height: 22rem;
  }
}

@media (max-width: 768px) {
  .insight-section {
    padding: 2rem 0;
  }

  .insight-description,
  .insight-visual-text,
  .insight-process-link {
    font-size: 0.875rem;
  }

  .insight-visual-title {
    font-size: 1.5rem;
  }

  .insight-visual-pill {
    top: 1.5rem;
    right: 1rem;
    padding: 1.45rem 0.75rem 0.5rem;
    font-size: 1rem;
  }

  .insight-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Block 2 — Why SEO
   ========================================================= */

.why-seo-section {
  padding: 4rem 0;
  background: #fff;
}

.why-seo-container {
  max-width: var(--content-narrow-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.why-seo-kicker {
  margin: 0 0 0.5rem;
  color: #e44d10;
  font-size: 1rem;
  font-weight: 700;
}

.why-seo-title {
  margin: 0 0 1.5rem;
  font-family: var(--site-font-bold);
  font-size: 2.2rem;
  line-height: 1.15;
  color: #1f2937;
  font-weight: 800;
}

.why-seo-text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
}

.why-seo-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.why-seo-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.45;
}

.why-seo-list li i {
  color: var(--brand-orange);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.why-seo-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .why-seo-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-seo-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 768px) {
  .why-seo-section {
    padding: 2.5rem 0;
  }

  .why-seo-text,
  .why-seo-list li,
  .why-seo-kicker {
    font-size: 0.95rem;
  }
}

/* =========================================================
   Block 2 — Value
   ========================================================= */

.value-section {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 0;
}

.value-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.value-cards {
  order: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  background: #f9fafb;
  border: 1px solid #eef2f7;
  border-radius: 1rem;
  padding: 1.2rem;
  min-height: 11.5rem;
}

.value-card--highlight {
  background: #f8f1e8;
}

.value-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #ffe5e5;
  color: #f91616;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  border: 2px solid #dadada8b;
}

.value-card-icon--highlight {
  background: #f6f6f6;
  color: #e04d13;
}

.value-card-title {
  margin: 0 0 0.55rem;
  font-family: var(--site-font-bold);
  font-size: 1.5rem;
  line-height: 1.2;
  color: #0f172a;
  font-weight: 700;
}

.value-card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #4b5563;
}

.value-content {
  order: 1;
  text-align: right;
}

.value-kicker {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
  color: #e44d10;
  font-weight: 700;
}

.value-title {
  margin: 0 0 1rem;
  font-family: var(--site-font-bold);
  font-size: 3rem;
  line-height: 1.08;
  color: #0f172a;
  font-weight: 800;
}

.value-description {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: #4b5563;
}

@media (max-width: 1100px) {
  .value-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .value-section {
    padding: 2rem 0;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

  .value-kicker,
  .value-description {
    font-size: 0.875rem;
  }

  .value-title {
    font-size: 2rem;
  }
}

/* =========================================================
   Block 3 — Expertise
   ========================================================= */

.expertise-section {
  background: #fff;
  padding: 3rem 0;
}

.expertise-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.expertise-head {
  text-align: center;
  margin-bottom: 2rem;
}

.expertise-kicker {
  margin: 0 0 0.5rem;
  color: #e45016;
  font-size: 0.875rem;
  font-weight: 700;
}

.expertise-title {
  margin: 0 0 0.75rem;
  font-family: var(--site-font-bold);
  color: #0f172a;
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 800;
}

.expertise-title-main,
.expertise-title-accent {
  display: block;
}

.expertise-title-main {
  color: #0f172a;
}

.expertise-title-accent {
  color: var(--brand-orange-hover);
}

.expertise-lead {
  margin: 0 auto;
  max-width: 62rem;
  color: #6b7280;
  font-size: 1.2rem;
  line-height: 1.5;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.expertise-card {
  background: #f9fafb;
  border: 1px solid #edf1f5;
  border-radius: 1rem;
  min-height: 13.5rem;
  padding: 1.2rem;
  text-align: right;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 14px 28px -20px rgba(15, 23, 42, 0.45);
}

.expertise-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #eef2f7;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  transform: translate(0, 0) rotate(0deg) scale(1);
  transform-origin: center;
  transition:
    transform 0.35s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.expertise-card:hover .expertise-card-icon {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  transform: translate(-0.18rem, -0.14rem) rotate(-8deg) scale(1.06);
}

.expertise-card-title {
  margin: 0 0 0.6rem;
  font-family: var(--site-font-bold);
  color: #111827;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.expertise-card-text {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .expertise-title {
    font-size: 2rem;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .expertise-section {
    padding: 2rem 0;
  }

  .expertise-title {
    font-size: 2rem;
  }

  .expertise-lead {
    font-size: 0.875rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Block 4 — Case studies
   ========================================================= */

.custom-cases-section {
  padding: 4rem 1.5rem;
  background-color: #f8fafc;
}

.custom-cases-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.custom-cases-kicker {
  margin: 0 0 0.5rem;
  color: var(--brand-orange);
  font-size: 1rem;
  font-weight: 700;
}

.custom-cases-title {
  margin: 0 0 1rem;
  font-family: var(--site-font-bold);
  font-size: 2.2rem;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.15;
}

.custom-cases-lead {
  margin: 0;
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--content-narrow-max);
  margin: 0 auto;
}

.case-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
  border-color: #ffedd5;
}

.case-image-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image {
  transform: scale(1.05);
}

.case-body {
  padding: 1.8rem;
  text-align: right;
}

.case-tag {
  display: inline-block;
  background: var(--brand-orange-soft);
  color: var(--brand-orange);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.case-title {
  margin: 0 0 0.8rem;
  font-family: var(--site-font-bold);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.case-desc {
  margin: 0 0 1.5rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.2rem;
}

.c-metric {
  background: #f8fafc;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}

.c-metric strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand-orange);
  font-weight: 800;
  margin-bottom: 0.2rem;
  direction: ltr;
}

.c-metric span {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .custom-cases-section {
    padding: 2.5rem 1.5rem;
  }

  .custom-cases-title {
    font-size: 1.75rem;
  }

  .custom-cases-lead {
    font-size: 0.95rem;
  }

  .cases-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 400px) {
  .custom-cases-section {
    width: 100%;
    padding: 2rem 1.5rem;
    overflow: hidden;
  }

  .custom-cases-header,
  .cases-grid,
  .case-card {
    width: 100%;
    min-width: 0;
  }

  .cases-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .case-body {
    padding: 1.25rem;
  }

  .case-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .c-metric {
    min-width: 0;
    padding: 10px 6px;
  }
}

/* =========================================================
   Block 5 — CTA strip
   ========================================================= */

.cta-strip-section {
  background: #ea580c;
  padding: 2rem 0;
}

.cta-strip-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.cta-strip-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: left;
  width: fit-content;
  max-width: 100%;
  background: #fff;
  color: #9a3412;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 6px 14px -10px rgba(2, 6, 23, 0.6);
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.cta-strip-content {
  text-align: right;
}

.cta-strip-title {
  margin: 0 0 0.5rem;
  font-family: var(--site-font-bold);
  color: #fff;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
}

.cta-strip-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cta-strip-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-strip-button {
    justify-self: left;
  }
}

@media (max-width: 768px) {
  .cta-strip-section {
    padding: 1.5rem 0;
  }

  .cta-strip-title {
    font-size: 1.5rem;
  }

  .cta-strip-text {
    font-size: 0.875rem;
  }
}

/* =========================================================
   Block 5 — Monthly plan
   ========================================================= */

.plan-section {
  background: #f9fafb;
  padding: 3rem 0;
}

.plan-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.plan-head {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-kicker {
  margin: 0 0 0.5rem;
  color: #c2410c;
  font-size: 0.875rem;
  font-weight: 700;
}

.plan-title {
  margin: 0 0 0.75rem;
  font-family: var(--site-font-bold);
  color: #0f172a;
  font-size: 3rem;
  line-height: 1.12;
  font-weight: 800;
}

.plan-lead {
  margin: 0 auto;
  max-width: 62rem;
  color: #6b7280;
  font-size: 1.2rem;
  line-height: 1.5;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  min-height: 11rem;
  padding: 1.2rem;
  text-align: right;
}

.plan-card-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.5rem;
  color: var(--brand-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.plan-card-title {
  margin: 0 0 0.55rem;
  font-family: var(--site-font-bold);
  color: #111827;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.plan-card-text {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .plan-title {
    font-size: 2rem;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .plan-section {
    padding: 2rem 0;
  }

  .plan-title {
    font-size: 2rem;
  }

  .plan-lead {
    font-size: 0.875rem;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Block 5 — Strategy
   ========================================================= */

.strategy-section {
  padding: 3rem 0;
  background-color: #f9fafb;
}

.strategy-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.strategy-header {
  text-align: center;
  margin-bottom: 2rem;
}

.strategy-kicker {
  margin: 0 0 0.5rem;
  color: #c2410c;
  font-size: 0.875rem;
  font-weight: 700;
}

.strategy-title {
  margin: 0 0 0.75rem;
  font-family: var(--site-font-bold);
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.strategy-description {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 55rem;
  margin: 0 auto;
  line-height: 1.5;
}

.strategy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.strategy-grid::after {
  content: "";
  position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%, -50%);
  width: min(var(--container-max), calc(100vw - 48px));
 height: 1px;
 background: linear-gradient(
 90deg,
 rgba(234, 88, 12, 0) 0%,
 rgba(234, 88, 12, 0.55) 20%,
 rgba(234, 88, 12, 0.9) 50%,
 rgba(234, 88, 12, 0.55) 80%,
 rgba(234, 88, 12, 0) 100%
 );
 pointer-events: none;
}

.strategy-card {
 position: relative;
 background: #fff;
 border: 1px solid #e5e7eb;
 border-radius: 1rem;
 min-height: 11rem;
 padding: 4rem 1.2rem 1.2rem;
 text-align: right;
 z-index: 1;
}

.strategy-icon {
 position: absolute;
 top: 1rem;
 left: 1rem;
 color: #d1d5db;
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

.strategy-icon i {
 font-size: 1.3rem;
 color: var(--brand-orange);
}

.strategy-card-title {
 margin: 0 0 0.55rem;
 font-family: var(--site-font-bold);
 font-size: 1.5rem;
 font-weight: 700;
 color: #111827;
 line-height: 1.2;
}

.strategy-card-description {
 color: #6b7280;
 line-height: 1.5;
 font-size: 0.875rem;
 margin: 0;
}

.strategy-step {
 position: absolute;
 top: 1rem;
 right: 1rem;
 width: 2.5rem;
 height: 2.5rem;
 border-radius: 999px;
 background: #fff7ed;
 color: #ea580c;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 font-size: 1.2rem;
 line-height: 1;
 font-family: var(--site-font-bold);
 font-weight: 900;
}

@media (max-width: 1100px) {
 .strategy-title {
 font-size: 2rem;
 }

 .strategy-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .strategy-grid::after {
 display: none;
 }
}

@media (max-width: 768px) {
 .strategy-section {
 padding: 2rem 0;
 }

 .strategy-title {
 font-size: 2rem;
 }

 .strategy-description {
 font-size: 0.875rem;
 }

 .strategy-grid {
 grid-template-columns: 1fr;
 }

 .strategy-card {
 min-height: auto;
 padding: 3rem 0.9rem 0.9rem;
 }
}

/* =========================================================
 Block 5 — Insight report
 ========================================================= */

.insight-report-section {
 background: #fff;
 padding: 3rem 0;
}

.insight-report-container {
 max-width: var(--container-max);
 margin: 0 auto;
 padding: 0 24px;
 display: grid;
 grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
 gap: 3rem;
 align-items: center;
}

.insight-report-visual {
 order: 2;
 display: flex;
 justify-content: center;
}

.insight-report-shell {
 width: min(100%, 36rem);
 border-radius: 1.5rem;
 padding: 1.2rem;
 background: linear-gradient(180deg, #10172b 0%, #0b1020 100%);
 border: 1px solid #1f2a44;
}

.insight-report-top {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 0.875rem;
}

.insight-report-chip {
 background: var(--brand-orange-soft);
 color: var(--brand-orange);
 border-radius: 999px;
 padding: 0.2rem 0.65rem;
 font-size: 0.875rem;
 font-weight: 700;
}

.insight-report-caption {
 color: #d1d5db;
 font-size: 0.875rem;
}

.insight-report-title {
 margin: 0 0 0.875rem;
 font-family: var(--site-font-bold);
 color: #fff;
 font-size: 2rem;
 line-height: 1.2;
 font-weight: 800;
}

.insight-report-metrics {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 0.875rem;
 margin-bottom: 0.875rem;
}

.insight-report-metric {
 background: #141d33;
 border: 1px solid #29344f;
 border-radius: 0.875rem;
 padding: 0.875rem;
 text-align: center;
}

.insight-report-metric-label {
 margin: 0 0 0.2rem;
 color: #9ca3af;
 font-size: 0.875rem;
}

.insight-report-metric-value {
 margin: 0;
 color: #fff;
 font-size: 2rem;
 font-weight: 800;
 line-height: 1.1;
}

.insight-report-chart {
 background: #141d33;
 border: 1px solid #29344f;
 border-radius: 0.875rem;
 padding: 1.2rem 0.875rem 0.875rem;
 direction: ltr;
}

.insight-report-bars {
 height: 8rem;
 display: grid;
 grid-template-columns: repeat(7, minmax(0, 1fr));
 gap: 0.4rem;
 align-items: end;
 margin-bottom: 0.5rem;
}

.insight-report-bar {
 display: block;
 border-radius: 0.5rem 0.5rem 0 0;
}

.insight-report-bar.is-1 { height: 100%; background: linear-gradient(180deg, #fb923c 0%, #f97316 100%); }
.insight-report-bar.is-2 { height: 88%; background: linear-gradient(180deg, #f5872e 0%, #ea6a12 100%); }
.insight-report-bar.is-3 { height: 76%; background: linear-gradient(180deg, #e97a24 0%, #d86111 100%); }
.insight-report-bar.is-4 { height: 66%; background: linear-gradient(180deg, #d86f20 0%, #c45710 100%); }
.insight-report-bar.is-5 { height: 56%; background: linear-gradient(180deg, #c5641e 0%, #af4d0f 100%); }
.insight-report-bar.is-6 { height: 48%; background: linear-gradient(180deg, #af5a1b 0%, #98430d 100%); }
.insight-report-bar.is-7 { height: 38%; background: linear-gradient(180deg, #944f19 0%, #7c380c 100%); }

.insight-report-months {
 display: grid;
 grid-template-columns: repeat(7, minmax(0, 1fr));
 gap: 0.4rem;
 color: #9ca3af;
 font-size: 0.875rem;
 text-align: center;
}

.insight-report-content {
 order: 1;
 text-align: right;
}

.insight-report-kicker {
 margin: 0 0 0.5rem;
 color: #e8541a;
 font-size: 0.875rem;
 font-weight: 700;
}

.insight-report-heading {
 margin: 0 0 0.875rem;
 font-family: var(--site-font-bold);
 color: #0f172a;
 font-size: 3rem;
 line-height: 1.1;
 font-weight: 800;
}

.insight-report-text {
 margin: 0 0 0.875rem;
 color: #4b5563;
 font-size: 1.2rem;
 line-height: 1.5;
}

.insight-report-list {
 margin: 0;
 padding: 0;
 list-style: none;
}

.insight-report-list li {
 position: relative;
 margin-bottom: 0.5rem;
 padding-right: 1.2rem;
 color: #4b5563;
 font-size: 1.2rem;
 line-height: 1.4;
}

.insight-report-list li::before {
  content: "✓";
  position: absolute;
 right: 0;
 top: 0;
 color: #ea580c;
 font-size: 1.2rem;
 font-weight: 700;
}

@media (max-width: 1100px) {
 .insight-report-container {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .insight-report-visual,
 .insight-report-content {
 order: initial;
 }

 .insight-report-heading {
 font-size: 2rem;
 }
}

@media (max-width: 768px) {
 .insight-report-section {
 padding: 2rem 0;
 }

 .insight-report-title {
 font-size: 1.5rem;
 }

 .insight-report-heading {
 font-size: 2rem;
 }

 .insight-report-text,
 .insight-report-list li {
 font-size: 0.875rem;
 }
}

/* =========================================================
 Block 5 — Pricing / work tracks
 ========================================================= */

.testimonials-section {
 padding: 3rem 0;
 background-color: #030712;
 background-image:
 radial-gradient(circle at 12% 18%, rgba(234, 88, 12, 0.22) 0%, rgba(234, 88, 12, 0) 38%),
 radial-gradient(circle at 88% 82%, rgba(234, 88, 12, 0.2) 0%, rgba(234, 88, 12, 0) 40%);
}

.testimonials-container {
 max-width: var(--container-max);
 margin: 0 auto;
 padding: 0 24px;
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
 gap: 2rem;
 align-items: center;
}

.testimonials-pricing {
 order: 2;
 display: flex;
 gap: 0.75rem;
}

.pricing-card {
 flex: 1 1 0;
 min-height: 16rem;
 border-radius: 1rem;
 padding: 1rem 0.875rem;
 border: 1px solid rgba(255, 255, 255, 0.12);
 background: rgba(15, 23, 42, 0.46);
 color: #e5e7eb;
 text-align: right;
 transition: transform 0.3s ease;
}

.pricing-card:hover {
 transform: scale(1.03);
}

.pricing-card--growth {
 background: #fff;
 color: #111827;
 border: 2px solid var(--brand-orange);
}

.pricing-card-tag {
 margin: 0 0 0.5rem;
 color: #f59e0b;
 font-size: 0.875rem;
 font-weight: 700;
}

.pricing-card-tag--featured {
 display: inline-block;
 background: var(--brand-orange);
 color: #fff;
 padding: 0.2rem 0.55rem;
 border-radius: 999px;
}

.pricing-card-title {
 margin: 0 0 0.6rem;
 font-family: var(--site-font-bold);
 font-size: 2rem;
 line-height: 1.1;
 font-weight: 800;
}

.pricing-card-subtitle {
 margin: 0 0 0.8rem;
 font-size: 0.875rem;
 line-height: 1.45;
}

.pricing-card-list {
 margin: 0;
 padding: 0;
 list-style: none;
}

.pricing-card-list li {
 margin-bottom: 0.35rem;
 padding-right: 1rem;
 position: relative;
 font-size: 0.875rem;
 line-height: 1.35;
}

.pricing-card-list li::before {
  content: "✓";
  position: absolute;
 right: 0;
 top: 0;
 color: #10b981;
 font-size: 0.875rem;
}

.testimonials-content {
 order: 1;
 text-align: right;
}

.testimonials-kicker {
 margin: 0 0 0.5rem;
 color: #f97316;
 font-size: 0.875rem;
 font-weight: 700;
}

.testimonials-title {
 margin: 0 0 0.8rem;
 font-family: var(--site-font-bold);
 font-size: 3rem;
 font-weight: 800;
 color: #fff;
 line-height: 1.1;
}

.testimonials-description {
 margin: 0 0 1rem;
 font-size: 1.2rem;
 color: #cbd5e1;
 line-height: 1.5;
}

.testimonials-cta {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 background: #f97316;
 color: #fff;
 text-decoration: none;
 border-radius: 999px;
 padding: 0.6rem 1.2rem;
 font-size: 1rem;
 font-weight: 700;
}

@media (max-width: 1100px) {
 .testimonials-container {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }

 .testimonials-title {
 font-size: 2rem;
 }
}

@media (max-width: 768px) {
 .testimonials-section {
 padding: 2rem 0;
 }

 .testimonials-pricing {
 flex-direction: column;
 }

 .testimonials-title {
 font-size: 2rem;
 }

 .testimonials-description,
 .testimonials-cta {
 font-size: 0.875rem;
 }
}

/* =========================================================
   Block 6 — Customer success
   ========================================================= */

.customer-success-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(249, 115, 22, 0.12), transparent 25%),
    radial-gradient(circle at 8% 90%, rgba(15, 23, 42, 0.08), transparent 28%),
    #f8fafc;
}

.customer-success-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.customer-success-container {
  position: relative;
  z-index: 1;
  max-width: 1550px;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

.customer-success-header {
  max-width: 820px;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.customer-success-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  color: #c2410c;
  background: #fff7ed;
  font-size: 0.88rem;
  font-weight: 800;
}

.customer-success-kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 0.35rem rgba(249, 115, 22, 0.12);
}

.customer-success-title {
  margin: 0;
  font-family: var(--site-font-bold);
  color: #0f172a;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.customer-success-description {
  max-width: 720px;
  margin: 1.25rem auto 0;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.85;
}

.customer-success-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  justify-content: stretch;
}

.customer-success-section .customer-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.customer-success-section .customer-card {
  position: relative;
  flex: none;
  max-width: none;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transform: none;
}

.customer-success-section .customer-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-orange), #fb923c);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.customer-success-section .customer-card:hover {
  transform: translateY(-5px);
  border-color: #fed7aa;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.11);
}

.customer-success-section .customer-card:hover::after {
  opacity: 1;
}

.customer-success-section .customer-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0.65rem;
  border-left: 1px solid #e2e8f0;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
}

.customer-success-section .customer-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 64px;
  max-height: 48px;
  margin: 0;
  object-fit: contain;
  filter: saturate(0.92);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.customer-success-section .customer-card:hover .customer-logo {
  transform: scale(1.045);
  filter: saturate(1);
}

.customer-success-section .customer-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.85rem 0.9rem;
  text-align: right;
  min-width: 0;
}

.customer-success-section .customer-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.customer-success-section .customer-name {
  margin: 0;
  font-family: var(--site-font-bold);
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.customer-success-section .customer-label {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  color: #c2410c;
  background: #fff3e8;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.customer-success-section .customer-keywords-title {
  margin: 0 0 0.35rem;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
}

.customer-success-section .customer-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-success-section .keyword-item {
  margin: 0;
}

.customer-success-section .keyword-item span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.18rem 0.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  color: #334155;
  background: #f8fafc;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
}

.customer-success-section .customer-divider {
  width: 100%;
  height: 1px;
  margin: auto 0 0.65rem;
  background: linear-gradient(to left, #e2e8f0, transparent);
}

.customer-success-section .customer-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}

.customer-success-section .customer-stats .stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.4rem 0.5rem;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #f8fafc;
}

.customer-success-section .customer-stats .stat-item:last-child {
  align-items: center;
}

.customer-success-section .customer-stats .stat-label {
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 600;
}

.customer-success-section .customer-stats .rank-badge {
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 900;
  direction: ltr;
  background: transparent;
  padding: 0;
  line-height: 1.05;
}

@media (max-width: 1100px) {
  .customer-success-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-success-section .customer-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .customer-success-section .customer-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc((100% - 1.15rem) / 2);
    justify-self: center;
  }
}

@media (max-width: 960px) {
  .customer-success-grid {
    grid-template-columns: 1fr;
  }

  .customer-success-section .customer-card:last-child:nth-child(odd),
  .customer-success-section .customer-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 620px) {
  .customer-success-section {
    padding: 3.5rem 0;
  }

  .customer-success-section .customer-card {
    grid-template-columns: 1fr;
    max-width: none;
    flex-basis: auto;
    min-height: 0;
  }

  .customer-success-section .customer-logo-wrap {
    min-height: 100px;
    border-left: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .customer-success-section .customer-card-topline {
    flex-direction: column;
  }

  .customer-success-section .customer-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Block 7 — FAQ
   ========================================================= */

.faq-section {
  padding: 4rem 0;
  background-color: #f9fafb;
  color: #111827;
}

.faq-section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  margin: 0 0 1rem;
  font-family: var(--site-font-bold);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
  color: #111827;
}

.faq-description {
  margin: 0 auto;
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 18px -14px rgba(15, 23, 42, 0.22);
}

.faq-question {
  font-family: var(--site-font);
  width: 100%;
  text-align: right;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.125rem;
  background-color: #fff;
  border: none;
  color: #111827;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f3f4f6;
}

.faq-question i {
  transition: transform 0.35s ease, color 0.25s ease;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.2rem);
  transition:
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.35s ease,
    padding-bottom 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 1.25rem;
  padding-bottom: 0;
}

.faq-answer.open {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.25rem;
}

.faq-answer p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-description {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-answer.open {
    padding: 0 1rem 1rem;
  }
}

/* ======================================== */
/* CONTACT CTA extras (base styles in home.css) */
/* ======================================== */
@keyframes contactCtaMsgSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactCtaBtnSpin {
  to {
    transform: rotate(360deg);
  }
}

.contact-cta-form-wrap input.border-red-500,
.contact-cta-form-wrap textarea.border-red-500 {
  border-color: #ef4444 !important;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.contact-cta-form-wrap input.focus\:ring-red-500:focus,
.contact-cta-form-wrap textarea.focus\:ring-red-500:focus {
  border-color: #ef4444 !important;
}

.contact-cta-form-wrap .error-tooltip {
  position: absolute;
  background: #dd4c4c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  z-index: 49;
  top: -8px;
  left: -20px;
  white-space: nowrap;
  font-family: var(--site-font, inherit);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: contactCtaMsgSlideIn 0.3s ease-out;
}

.contact-cta-form-wrap .error-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-color: #dd4c4c;
  border-right: 0;
}

.contact-cta-form-wrap .captcha-reg {
  position: relative;
}

.contact-cta-form-wrap .captcha-reg .error-tooltip {
  top: -36px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.contact-cta-form-wrap .captcha-reg .error-tooltip::after {
  top: 100%;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #dd4c4c;
  border-left-color: transparent;
  border-right: 6px solid transparent;
}

.contact-cta-captcha {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.75rem 0 1rem;
}
@media (max-width: 402px) {
  .contact-cta-form-wrap {
    width: 100%;
    min-width: 0;
  }

  .contact-cta-captcha {
    width: 100%;
    min-width: 0;
    contain: inline-size;
    overflow: visible;
  }
}
.contact-cta-captcha .g-recaptcha {
  direction: rtl;
}

.contact-cta-form-wrap .website-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-cta-form-message {
  margin: 0 0 0.75rem;
  text-align: center;
}

.contact-cta-form-message .success-msg,
.contact-cta-form-message .error-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
  direction: rtl;
  animation: contactCtaMsgSlideIn 0.45s ease-out;
}

.contact-cta-form-message .inline-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin: 0;
}

.contact-cta-form-message .success-msg {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #6ee7b7;
}

.contact-cta-form-message .error-msg {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;
}

.contact-cta-submit {
  transition: background-color 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.contact-cta-submit.is-loading,
.contact-cta-submit:disabled.is-loading {
  background: #6b7280 !important;
  color: #ffffff !important;
  opacity: 1;
  cursor: wait;
}

.contact-cta-submit .btn-spinner {
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: contactCtaBtnSpin 0.75s linear infinite;
}

.contact-cta-submit:disabled {
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .contact-cta-captcha .g-recaptcha {
    transform: scale(0.92);
    transform-origin: center;
  }
}

@media (max-width: 402px) {
  .contact-cta-captcha {
    height: 64px;
    margin-bottom: 0.75rem;
  }

  .contact-cta-captcha .g-recaptcha {
    width: 304px;
    min-width: 304px;
    flex: 0 0 304px;
    transform: scale(0.82);
    transform-origin: center top;
  }
}

@media (max-width: 350px) {
  .contact-cta-captcha .g-recaptcha {
    transform: scale(0.72);
  }
}
