:root {
  --white: #ffffff;
  --gray: #f7f7f7;
  --light-blue: #1E88E5;
  --border: #E6ECEF;
  --btn-green: #23c55e;
  --text-muted: #444;
  --color-black: #000000;
}


/* =====================
   RESET & BASE
   ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--white);
  overflow-x: hidden;
}


a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: inherit;
}


a:focus {
  outline: none;
}


a:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 3px;
  border-radius: 3px;
}


p {
  color: var(--text-muted);
}


/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}


section {
  padding: 10px 0;
}


h2 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin: 30px 0;
  line-height: 40px;
  letter-spacing: 1px;
  color: var(--text-muted);
}


h3 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 35px;
  color: var(--text-muted);
}


h1 span {
  color: var(--light-blue);
}


h2 span {
  color: var(--btn-green);
}


/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  padding: 16px 0 0;
  font-size: 13px;
  line-height: 1.4;
}


.breadcrumb a,
.breadcrumb-current-page {
  white-space: nowrap;
}


.breadcrumb-arrow {
  color: #bbb;
  font-size: 11px;
  flex-shrink: 0;
}


.breadcrumb a {
  color: #888;
  text-decoration: none;
}


.breadcrumb-arrow {
  color: #888;
  margin: 0;
}


.breadcrumb-current-page {
  color: #444;
  margin: 0;
}


/* =====================
   HEADER & NAV
   ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gray);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  z-index: 1000;
}


.nav-desktop {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 19px;
}


.nav-desktop a {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}


.nav-desktop a:not(.btn-free) {
  padding: 10px 15px;
}


.nav-desktop a:hover {
  color: #60a5fa;
}


.nav-active {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: #1f87e5 !important;
  font-weight: 600 !important;
}


/* Dropdown */
.dropdown {
  position: relative;
}


.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}


.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 22px;
  background: transparent;
}


.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 300px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  margin-top: 8px;
  overflow: hidden;
  padding: 8px 0;
  transform: translateY(8px);
  transition: all 0.2s ease;
  background-color: white;
}


.dropdown:hover .dropdown-content {
  display: block;
}


.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  text-decoration: none;
  transition: background 0.15s;
}


.dropdown-item:hover {
  background: #f1f5f9;
}


.menu-logo {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}


.mobile-item .menu-logo {
  margin-right: 10px;
}


/* Header CTA button */
.nav-desktop .btn-free,
.btn-free {
  display: inline-block;
  background: var(--btn-green);
  color: white !important;
  padding: 7px 18px !important;
  /* !important чтобы перебить .nav-desktop a */
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  align-self: center;
  transition: background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 8px rgba(35, 197, 94, 0.25);
}


.nav-desktop .btn-free:hover,
.btn-free:hover {
  background: #1fad54 !important;
  box-shadow: 0 4px 14px rgba(35, 197, 94, 0.4);
}


/* Burger / mobile menu */
.burger {
  display: none;
  background: none;
  border: none;
  color: #3b82f6;
  font-size: 2rem;
  cursor: pointer;
}


.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  padding: 80px 10% 40px;
  z-index: 999;
  overflow-y: auto;
  background-color: white;
}


.mobile-menu .btn-free {
  background: var(--btn-green);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  display: inline-block;
  align-self: center;
  transition: background 0.18s ease;
}


.mobile-menu .btn-free:hover {
  background: #1fad54 !important;
}


.mobile-menu.active {
  display: flex;
}


.mobile-item {
  padding: 16px 0;
  font-size: 1.25rem;
  color: #000000;
  text-decoration: none;
  display: flex;
}


.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}


.mobile-arrow {
  font-size: 1.4rem;
  transition: transform 0.25s;
}


.mobile-dropdown-toggle.active .mobile-arrow {
  transform: rotate(90deg);
}


.mobile-submenu {
  display: none;
  padding-left: 20px;
}


.mobile-submenu.active {
  display: block;
}


.mobile-submenu .mobile-item {
  font-size: 18px;
  padding: 2px 0;
}


/* =====================
   FOOTER
   ===================== */
footer {
  background-color: #f8f7f7;
  color: #444;
  padding: 40px 20px 20px;
}


footer p {
  color: #666;
}


.footer-col-title {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
  padding-bottom: 14px;
  margin: 0;
}


