:root {
  --bg: #F7F9FC;
  --bg-card: #FFFFFF;
  --bg-dark: #1E0C0F;
  --bg-dark-2: #291315;
  --text-primary: #1E0C0F;
  --text-secondary: #663D43;
  --text-muted: #AF7982;
  --accent: #ED5971;
  --accent-hover: #E83A53;
  --accent-light: #EEF1FE;
  --accent-2: #C32DD4;
  --accent-2-light: #E6FBF8;
  --border: rgba(15, 23, 64, 0.08);
  --border-strong: rgba(15, 23, 64, 0.14);
  --shadow-xs: 0 1px 4px rgba(15, 23, 64, 0.05);
  --shadow-sm: 0 2px 12px rgba(15, 23, 64, 0.07);
  --shadow-md: 0 8px 32px rgba(15, 23, 64, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 23, 64, 0.13);
  --shadow-xl: 0 32px 80px rgba(15, 23, 64, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --header-h: 72px;
  --container-w: 1200px;
  --section-py: 96px;
  --font-display: sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.28s var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

img,
svg {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition)
}

ul,
ol {
  list-style: none
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none
}

input,
textarea,
select {
  font-family: var(--font-body)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--text-primary)
}

p {
  color: var(--text-secondary)
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition)
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.08)
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35)
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.45);
  transform: translateY(-1px)
}

.btn--primary:active {
  transform: translateY(0)
}

.btn--full {
  width: 100%;
  justify-content: center
}

.btn--large {
  padding: 18px 40px;
  font-size: 17px
}

.btn__icon {
  transition: transform var(--transition)
}

.btn:hover .btn__icon {
  transform: translateX(4px)
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px
}

.accent {
  color: var(--accent)
}

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out)
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.js-reveal--delay-1 {
  transition-delay: 0.12s
}

.js-reveal--delay-2 {
  transition-delay: 0.24s
}

.js-reveal--delay-3 {
  transition-delay: 0.36s
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px
}

.preloader__logo img {
  width: 140px;
  height: 55px
}

.preloader__spinner {
  position: relative;
  width: 40px;
  height: 40px
}

.preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--accent-light);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 249, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition)
}

.header.is-scrolled {
  background: rgba(247, 249, 252, 0.97);
  border-color: var(--border);
  box-shadow: var(--shadow-sm)
}

.header__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center
}

.header__nav {
  flex: 1
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 8px
}

.header__link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition)
}

.header__link:hover,
.header__link--active {
  color: var(--text-primary);
  background: var(--accent-light)
}

.header__link--active {
  color: var(--accent);
  font-weight: 600
}

.header__cta {
  margin-left: auto;
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 14px
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition)
}

.header__burger:hover {
  background: var(--accent-light)
}

.header__burger-line {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition)
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.header__mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 20px 32px 28px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition)
}

.header__mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible
}

.header__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.header__mobile-link {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition)
}

.header__mobile-link:hover {
  background: var(--accent-light);
  color: var(--accent)
}

.header__mobile-link--cta {
  margin-top: 12px;
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius-full)
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #F9CBD5 0%, transparent 70%);
  top: -200px;
  right: -100px
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #F3C2F8 0%, transparent 70%);
  bottom: -100px;
  left: 5%
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(79, 110, 247, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(79, 110, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px
}

.hero__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 80px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 16px 7px 10px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs)
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px var(--accent-2-light);
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px var(--accent-2-light)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.15)
  }
}

.hero__badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary)
}

.hero__title_1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary)
}

.hero__title-accent {
  color: var(--accent);
  display: inline-block
}

.hero__subtitle_2 {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px
}

.hero__stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hero__stat-value_3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em
}

.hero__stat-label_4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em
}

.hero__disclaimer_5 {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(255, 200, 50, 0.08);
  border: 1px solid rgba(255, 200, 50, 0.2);
  border-radius: var(--radius-sm);
  margin-top: 8px
}

.hero__form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.hero__form-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative
}

.hero__form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 0 0 3px 3px
}

.hero__form-header {
  margin-bottom: 28px
}

.hero__form-title_6 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px
}

.hero__form-desc_7 {
  font-size: 14px;
  color: var(--text-muted)
}

.hero__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.hero__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px
}

.hero__field--half {
  margin-bottom: 0
}

.hero__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em
}

