
/* ---------- Base ---------- */
:root {
  --color-primary: #F82530;
  --color-primary-light: #FFE2E2;
  --color-dark: #1a1a1a;
  --color-text: #333;
  --color-text-muted: #6c757d;
  --color-bg: #fff;
  --font: 'Montserrat', sans-serif;
  --header-h: 80px;
  --radius: 12px;
  --transition: .3s ease;
  --shadow-card: 0 0 10px rgba(0,0,0,.05);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

/* ---------- Shared buttons (header + hero) ---------- */
.btn-header-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  height: 42px;
  padding: 0 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  line-height: 42px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.btn-header-btn:hover,
.btn-header-btn:focus {
  background: #d91e28;
  color: #fff;
  box-shadow: 0 4px 20px rgba(248,37,48,.35);
}



/* ---------- Section shared ---------- */
.section-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: .5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 640px;
  line-height: 1.3;
  margin: 0 auto 2rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
  height: var(--header-h);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header .container { height: 100%; }
.header .navbar {
  height: 100%;
  align-items: center;
}
.navbar-brand { flex-shrink: 0; }
/* Header button outside collapse — right side */
.header .navbar > .btn-header-btn {
  flex-shrink: 0;
  margin-left: auto;
}

/* Desktop nav — 14px bold */
.navbar-nav .nav-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
  padding: .5rem 1rem !important;
  transition: color .2s;
}
.navbar-nav .nav-link:hover {
  color: var(--color-primary);
}