.footer-col-list a,
.popular-audits a,
.quick-links a {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  padding: 4px 0;
  transition: color 0.2s;
}


.footer-col-list a:hover,
.popular-audits a:hover,
.quick-links a:hover {
  color: var(--light-blue);
}


.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


.footer-col,
.popular-audits,
.quick-links,
.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  min-width: 180px;
  padding: 0 0 25px 0;
}


.footer-logo p {
  padding: 10px 0 0 0;
  font-size: 16px;
  color: #444;
}


.footer-col-list {
  display: none;
  flex-direction: column;
}


.footer-arrow {
  display: none;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: #999;
}


.footer-bottom-text-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}


.footer-bottom-text-mob {
  display: none;
}


.footer-linkedin {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}


.footer-linkedin img {
  display: block;
}


.footer-linkedin:hover {
  opacity: 0.7;
}


/* =====================
   HERO
   ===================== */
.full-hero {
  background: linear-gradient(160deg, var(--gray) 55%, var(--white) 55%);
  position: static;
  overflow: visible;
}


.hero .container {
  display: flex;
  flex: 1 1 50%;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 200px;
}


.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  align-self: center;
}


.hero h1 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin: 50px 0 15px 0;
  line-height: 55px;
  letter-spacing: .18px;
  color: var(--text-muted);
}


.hero h1.h1--inner {
  margin-top: 10px;
}


.hero-description {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .4px;
  line-height: 35px;
}


/* Hero form */
.form-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto;
  width: 100%;
  max-width: 540px;
}


.email-input {
  flex: 1;
  padding: 13px 18px;
  font-size: 16px;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: border-color 0.18s ease;
}


.email-input:focus {
  border-color: var(--light-blue);
}


.try-btn {
  padding: 13px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--btn-green);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 8px rgba(35, 197, 94, 0.3);
}


.try-btn:hover {
  background: #1fad54;
  box-shadow: 0 4px 12px rgba(35, 197, 94, 0.4);
}


.hero-items {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 6px 20px;
}


.hero-items li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}


.hero-items li::before {
  content: "✓";
  color: var(--btn-green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  padding-right: 5px;
}


/* Hero image */
.hero-image {
  flex: 1 1 50%;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
}


.hero-image-mob {
  display: none;
}


.hero-image p {
  font-size: 16px;
  padding: 0;
  margin: 0;
}


.hero-image img {
  max-width: 65%;
  height: auto;
  padding-top: 10px;
}


/* Floating elements */
.floating-badge,
.floating-chart,
.floating-circle,
.floating-square {
  position: absolute;
  will-change: transform;
}


.floating-badge {
  top: 32%;
  left: 5%;
  transform: rotate(-4deg);
  display: flex;
  flex-direction: row;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 15px 7px 0;
  z-index: 10;
  border: 1px solid #d9e8f5;
}


.floating-circle {
  top: 12%;
  left: 75%;
  animation: gentle-sway 2s ease-in-out infinite alternate;
  animation-delay: 2s;
  background-color: #d1e2fb;
  padding: 38px;
  border-radius: 60%;
}


.floating-square {
  top: 25%;
  left: 7%;
  animation: gentle-sway 4s ease-in-out infinite alternate;
  animation-delay: 1s;
  background-color: #70f19f;
  padding: 45px;
  border-radius: 12%;
}


.floating-chart {
  bottom: -2%;
  right: 20%;
  transform: rotate(8deg);
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #c8f2d7;
}


@keyframes gentle-sway {
  0% {
    transform: translate(0, 0) rotate(-10deg);
  }


  100% {
    transform: translate(8px, -6px) rotate(3deg);
  }
}


/* Sample links */
.sample-link,
.sample-link-mob {
  margin: 0 20px;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  border-radius: 3px;
  display: inline-block;
  background-image: linear-gradient(var(--light-blue), var(--light-blue));
  background-position: left bottom;
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}


.sample-link-text {
  color: var(--light-blue);
}


.sample-link:hover,
.sample-link-mob:hover {
  text-decoration: none;
  background-size: 100% 1.5px;
}


.sample-link:focus-visible,
.sample-link-mob:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 4px;
  border-radius: 3px;
}