.hero__input {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg);
  transition: all var(--transition);
  outline: none
}

.hero__input::placeholder {
  color: var(--text-muted)
}

.hero__input:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.1)
}

.hero__input.is-error {
  border-color: #48EB4C;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1)
}

.hero__error {
  font-size: 12px;
  color: #48EB4C;
  min-height: 16px;
  display: block
}

.hero__submit {
  height: 52px;
  font-size: 16px;
  margin-top: 4px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35)
}

.hero__submit:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.45);
  transform: translateY(-1px)
}

.hero__form-legal {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6
}

.hero__form-legal a {
  color: var(--accent);
  text-decoration: underline
}

.hero__form-success {
  text-align: center;
  padding: 20px 0
}

.hero__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}

.hero__success-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px
}

.hero__success-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6
}

.hero__trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted)
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollBounce 2s ease-in-out infinite
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: scaleY(1)
  }

  50% {
    transform: scaleY(0.7)
  }
}

.hero__scroll-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted)
}

.brands {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden
}

.brands__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px
}

.brands__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0
}

.brands__track {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent)
}

.brands__logos {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 22s linear infinite
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.brands__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.7
}

.how {
  padding: var(--section-py) 0;
  background: var(--bg)
}

.how__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px
}

.how__header {
  max-width: 660px;
  margin: 0 auto 72px;
  text-align: center
}

.how__title_1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px
}

.how__subtitle_2 {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0
}

.how__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  position: relative;
  padding-bottom: 60px
}

.how__step:last-child {
  padding-bottom: 0
}

.how__step-connector {
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--border-strong), transparent)
}

.how__step-number_1 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 6px rgba(79, 110, 247, 0.06);
  z-index: 1
}

.how__step-body {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition)
}

.how__step-body:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px)
}

.how__step--alt .how__step-body {
  background: var(--bg-card)
}

.how__step-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px
}

.how__step-title_2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.015em
}

.how__step-text_3 {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary)
}

.features {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg) 0%, #EFF2FC 100%)
}

.features__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px
}

.features__header {
  max-width: 660px;
  margin: 0 auto 64px;
  text-align: center
}

.features__title_1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px
}

.features__subtitle_2 {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  cursor: default
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(79, 110, 247, 0.2)
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px
}

.feature-card__title_1 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em
}

.feature-card__text_2 {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary)
}

.testimonials {
  padding: var(--section-py) 0;
  background: #EFF2FC
}

.testimonials__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px
}

.testimonials__header {
  max-width: 660px;
  margin: 0 auto 64px;
  text-align: center
}

.testimonials__title_1 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px
}

.testimonials__subtitle_2 {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 12px 16px;
  background: rgba(255, 200, 50, 0.08);
  border: 1px solid rgba(255, 200, 50, 0.2);
  border-radius: var(--radius-sm)
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.testimonial {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all var(--transition)
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.testimonial__stars {
  font-size: 16px;
  color: #1AE69F;
  letter-spacing: 2px
}

.testimonial__quote_1 {
  flex: 1
}

.testimonial__quote_1 p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic
}

.testimonial__author_2 {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border)
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.testimonial__meta_3 {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary)
}

.testimonial__location {
  font-size: 12px;
  color: var(--text-muted)
}

.testimonial__earnings {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-2);
  margin-top: 2px
}

.insights {
  padding: var(--section-py) 0;
  background: var(--bg)
}

.insights__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px
}

.insights__header {
  max-width: 800px;
  margin: 0 auto 56px
}

.insights__title_1 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0
}

.insights__body {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border)
}

.insights__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px
}

.insights__body p:last-child {
  margin-bottom: 0
}

.insights__subheading_2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  letter-spacing: -0.015em
}

.faq {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg) 0%, #EFF2FC 100%)
}

.faq__container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px
}

.faq__header {
  text-align: center;
  margin-bottom: 56px
}

.faq__title_1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px
}

.faq__subtitle_2 {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7
}

.faq__subtitle_2 a {
  color: var(--accent);
  font-weight: 500
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq__item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition)
}

.faq__item:hover {
  box-shadow: var(--shadow-sm)
}

.faq__item.is-open {
  border-color: rgba(79, 110, 247, 0.25);
  box-shadow: var(--shadow-md)
}

.faq__question_1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition)
}

.faq__question_1:hover {
  color: var(--accent)
}