/* Hamburger */
.navbar-toggler {
  border: none !important;
  padding: 8px;
  flex-shrink: 0;
  outline: none !important;
  box-shadow: none !important;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: .3s ease;
  margin: 6px 0;
}
.navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav — collapses at xl (1200px) */
@media (max-width: 1199.98px) {
  .header .navbar-collapse {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
  }
  .header .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .btn-header-btn{
    margin-right:20px;
  }
  .hero-desc{
    font-size: 16px;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: .75rem 1.25rem !important;
  }
  /* Button inside collapse — full width on mobile */
  .navbar-collapse .btn-header-btn {
    margin: .5rem 1.25rem 0;
    width: calc(100% - 2.5rem);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
}
.hero-title {
  line-height: 1.2;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title__first {
  display: block;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 36px);
}
.hero-title__second {
  display: block;
  font-weight: 700;
  font-size: 32px;
}
/* Animated rotating word — opacity only, no position shifts */
.hero-rotating {
  color: var(--color-primary);
  display: inline-block;
  position: relative;
  min-width: 160px;
  vertical-align: baseline;
  text-align: left;
}
/* Invisible in-flow character to establish proper text baseline */
.hero-rotating::after {
  content: '\200B';
  visibility: hidden;
  font-size: inherit;
  line-height: inherit;
}
/* === Active: Option 3 — Scale + fade === */
/*.hero-rotating span {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .45s ease, transform .45s ease;
  white-space: nowrap;
  pointer-events: none;
}
.hero-rotating span.rotating-in {
  opacity: 1;
  transform: scale(1);
}
.hero-rotating span.rotating-out {
  opacity: 0;
  transform: scale(0.92);
}*/

/* === Option 1 — Cross-fade + blur (uncomment to use) ===*/
.hero-rotating span {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  filter: blur(3px);
  transition: opacity .5s ease, filter .5s ease;
  white-space: nowrap;
  pointer-events: none;
}
.hero-rotating span.rotating-in {
  opacity: 1;
  filter: blur(0);
}
.hero-rotating span.rotating-out {
  opacity: 0;
  filter: blur(3px);
}
/*=== end Option 1 === */

/* === Option 2 — Clip reveal left-to-right (uncomment to use) ===
.hero-rotating span {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity .45s ease, clip-path .45s ease;
  white-space: nowrap;
  pointer-events: none;
}
.hero-rotating span.rotating-in {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.hero-rotating span.rotating-out {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
}
=== end Option 2 === */

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
/* Video link — no border, just icon + text */
.btn-video-link {
  background: transparent;
  border: none;
  color: var(--color-dark);
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  padding: 0;
  height: 42px;
  line-height: 42px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color .2s;
}
.btn-video-link:hover {
  color: var(--color-primary);
}
.btn-video-link img {
  flex-shrink: 0;
}
.hero-screenshot {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

@media (max-width: 991.98px) {
  .hero { padding-top: calc(var(--header-h) + 30px); }
  .hero-desc{
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .hero-btns  .btn-header-btn,
  .btn-video-link{
    margin-right: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero-img { margin-top: 2rem; text-align: center; }
  .hero-screenshot { max-height: 360px; object-fit: cover; }
  .hero-title__first { font-size: clamp(1.75rem, 5vw, 36px); }
  .hero-title__second { font-size: clamp(1.5rem, 4.5vw, 32px); }
  .hero-rotating { min-width: 120px; }
  .trust-icons {
    padding: 0px 0 60px;
  }
}

/* ---------- Trust Icons — flex row with gap ---------- */
.trust-icons {
  padding: 40px 0 60px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
}
@media (min-width: 992px) {
  .trust-item { flex: 1 1 calc(25% - 18px); min-width: 200px; }
}
@media (max-width: 575.98px) {
  .trust-row { gap: 16px; }
  .trust-item { flex: 1 1 100%; min-width: 0; }
}
.trust-item img { flex-shrink: 0; }
.trust-item span {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.4;
}

/* ---------- Audience ---------- */
.section-audience {
  padding: 60px 0;
}
.audience-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.audience-card {
  background: #fff;
  border-radius: 0;
  padding: 2rem 1.5rem 40px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  transition: box-shadow .3s ease, z-index 0s;
}
.audience-card--left {
  border-radius: var(--radius) 0 0 var(--radius);
}
.audience-card--right {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.audience-card:hover {
  z-index: 10 !important;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
  border-radius: var(--radius);
}
.audience-card + .audience-card {
  margin-left: -12px;
  z-index: 2;
}
.audience-card + .audience-card + .audience-card {
  z-index: 3;
}
.audience-card img { margin-bottom: 1rem; }
.audience-card h3 {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-dark);
  margin-bottom: 1rem;
  text-align: center;
}
.audience-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.audience-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.audience-card ul li img {
  margin: 0;
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 991.98px) {
  .audience-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .audience-card + .audience-card {
    margin-left: 0;
  }
  .audience-card--left,
  .audience-card--right,
  .audience-card:hover {
    border-radius: var(--radius);
  }
}

/* ---------- Features Slider (Swiper) ---------- */
.section-features {
  padding: 60px 0;
  background: #FBFAFA;
  overflow: hidden;
}
.features-swiper-wrap {
  margin-top: 2.5rem;
}
.swiper{
  overflow: unset;
}
.featuresSwiper .swiper-slide {
  width: 25%;
  height: auto;
}
.feature-tile {
  background: #fff;
  border-radius: 0;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s ease;
  height: 100%;
}
.feature-tile:hover {
  box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.feature-tile img { margin-bottom: 1rem; }
.feature-tile h3 {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-dark);
  margin-bottom: .5rem;
}
.feature-tile p {
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}
/* Swiper pagination */
.featuresSwiper .swiper-pagination {
  position: relative;
  margin-top: 2rem;
  bottom: auto;
}
/* Custom red ring bullets like bullet.svg */
.featuresSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 1;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: relative;
  transition: border-color .2s;
}
.featuresSwiper .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: background .2s;
}
.featuresSwiper .swiper-pagination-bullet-active {
  border-color: var(--color-primary);
}
.featuresSwiper .swiper-pagination-bullet-active::after {
  background: var(--color-primary);
}
.featuresSwiper .swiper-pagination-bullet:hover {
  border-color: var(--color-primary);
}
@media (max-width: 991.98px) {
  .featuresSwiper .swiper-slide { width: 50%; }
}
@media (max-width: 767.98px) {
  .featuresSwiper .swiper-slide { width: 85%; }
  .feature-tile { padding: 1.5rem 1.25rem; }
}

/* ---------- Transformation — white bg ---------- */
.section-transformation {
  padding: 60px 0;
  background: #fff;
}
.transformation-items { margin-top: 1rem; }
.transformation-item p {
  font-size: .92rem;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.transformation-item strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* Stats — no border, no bg */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 0;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
}
.stat-number {
  display: block;
  font-weight: 800;
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: .25rem;
  line-height: 1.1;
}
.stat-desc {
  font-size: 14px;
  display: block;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .stats-row { gap: 1rem; }
  .stat-number { font-size: 36px; }
}

/* ---------- How it works — infographic only ---------- */
.section-how {
  padding: 60px 0;
}
.how-infographic {
  margin-top: 2rem;
}
.how-infographic img {
  width: 100%;
  height: auto;
}

/* ---------- Formats ---------- */
.section-formats {
  padding: 60px 0;
}
.formats-row {
  display: flex;
  gap: 0;
  margin-top: 4rem;
}
.format-card {
  background: transparent;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 0;
  padding: 1.75rem 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,.05);
}
.format-card--left {
  border-radius: 10px 0 0 10px;
  margin-right: -1px;
  z-index: 1;
}
.format-card--right {
  border-radius: 0 10px 10px 0;
  margin-left: -1px;
  z-index: 1;
}
.format-card--center {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
  margin-top: -30px;
  margin-bottom: -30px;
  padding-top: calc(1.75rem + 30px);
  padding-bottom: calc(1.75rem + 30px);
  z-index: 2;
  border-color: rgba(0,0,0,.05);
}
.format-card img { margin-bottom: .75rem; flex-shrink: 0; }
.format-card h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: .5rem;
}
.format-card--center h3 {
  color: var(--color-primary);
}