.sample-link-mob {
  display: inline-block !important;
  margin: 12px 0 0 0;
}


/* =====================
   PARTNERS
   ===================== */
.partners-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  align-items: center;
  margin: 20px auto 0;
  padding-top: 20px;
}


.h2partners {
  margin: 10px auto;
}


.partner {
  flex: 0 0 auto;
  text-align: center;
}


.partner img {
  max-height: 35px;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 10px 0;
  filter: grayscale(100%) opacity(80%);
  transition: filter 0.3s ease;
}


.partner img:hover {
  filter: grayscale(0%) opacity(100%);
}


.mob {
  display: none;
}


/* =====================
   BENEFITS
   ===================== */
.benefits {
  padding-top: 10px;
}


.benefit-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px auto;
}


.benefit {
  flex: 1;
  border: 1px solid #ecedf0;
  border-radius: 18px;
  padding: 30px;
  /* hover убран - карточка не кликабельна */
}


.benefit p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}


.benefit h3 {
  text-align: left;
  margin: 20px 0;
}


/* =====================
   PAIN POINTS / STEPS
   ===================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  margin-top: 40px;
}


.step {
  padding: 15px 20px;
  border-radius: 24px;
  background: linear-gradient(#fbfbfb, #f5fbfe);
  border-left: 4px solid var(--light-blue);
  text-align: left;
}


.step h3 {
  font-size: 26px;
  padding-bottom: 15px;
  text-align: left;
}


/* =====================
   AUDIT BLOCK
   ===================== */
.audit-block {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-top: 30px;
}


.audit-left {
  width: 380px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 724px;
}


.audit-left h3 {
  margin-bottom: 30px;
  line-height: 40px;
}


.audit-section {
  display: flex;
  gap: 5px;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 5px 5px 15px;
  transition: background 0.2s;
  border: 1px solid #ecedf0;
  text-decoration: none;
  color: inherit;
}


.audit-section.active,
.audit-section:hover {
  background: linear-gradient(#fbfbfb, #f5fbfe);
  box-shadow: 0 4px 16px #ebf4fd;
  border-left: 4px solid var(--light-blue);
}


.audit-section img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin: auto 0;
}


.audit-section h3 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--light-blue);
}


.audit-section p {
  margin: 4px 0 0 0;
  padding-left: 10px;
  font-size: 16px;
}


.audit-all-btn {
  margin-top: 18px;
  background: var(--light-blue);
  color: var(--white) !important;
  padding: 13px 0;
  text-align: center;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}


.audit-mob-btn {
  display: none;
}


.audit-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


.audit-right img {
  max-width: 612px;
  width: 100%;
  border-radius: 27px;
}


.audit-block-section p {
  text-align: center;
}


/* =====================
   REVIEWS (marquee)
   ===================== */
.reviews-slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}


.reviews-slider-container {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 50s linear infinite;
  will-change: transform;
}


.review {
  flex: 0 0 380px;
  min-width: 380px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.review .icon {
  display: flex;
  align-items: center;
  gap: 16px;
}


.review img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.review h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #222;
}


.review p {
  margin: 0;
  line-height: 1.7;
  color: #444;
  font-size: 1rem;
}


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


  100% {
    transform: translateX(0);
  }
}


.reviews-slider-viewport:hover .reviews-slider-container {
  animation-play-state: paused;
}


/* =====================
   CTA SECTION
   ===================== */
.cta {
  background: #f5f9ff;
  padding: 20px 0 60px;
}


.cta .container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.cta p {
  line-height: 1.8;
  text-align: center;
  letter-spacing: 1px;
}


.cta-bottom {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #e6e7eb;
  margin-top: 40px;
  padding-top: 30px;
  width: 100%;
  gap: 24px;
}


.cta-bottom {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #e6e7eb;
  margin-top: 40px;
  padding-top: 30px;
  width: 100%;
  gap: 24px;
}


.cta-bottom-span {
  color: var(--btn-green);
  font-size: 36px;
  font-weight: 550;
  letter-spacing: 1px;
}


/* =====================
   FEATURES
   ===================== */
.features-section {
  padding: 20px;
  max-width: 1300px;
  margin: auto;
}


.features-section h1 {
  margin: 35px 35px 50px;
  text-align: center;
}