.faq__item.is-open .faq__question_1 {
  color: var(--accent)
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  position: relative;
  transition: background var(--transition), transform var(--transition)
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: all var(--transition)
}

.faq__icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.faq__icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.faq__item.is-open .faq__icon {
  background: var(--accent);
  transform: rotate(45deg)
}

.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after {
  background: #fff
}

.faq__answer_2 {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.35s var(--ease-out)
}

.faq__item.is-open .faq__answer_2 {
  max-height: 500px;
  padding: 0 28px 24px
}

.faq__answer_2 p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary)
}

.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #7E1A21 0%, #932832 50%, #600D1E 100%);
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(45, 212, 191, 0.18) 0%, transparent 60%)
}

.cta-band__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.cta-band__content {
  text-align: center
}

.cta-band__title_1 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 16px
}

.cta-band__text_2 {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25)
}

.cta-band .btn--primary:hover {
  background: #F0F4FF;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3)
}

.footer {
  background: var(--bg-dark);
  padding-top: 72px
}

.footer__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px
}

.footer__main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer__tagline {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition)
}

.footer__social-link:hover {
  background: var(--accent);
  color: #fff
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.footer__nav-heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer__nav-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition)
}

.footer__nav-link:hover {
  color: #fff
}

.footer__bottom {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3)
}

.footer__risk {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.7;
  max-width: 900px
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.4);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(12px) scale(0.85)
}

.scroll-top:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.scroll-top:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.55);
  transform: translateY(-2px) scale(1)
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 200;
  max-width: 560px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s var(--ease-out)
}

.cookie-banner[hidden] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px)
}

.cookie-banner:not([hidden]) {
  opacity: 1;
  transform: translateY(0)
}

.cookie-banner__inner {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.cookie-banner__text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  flex: 1;
  min-width: 200px
}

.cookie-banner__text a {
  color: #F2878F;
  text-decoration: underline
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0
}

.cookie-banner__btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  cursor: pointer
}

.cookie-banner__btn--primary {
  background: var(--accent);
  color: #fff
}

.cookie-banner__btn--primary:hover {
  background: var(--accent-hover)
}

.cookie-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12)
}

.cookie-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff
}

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: linear-gradient(180deg, #EFF2FC 0%, var(--bg) 100%);
  text-align: center
}

.page-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px
}

.page-hero__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px
}

.page-hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7
}

.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 32px
}

.prose h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-top: 56px;
  margin-bottom: 16px
}

.prose h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px
}

.prose p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px
}

.prose ul,
.prose ol {
  margin-bottom: 20px;
  padding-left: 24px
}

.prose ul {
  list-style: disc
}

.prose ol {
  list-style: decimal
}

.prose li {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px
}

.prose a {
  color: var(--accent);
  text-decoration: underline
}

.prose strong {
  font-weight: 600;
  color: var(--text-primary)
}

.about-values {
  padding: 80px 0;
  background: var(--bg)
}

.about-values__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs)
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-light);
  -webkit-text-stroke: 2px var(--accent);
  margin-bottom: 16px
}

.value-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px
}

.value-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary)
}

.contact-section {
  padding: 80px 0
}

.contact-section__container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
  gap: 60px;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px
}

.contact-info__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px
}

.contact-info__value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md)
}

.contact-form__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary)
}

.contact-input {
  height: 48px;
  padding: 0 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg);
  transition: all var(--transition);
  outline: none
}

.contact-input:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.1)
}

.contact-textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
  height: auto
}

.contact-submit {
  width: 100%;
  height: 52px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.35);
  transition: all var(--transition)
}

.contact-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px)
}

@media(max-width:1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .hero__content {
    text-align: center
  }

  .hero__subtitle_2,
  .hero__badge {
    margin-left: auto;
    margin-right: auto
  }

  .hero__stats {
    justify-content: center
  }

  .hero__disclaimer_5 {
    text-align: left
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-values__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr)
  }

  .insights__body {
    padding: 40px 48px
  }
}