/* Tags — 24px height, 12px 700, auto width */
.format-tag {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
  border-radius: 4px;
  margin-bottom: 0;
}
.format-card--tag-orange .format-tag {
  color: #E65100;
  background: #FFF3E0;
}
.format-card--tag-green .format-tag {
  color: #2E7D32;
  background: #E8F5E9;
}
.format-card--tag-teal .format-tag {
  color: #00695C;
  background: #E0F7FA;
}

/* Divider between tag and list — full card width */
.format-divider {
  align-self: stretch;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  height: 0;
  border-top: 1px solid rgba(0,0,0,.07);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.format-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  text-align: left;
  width: 100%;
  flex: 1;
}
.format-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: .35rem;
}
.format-card ul li img {
  margin: 2px 0 0;
  flex-shrink: 0;
}

/* Outline button for cards 1 & 3 — 1px border, 42px height */
.btn-format-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  height: 42px;
  padding: 0 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  line-height: 42px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: var(--transition);
  margin-top: 1.25rem;
}
.btn-format-outline:hover,
.btn-format-outline:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(248,37,48,.35);
}

/* Filled red button for center card — 42px height */
.btn-format-filled {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  height: 42px;
  padding: 0 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  line-height: 42px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: var(--transition);
  margin-top: 1.25rem;
}
.btn-format-filled:hover,
.btn-format-filled:focus {
  background: #d91e28;
  border-color: #d91e28;
  color: #fff;
  box-shadow: 0 4px 20px rgba(248,37,48,.35);
}

@media (max-width: 991.98px) {
  .formats-row {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .format-card--left,
  .format-card--right,
  .format-card--center {
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.75rem 1.5rem;
  }
}

/* ---------- CTA ---------- */
.section-cta {
  padding: 80px 0;
}
.cta-block {
  width: 100%;
  background: #FBFAFA;
  border-radius: 20px;
  padding: 3rem 2.5rem 3rem;
}
.cta-block h2 {
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--color-dark);
  margin-bottom: .75rem;
}
.cta-highlight {
  color: var(--color-primary);
}
.cta-block > p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Fused input + button */
.cta-input-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
.cta-input-group .form-control {
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 6px 0 0 6px;
  height: 50px;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 14px;
  box-shadow: none !important;
 outline: none !important;
 background: #fff;
}
.cta-input-group .form-control:focus {
  border-color: #e0e0e0;
 outline: none !important;
  box-shadow: none !important;
}
.btn-cta-submit {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  height: 50px;
  padding: 0 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
 flex-shrink: 0;
 transition: background .2s;
}
.btn-cta-submit:hover:not(:disabled) {
  background: #d91e28;
  color: #fff;
}
.btn-cta-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Checkbox row */
.cta-check-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}
.cta-check-row .form-check-input {
 margin: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.cta-check-row .form-check-label {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}
.cta-check-row .form-check-label a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-check-row .form-check-label a:hover {
  color: #d91e28;
}

/* Red focus for checkbox */
.form-check-input:focus {
  box-shadow: 0 0 0 .15rem rgba(248,37,48,.3) !important;
  border-color: var(--color-primary) !important;
}
.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (max-width: 575.98px) {
  .cta-input-group { flex-direction: column; }
  .cta-input-group .form-control {
    border-radius: 6px;
    border-right: 1px solid #e0e0e0;
  }
  .btn-cta-submit {
    border-radius: 6px;
    margin-top: 8px;
  }
}

/* ---------- Footer — single row ---------- */
.footer {
  padding: 0 0 50px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img {
  filter: grayscale(100%);
  opacity: .7;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 14px;
  color: var(--color-dark);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--color-primary); }
.footer-copy span {
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
    gap: .75rem;
  }
  .footer-links { justify-content: center; }
}
@media (max-width: 575.98px) {
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1rem;
  }
  .footer-copy span {
    white-space: normal;
  }
}