.features-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  background: var(--gray);
  border-radius: 7px;
}


.features-text {
  flex: 1;
  min-width: 300px;
  font-size: 18px;
  line-height: 1.6;
}


.features-list {
  flex: 1;
  min-width: 320px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 25px;
}


.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 220px;
}


.features-list li {
  margin-bottom: 12px;
  padding-left: 36px;
  position: relative;
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}


.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--light-blue);
  font-size: 20px;
  font-weight: bold;
}


.li-hidden {
  display: none;
}


.btn-more {
  display: block;
  margin: 20px auto 0;
  padding: 8px 22px;
  cursor: pointer;
  background: var(--light-blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.22);
}


.btn-more:hover {
  background: #1976d2;
  box-shadow: 0 4px 12px rgba(30, 136, 229, 0.32);
}


/* =====================
   AUDIT LIST (CMS page)
   ===================== */
.audit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}


.audit-item {
  display: flex;
  gap: 5px;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px;
  transition: background 0.2s;
}


.audit-item.active,
.audit-item:hover {
  background: #e7f0ff;
  box-shadow: 0 4px 16px #ebf4fd;
}


.audit-item img {
  width: 190px;
  object-fit: contain;
  margin: auto 13px;
}


.audit-item-btn {
  display: inline-block;
  background: var(--light-blue);
  padding: 10px 25px;
  margin: 15px 0;
  color: var(--white);
  text-align: center;
  border-radius: 5px;
}


.audit-item-text {
  margin: auto 20px;
}


.audit-item-text h2 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 27px;
  font-weight: 600;
  padding-bottom: 15px;
  text-align: left;
  margin: 0 0 10px;
}


.audit-item-text p {
  font-size: 18px;
  font-weight: 200;
}


/* =====================
   FAQ
   ===================== */
.faq-container {
  display: flex;
  flex-direction: column;
}


.faq-item {
  border-bottom: 1.5px solid var(--border);
  transition: box-shadow 0.3s ease;
  color: var(--text-muted);
}


.faq-question {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  cursor: pointer;
  user-select: none;
}


.faq-question h3 {
  margin: 0;
  font-size: 20px;
  color: #444;
  font-weight: 500;
  text-align: left;
  order: 1;
  flex: 1;
}


.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
  font-size: 28px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--light-blue);
}


.faq-item.active .faq-question h3 {
  color: var(--light-blue);
}


.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transform: translateY(-12px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, padding 0.5s ease;
}


.faq-item.active .faq-answer {
  max-height: 200px;
}


.faq-answer p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}


/* =====================
   PRICING
   ===================== */
.pricing-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}


.pricing .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}


.badge {
  display: flex;
  justify-self: center;
  margin: -33px auto 3px;
  background-color: var(--light-blue);
  color: var(--white);
  border-radius: 5px;
  font-size: 14px;
  padding: 3px 10px;
}


.recommended {
  border: 1px solid var(--light-blue);
}


.pricing-card {
  border-radius: 8px;
  padding: 16px;
  background: #f5fbfe;
  width: 100%;
}



.pricing-card h3 {
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  padding-bottom: 15px;
}


.one-liner {
  font-size: 14px;
  color: #4b5563;
}


.price {
  font-size: 30px;
  font-weight: 500;
  color: #444;
  letter-spacing: 1px;
  margin: 10px auto;
  text-align: center;
}


.price-span {
  font-size: 20px;
  font-weight: 500;
}


.price-btn,
.price-btn-custom {
  background: #23c55e;
  color: var(--white);
  text-align: center;
  margin: 10px 0;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 8px rgba(35, 197, 94, 0.2);
}


.price-btn:hover,
.price-btn-custom:hover {
  background: #1fad54;
  box-shadow: 0 4px 14px rgba(35, 197, 94, 0.35);
}


.pricing-card button {
  border: none;
  width: 100%;
  margin: 10px 0;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
}


.price-link {
  color: var(--light-blue);
  text-decoration: underline;
  text-align: center;
  padding-bottom: 20px;
}


.wyg {
  text-align: left;
  font-weight: 200;
  font-size: 15px;
  padding: 10px 0;
}


.pricing-card li {
  font-size: 14px;
}


.price-list {
  flex: 1;
  min-width: 0px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}


.price-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 0px;
}