@media(max-width:768px) {
  :root {
    --section-py: 64px;
    --header-h: 64px
  }

  .container {
    padding: 0 20px
  }

  .header__container {
    padding: 0 20px
  }

  .header__nav,
  .header__cta {
    display: none
  }

  .header__burger {
    display: flex
  }

  .header__mobile {
    display: block
  }

  .hero__container {
    padding: 60px 20px 60px
  }

  .hero__form-card {
    padding: 28px 24px
  }

  .hero__form-row {
    grid-template-columns: 1fr
  }

  .how__step {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .how__step-number_1 {
    width: 44px;
    height: 44px;
    font-size: 11px
  }

  .how__step-connector {
    display: none
  }

  .how__step-body {
    padding: 24px 24px
  }

  .features__grid {
    grid-template-columns: 1fr
  }

  .testimonials__grid {
    grid-template-columns: 1fr
  }

  .insights__body {
    padding: 32px 28px
  }

  .insights__container {
    padding: 0 20px
  }

  .faq__container {
    padding: 0 20px
  }

  .faq__question_1 {
    padding: 18px 20px;
    font-size: 15px
  }

  .faq__item.is-open .faq__answer_2 {
    padding: 0 20px 20px
  }

  .footer__container {
    padding: 0 20px
  }

  .footer__main {
    gap: 36px
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr)
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px
  }

  .cookie-banner__inner {
    flex-direction: column;
    padding: 20px
  }

  .about-values__grid {
    grid-template-columns: 1fr
  }

  .how__container {
    padding: 0 20px
  }

  .features__container {
    padding: 0 20px
  }

  .testimonials__container {
    padding: 0 20px
  }

  .brands__container {
    flex-direction: column;
    gap: 16px
  }

  .brands__label {
    text-align: center
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center
  }

  .prose {
    padding: 48px 20px
  }

  .contact-section__container {
    padding: 0 20px
  }

  .contact-form {
    padding: 32px 24px
  }
}

@media(max-width:480px) {
  .hero__title_1 {
    font-size: 32px
  }

  .hero__stats {
    gap: 16px
  }

  .cookie-banner__actions {
    width: 100%
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr
  }
}

iframe {
  width: 100%;
  max-height: 20rem;
}



@media (min-width: 768px) {

  .contact-form,
  .page-hero-info {
    width: 50%;
  }

  .page-hero-flex {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .page-hero__subtitle{
    max-width: 100%;
    margin: 0;
  }
}

.contact-form{
  margin: 1rem 0 0;
  text-align: left;
}
/* Target the table inside the insights section */
.insights__body table {
  width: 100%;
  border-collapse: collapse; /* Merges double borders into a single clean line */
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Style the table cells */
.insights__body td, 
.insights__body th {
  border: 1px solid #DDDDDD; /* Adds the actual border */
  padding: 12px;
  text-align: left;
}

/* Optional: Add a subtle zebra-striping effect to rows for better readability */
.insights__body tr:nth-child(even) {
  background-color: #F9F9F9;
}
.header__logo img {
  width: auto;           /* Ширина будет автоматически подстраиваться под высоту */
  height: 54px;          /* Задайте желаемую высоту (вместо 30px из HTML) */
  max-height: 100%;      /* Защита от вылезания за границы контейнера */
  object-fit: contain;   /* Сохраняет пропорции без искажений */
}
.footer__logo img {
  width: auto;         /* Ширина подстроится автоматически */
  height: 35px;        /* Задайте нужную высоту (можно сделать такой же, как в шапке) */
  max-width: 100%;     /* На всякий случай, чтобы не вылезал за края на мобильных */
  object-fit: contain;
}
#scrollTopBtn {
    bottom: 80px !important; 
    z-index: 99; /* На всякий случай, чтобы кнопка точно была поверх других элементов */
}
/* Стили для мобильных устройств (ширина экрана 768px и меньше) */
@media (max-width: 768px) {
  /* Перестраиваем контейнер так, чтобы контакты были СВЕРХУ формы (для первого блока) */
  .page-hero-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Задаем блокам контактов (обоим вариантам) полную ширину и центрируем */
  .page-hero-info,
  .contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
  }

  /* Центрируем обертку для вводного текста (заголовок и абзац) в новом блоке */
  .contact-info > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Выравниваем каждый отдельный пункт контактов */
  .contact-info__item {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Принудительно центрируем весь текст, чтобы перебить встроенные стили */
  .contact-info__label,
  .contact-info__value,
  .contact-info p,
  .contact-info h2,
  .section-label {
    text-align: center !important;
  }

  /* Небольшой отступ между названием и самим значением */
  .contact-info__label {
    margin-bottom: 5px;
  }
}
/* DiTuRp */