/* ---------- Modal ---------- */
.modal-content {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.modal-header {
  border-bottom: 1px solid #eee;
  padding: 1.25rem 1.5rem;
}
.modal-title {
  font-weight: 700;
  font-size: 1.15rem;
}
.modal-body { padding: 1.5rem; }

/* Video modal — dark bg, no border-radius on video */
.video-modal-content {
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-modal-header {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.25rem;
}
.video-modal-header .modal-title {
  color: #fff;
  font-size: 1rem;
}
.video-modal-header .btn-close-white {
  opacity: .7;
}
.video-modal-header .btn-close-white:hover {
  opacity: 1;
}
#heroVideo {
  display: block;
  border-radius: 0;
  max-height: 80vh;
  background: #000;
}

/* ---------- Email validation states ---------- */
.cta-input-group .form-control.is-valid {
  border-color: #28a745 !important;
}
.cta-input-group .form-control.is-invalid {
  border-color: var(--color-primary) !important;
}
/* Hide Bootstrap validation icons */
.cta-input-group .form-control.is-valid:focus,
.cta-input-group .form-control.is-invalid:focus {
  box-shadow: none !important;
}

.privacy-text p {
  font-size: .88rem;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.privacy-text p strong {
  font-weight: 700;
  color: var(--color-dark);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.animate-on-scroll:nth-child(3) { transition-delay: .2s; }
.animate-on-scroll:nth-child(4) { transition-delay: .3s; }
.animate-on-scroll:nth-child(5) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .hero-rotating span { opacity: 1 !important; position: static !important; }
}
.hero-title__first{
  margin-bottom: 1rem;
}
.btn-close:focus{
  box-shadow: none!important;
}
.infographic--mobile{
  display: none;
}
@media (max-width: 1199.98px) {
  .btn-header-btn {
    margin-right: 20px;
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.3;
  }
  .format-tag{
    font-size: 10px;
  }
}
@media (max-width: 991.98px) {
  .trust-icons {
    padding: 0;
  }
  .audience-card {
    padding: 2rem 1.5rem 2rem;
  }
  .infographic1{
    width: 100%!important;
  }
  .section-transformation {
    padding: 60px 0 0 0;
  }
  .section-how,
  .section-formats{
    padding: 60px 0 0 0;
  }
  .format-tag{
    font-size:11px;
  }
  .section-cta {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .trust-item img {
    flex-shrink: 0;
    height: 46px;
  }
  .infographic--desktop{
    display: none;
  }
  .infographic--mobile{
    display: block;
  }
  .footer-logo img {
    height: 30px;
  }
  .footer-links a,
  .footer-copy span{
    font-size: 13px;
  }
  .cta-block h2 {
    font-weight: 800;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
  }
  .cta-block p{
    line-height: 1.3;
    font-size: 15px;
  }
  .cta-block {
    padding: 3rem 2rem 3rem;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.3;
  }
  .hero-btns{
    gap:20px;
  }
}
@media (max-width: 575.98px) {
  .btn-cta-submit,
  .cta-input-group .form-control{
    height: 42px;
  }
}

.purchase-modal-body { padding: 1.5rem; }

.pf-group { margin-bottom: 1rem; }
.pf-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: .4rem;
}
.pf-input {
  width: 100%;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--color-text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.pf-input::placeholder { color: #aaa; }
.pf-input:focus { border-color: var(--color-primary); box-shadow: none; }
.pf-input.is-valid { border-color: #28a745 !important; }
.pf-input.is-invalid { border-color: var(--color-primary) !important; }
.pf-input.is-valid:focus,
.pf-input.is-invalid:focus { box-shadow: none !important; }

.pf-social-row {
  display: flex;
  gap: .75rem;
}
.pf-social-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all .2s;
  user-select: none;
}
.pf-social-item:hover { border-color: #bbb; }
.pf-social-item.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.pf-social-item svg { flex-shrink: 0; }
#pfAgreeCheck{
  margin-top:0!important;
}
.pf-check-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 1rem 0 1.25rem;
}
.pf-check-label {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}
.pf-check-label a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pf-submit {
  width: 100%;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.pf-submit:hover:not(:disabled) { background: #d91e28; }
.pf-submit:disabled { background: #ccc; cursor: not-allowed; }

.pf-success {
  text-align: center;
  padding: 2rem 0;
}
.pf-success p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.6;
}