.price-list li {
  margin-bottom: 8px;
  padding-left: 36px;
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}


.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: #23c55e;
  font-size: 20px;
  font-weight: bold;
}


.refund-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  padding: 4px 0;
  margin: 0 0 12px;
}


/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}


.modal-content {
  background-color: white;
  margin: 1% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}


.close:hover,
.close:focus {
  color: black;
}


/* =====================
   INTRO / ABOUT
   ===================== */
.intro-text {
  font-size: 20px;
  text-align: center;
  margin: auto;
  padding: 0 70px;
}


.intro-subtitle {
  font-size: 26px;
  font-weight: 500;
  margin: 10px 0;
  line-height: 35px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: left;
}


.intro-card {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin: 0 auto;
  padding: 20px 0;
}


.intro-text,
.intro-img,
.intro-img-about {
  flex: 1 1 50%;
}


.intro-img,
.intro-img-about {
  display: flex;
  align-items: center;
  justify-content: center;
}


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


.intro-img-about img {
  width: 60%;
  max-width: 100%;
  height: auto;
  display: block;
}


.intro-text p {
  text-align: left;
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
}


/* =====================
   CONTACT FORM
   ===================== */
.contact-form {
  flex: 2 1 33%;
}


.contact-form-popup-p {
  padding-bottom: 10px;
}


.contact-for-mob {
  display: flex;
  font-size: 32px;
  padding: 0 40px 10px;
  justify-content: center;
}


.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  margin-bottom: 15px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid #cccddd;
  box-sizing: border-box;
  resize: vertical;
  line-height: 1.5;
}


.form-group textarea {
  min-height: 120px;
  height: auto;
}


.subm-btn {
  background: var(--light-blue);
  color: var(--white);
  width: 100%;
  height: 56px;
  border-radius: 12px;
  font-size: 26px;
}


.subm-btn p {
  color: var(--white);
  text-align: center;
  padding-top: 7px;
}


/* =====================
   MISC UTILITIES
   ===================== */
#scroll-to-top {
  background-color: var(--light-blue);
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
}


.mob-audit-menu {
  display: none;
}


.mob-audit-menu-item {
  display: none;
  list-style: none;
  text-align: center;
}


.audit-img-for-mob {
  display: none;
}


.text-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
}


.text-page h1 {
  font-weight: 400;
  font-size: 40px;
  padding-top: 20px;
}


.text-page h2 {
  text-align: left;
}


.text-page p {
  margin: 10px 0;
}


.text-page ol,
.text-page ul {
  padding: 10px 20px;
}


.post-content a,
.post-content a:link,
.post-content a:visited,
.post-content a:hover,
.post-content a:active {
  color: var(--light-blue);
  text-decoration: underline;
}


/* =====================
   ANIMATIONS
   ===================== */
.anim-fade {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}


.anim-slide {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.anim-visible {
  opacity: 1;
  transform: translate(0, 0);
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }


  100% {
    transform: translateX(-50%);
  }
}


@media (prefers-reduced-motion: reduce) {


  .anim-fade,
  .anim-slide {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =====================
   RESPONSIVE - MOBILE (≤1024px)
   ===================== */
@media (max-width: 1024px) {
  .footer-bottom-text-desktop {
    display: none;
  }


  .nav-desktop {
    display: none;
  }


  .burger {
    display: block;
  }


  .desktop-audit-menu {
    display: none;
  }


  .mob-audit-menu,
  .mob-audit-menu-item {
    display: block;
  }


  .hero-image-mob {
    display: block;
    margin-bottom: 25px;
  }


  .hero-image-desktop {
    display: none;
  }


  .hero .container {
    flex-direction: column;
    gap: 12px;
    min-height: unset;
  }


  .hero-content,
  .hero-image {
    width: 100%;
    align-items: center;
    text-align: center;
  }


  .hero-image {
    margin-top: 16px;
  }


  .hero h1 {
    font-size: 34px;
    line-height: 40px;
    margin-top: 30px;
  }


  .hero-description {
    font-size: 18px;
    line-height: 25px;
  }


  .hero-items {
    gap: 2px 8px;
  }


  .hero-items li {
    font-size: 14px;
  }


  .hero-items li::before {
    font-size: 12px;
    padding-right: 2px;
  }


  .form-wrapper {
    max-width: 100%;
  }


  .email-input {
    min-width: 0;
  }


  .try-btn {
    white-space: nowrap;
  }


  .full-hero {
    background: linear-gradient(125deg, var(--white) 50%, var(--gray) 50%);
  }


  .intro-text {
    font-size: 18px;
    padding: 0 10px;
  }


  .intro-text p {
    font-size: 18px;
    line-height: 30px;
  }


  .intro-card {
    flex-direction: column;
  }


  .our-value {
    padding: 0;
    margin: auto;
  }


  .intro-card .intro-text {
    order: 1;
  }


  .intro-card .intro-img-about {
    order: 2;
  }


  .benefit-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  .benefit {
    max-width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }


  .benefit img {
    width: 50px;
  }


  .audit-block {
    flex-direction: column;
    gap: 0;
  }


  .audit-right {
    order: 1;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }


  .audit-right img {
    max-width: 100%;
  }


  .audit-left {
    order: 2;
    width: 100%;
    min-width: unset;
    height: auto;
  }


  .audit-section {
    display: none;
  }


  .audit-section:first-child {
    display: flex;
  }


  .audit-all-btn {
    display: block;
  }


  .audit-mob-btn {
    display: none;
  }


  .audit-img-for-desc {
    display: none;
  }


  .audit-img-for-mob {
    display: flex;
    align-self: center;
    padding: 15px 0;
  }


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


  .audit-item-text {
    display: flex;
    flex-direction: column;
  }


  .audit-item-text h2 {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 550;
    padding-bottom: 0;
    text-align: center;
  }


  .audit-item-text p {
    font-size: 16px;
    font-weight: 200;
    padding-bottom: 10px;
  }


  .sample-link {
    display: none;
  }


  .sample-link-mob {
    display: block;
  }


  .faq-question {
    padding: 20px 0;
  }


  .faq-question h3 {
    font-size: 18px;
    line-height: 1.4;
  }


  .faq-answer {
    padding: 0 2px;
  }


  .faq-item.active .faq-answer {
    max-height: 250px;
  }


  .features-section h1 {
    margin: 0 0 30px;
    text-align: center;
  }


  .features-section .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }


  .features-text {
    max-width: 800px;
  }


  .features-list {
    justify-content: center;
    gap: 0;
  }


  .btn-more {
    display: block;
  }


  .pricing-container {
    flex-direction: column;
    gap: 20px;
  }


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



  .partners-wrapper {
    width: 100%;
    overflow: hidden;
  }


  .mob {
    display: flex;
  }


  .partners-list {
    display: flex;
    flex-direction: row;
    padding: 0 20px;
    gap: 23px;
    flex-wrap: nowrap;
    animation: scroll 20s linear infinite;
    width: max-content;
  }


  .partners-list:hover {
    animation-play-state: paused;
  }


  .cta-bottom {
    flex-direction: column;
  }


  .cta-bottom-item {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    gap: 15px;
    font-size: 20px;
  }


  .contact-form {
    flex: 1 1 100%;
  }


  .subm-btn {
    margin-bottom: 15px;
  }


  .footer-top {
    flex-direction: column;
  }


  .footer-bottom-text-mob {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
  }


  .footer-arrow {
    display: block;
  }


  .footer-col.open .footer-arrow {
    transform: rotate(180deg);
  }


  .footer-col,
  .popular-audits,
  .quick-links {
    padding: 0;
    border-bottom: 1px solid #e8e8e8;
  }


  .footer-col-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    padding: 0;
    text-align: left;
    margin: 0;
    line-height: 1;
  }


  .footer-col-list a {
    padding: 6px 0;
  }


  .footer-col-list {
    display: none;
  }


  .footer-col.open .footer-col-list {
    display: flex;
  }


  .footer-logo {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
  }


  .footer-logo p {
    padding: 10px 0 0 0;
  }


  .footer-col-title {
    padding-bottom: 0;
  }


  .hero-image img {
    max-width: 85%;
  }


  .hero+.partners .partners-list {
    margin-top: 10px;
    padding-top: 30px;
  }
}


@media (min-width: 1025px) {
  .footer-col-list {
    display: flex;
  }
}


@media (max-width: 860px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}