:root {
    --font-main: "Sofia Sans", system-ui, -apple-system, "Segoe UI",
      Roboto, "Helvetica Neue", Arial, sans-serif;
    --oc-primary-25: #F0F7FF;
    --oc-primary-50: #E0EEFE;
    --oc-primary-100: #B9DEFE;
    --oc-primary-200: #7CC3FD;
    --oc-primary-300: #36A6FA;
    --oc-primary-400: #0C8BEB;
    --oc-primary-500: #0070D0;
    --oc-primary-600: #0155A3;
    --oc-primary-700: #064986;
    --oc-primary-800: #0B3E6F;
    --oc-primary-900: #07274A;
    --oc-text-main: #101828;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000;
    font-family: var(--font-main);
    font-weight: 400;
    color: #0a244a;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  html, body {
    overflow-x: hidden;
  }

  /* =========================
 HEADER
========================= */

  /* HEADER */
  .header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eef2f6;
  }

  /* вътрешен контейнер с max-width и центриране */
  .header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* за абсолютното центриране на менюто */
  }

  /* логото винаги вляво */
  .header-logo {
    flex-shrink: 0;
  }

  /* навигацията е центрирана */
  .header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .header-nav a {
    text-decoration: none;
    color: #0070d0;
  } 

  .header-nav a:hover {
    color: #064986;
  }

  /* бутонът винаги вдясно */
  .header-btn {
    background: var(--oc-primary-500);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--font-main);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    margin-left: auto;
    text-decoration: none;
    /* избутва бутона вдясно */
  }

  .header-btn:hover {
    border-color: #06efcd;
    background: #06efcd;
    color: #0155a3;
  }

  /* Линковете в навигацията */
  .header-nav a {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--font-main);
    font-weight: 500;
    text-decoration: none;
    color: var(--oc-primary-500);
    transition: .2s;
  }

  .header-nav a:hover {
    color: var(--oc-primary-700);
  }

  /* Hamburger за мобилни */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: #000;
    border-radius: 2px;
  }

  /* MOBILE MENU */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    border-top: 1px solid #e5ebf0;
  }

  .mobile-menu a {
    padding: 12px 0;
    font-weight: 600;
    text-decoration: none;
    color: #000;
  }

  .mobile-cta {
    width: 100%;
    margin-top: 10px;
  }

  .section {
    padding: 50px 6%;
  }

  .text-center {
    text-align: center;
  }

  .section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 44px;
  }

  .section-text {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .mb-60 {
    margin-bottom: 60px;
  }

  .bg-light {
    background: #f2f8ff;
  }

  /* as */

  .btn-primary,
  .gain-cta {
    background: var(--oc-primary-500);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }

  .btn-primary:hover,
  .gain-cta:hover {
    background: var(--oc-primary-600);
    border-color: #06efcd;
    background-color: #06efcd;
    color: #0155a3;
  }

  /* Hero */
  .hero {
    background: #EEF6FE;
    color: #07274a;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0 0px 96px;
  }

  .hero-text {
    max-width: 630px;
    padding-left: 4%;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 66px;
    font-weight: 800;
    /* ExtraBold */
    color: var(--oc-primary-900);
    margin-bottom: 18px;
    margin-top: 0;
  }

  .hero p {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    /* SemiBold */
    color: var(--oc-primary-900);
  }

  .hero-image {
    max-width: 700px;
  }

  .hero-img {
    width: 100%;
    height: auto;
  }

  .notice-city-scope {
    font-size: 18px;
    font-weight: 500;
    color: var(--oc-primary-900);
    margin-top: 18px;
    margin-bottom: 30px;
    line-height: 1.55;
    max-width: 620px;
  }

  /* Benefits */
  .benefits {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 40px 6%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .benefits>div {
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--oc-text-main);
    /* #101828 */
    text-align: center;
    flex: 1 1 260px;
  }

  /* For who */
  .for-who-list p {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
  }

  /* Features */
  .features-grid {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature-card {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: var(--oc-text-main);
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    width: 180px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }

  .feature-card h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--oc-text-main);
  }

  .feature-card p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
    margin-top: 0;
    margin-bottom: 16px;
  }

  .feature-icon {
    height: 60px;
    margin: 18px 0;
  }

  .feature-link {
    font-style: italic;
    display: inline-block;
    margin-top: 12px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: var(--oc-primary-500);
    text-decoration: none;
  }

  /* Info grid */
  /* INFO GRID — обновен стил */
  .info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }

  .info-item {
    background: #fff;
    /* махаме синия фон */
    border-radius: 16px;
    border: 1px solid #E2EBF6;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    /* текст вляво */
    width: 420px;
    min-height: 90px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #e2ebf6;
  }

  .info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  }

  .info-item img {
    opacity: 0.9;
    width: 48px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
  }

  .info-item p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--oc-text-main);
  }

  /* SAMPLE DATA SECTION */
  .mb-40 {
    margin-bottom: 40px;
  }

  .mt-40 {
    margin-top: 40px;
  }

  .sample-data {
    background: #ffffff;
  }

  .sample-data .section-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    color: var(--oc-primary-900);
  }

  .sample-data .section-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
  }


  /* KPI CARDS */
  .kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-bottom: 60px;
  }

  .kpi-card {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    background-color: #0070d1;
    color: #fff;
    padding: 22px;
    border-radius: 10px;
    text-align: center;
    position: relative;
  }

  .kpi-card strong {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
  }

  .kpi-card span {
    font-size: 24px;
    font-weight: 500;
  }

  /* GRAPH CARDS */
  .report-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    justify-content: center;
  }

  .section-report-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: var(--oc-text-main);
  }

  .section-report-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
  }

  .report-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
  }

  .report-card h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: var(--oc-text-main);
    margin-bottom: 10px;
  }

  .report-card p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
    margin-bottom: 20px;
  }

  /* Placeholder graph area */
  .report-img {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dceaf7, #e9f3ff);
    margin-bottom: 20px;
  }

  /* HOW IT WORKS SECTION */

  .how-it-works {
    position: relative;
    background: #fff;
    overflow: hidden;
  }

  .how-it-works .section-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    color: var(--oc-primary-900);
  }

  .how-it-works .section-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
  }

  .how-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    margin: 0 auto;
    max-width: 1100px;
  }

  /* Намаляване на височината на графиката */
  .how-graphic {
    height: 520px;
    background: linear-gradient(180deg, #73e0d3 0%, #3cb8f4 100%);
    border-radius: 0;
    background-image: url('../img-pd/blue-bg.webp');
    /* използвай свое изображение, напр. фон с шестоъгълници */
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
  }

  /* Отстояние и стил на стъпките */
  .steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    max-width: 560px;
    position: relative;
    z-index: 2;
  }

  .steps img {
    /* max-height: 72px; */
    max-width: 70%;
    margin: 0;
    padding: 0;
    max-height: 80px;
  }

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

  .step-number {
    font-size: 68px;
    font-weight: 800;
    color: #0070d0;
    line-height: 1;
    min-width: 65px;
  }

  .step p {
    font-size: 20px;
    line-height: 30px;
    color: var(--oc-text-main);
    font-weight: 400;
  }

  /* FAQ SECTION */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .faq .section-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    color: var(--oc-primary-900);
  }

  .faq-header h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin: 10px 0;
    color: var(--oc-text-main);
  }

  /* FAQ ITEMS */
  .faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: box-shadow .25s ease, transform .2s ease;
  }

  .faq-item:hover {
    transform: translateY(-2px);
  }

  .faq-item.active {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  }

  /* Header layout */
  .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  /* Arrow circle a */
  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0070d0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
  }

  .faq-icon:before {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(44deg);
    display: block;
    transition: transform .25s ease;
  }

  /* Chevron без син кръг */
  .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-icon:before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--oc-text-main);
    border-bottom: 2px solid var(--oc-text-main);
    transform: rotate(45deg);
    transition: transform .25s ease;
  }

  .faq-item.active .faq-icon:before {
    transform: rotate(225deg);
  }

  .faq-content {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--oc-text-main);
  }

  /* Rotate up when active */
  .faq-item.active .faq-icon:before {
    transform: rotate(224deg);
  }

  /* Content Animation */
  .faq-content {
    font-size: 18px;
    line-height: 28px;
    color: var(--oc-text-main);
    display: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height .45s ease, opacity .35s ease, padding .35s ease;
  }

  /* Expanded */
  .faq-item.active .faq-content {
    display: block;
    max-height: 300px;
    opacity: 1;
  }

  /* Right image */
  .faq-image {
    height: 360px;
    background-image: url('https://via.placeholder.com/600x400/0ea5e9/ffffff?text=faq-illustration');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* TESTIMONIALS */
  .testimonials {
    background: #f9fbff;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .testimonials .section-title,
  .testimonial-text {
    color: var(--oc-primary-500);
  }

  .testimonials-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .testimonials-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    width: 360px;
    min-width: 360px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    scroll-snap-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  }

  .testimonial-photo {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
  }

  .testimonial-text {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .testimonial-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .stars {
    font-size: 22px;
    color: #f8a41c;
  }

  .audience-open {
    background: #fff;
    padding: 50px 6%;
    text-align: center;
    max-width: 1100px;
    margin: 40px auto 60px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .audience-open-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    /* ExtraBold */
    color: var(--oc-primary-900);
    margin-bottom: 16px;
  }

  .audience-open-icon {
    width: 80px;
    height: 80px;
  }

  .audience-open-subtitle {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
    margin-bottom: 40px;
  }

  .audience-open-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    margin: 0 auto;
    position: relative;
  }

  .audience-open-item {
    max-width: 320px;
    text-align: center;
    transition: transform .25s ease, opacity .25s ease;
  }

  .audience-open-item:hover {
    transform: translateY(-4px);
  }

  .audience-open-item img {
    max-width: 64px;
    height: auto;
    /* да не са разтеглени */
    filter: none;
    margin-bottom: 16px;
    object-fit: contain;
  }

  .audience-open-item h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    /* Bold */
    color: var(--oc-text-main);
    margin-bottom: 8px;
  }

  .audience-open-item p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
  }
  /* Dots */
  .dots {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: #b1cce8;
    border-radius: 50%;
    transition: .25s;
  }

  .dot.active {
    background: #0070d0;
  }

  /* PRICING */
  .pricing {
    background: #eef7ff;
  }


  .pricing .section-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    color: var(--oc-primary-900);
  }

  .pricing .section-text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
  }

  .pricing-card .period {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--oc-primary-900);
  }

  /* "най-популярен" + бордър */
  .pricing-card.featured {
    border: 2px solid #06EFCD;
  }

  .pricing-card .ribbon {
    background: #06EFCD;
    color: var(--oc-text-main);
    /* #101828 */
  }

  /* Малкият текст отдолу */
  .pricing-notes {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-top: 45px;
    color: var(--oc-text-main);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    justify-items: center;
    max-width: 1440px;
    margin: 0 auto;
  }

  .pricing-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 21px;
    width: 100%;
    max-width: 235px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* разпределя горната и долната част */
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .pricing-card .pricing-divider,
  .pricing-card .pricing-subtitle,
  .pricing-card .pricing-item,
  .pricing-card .price,
  .pricing-card .period,
  .pricing-card .pricing-title {
    flex-shrink: 0;
  }

  /* бутонът винаги долу */
  .pricing-btn {
    margin-top: auto;
    /* избутва бутона към дъното */
    align-self: center;
    width: 100%;
    max-width: 180px;
  }

  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }

  /* Featured card */
  .pricing-card.featured {
    border: 2px solid #06c8a4;
  }

  .ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 700;
  }

  .pricing-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
  }

  .price {
    font-size: 60px;
    line-height: 90px;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 0;
  }

  .price span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }

  .price-bold {
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
  }

  .price-first {
    display: block;
    text-align: start;
  }

  .price-first:after {
    content: " €/брой";
    position: absolute;
    margin-left: 5px;
    font: 700 20px / 30px Sofia Sans Bold, Arial, sans-serif;
    white-space: nowrap;
    color: #101828;
  }

  .period {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
  }

  .pricing-divider {
    width: 100%;
    height: 1px;
    background: #e6e6e6;
    margin: 25px 0 0px;
  }

  .pricing-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .pricing-item {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 6px;
    justify-content: left;
  }

  .pricing-item-first {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-sizing: border-box;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
  }

  .pricing-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
  }

  .pricing-btn {
    margin-top: 18px;
    width: 100%;
  }

  /* CTA STRIPE */
  .cta-stripe {
    background: var(--oc-primary-500);
    padding: 10px 6%;
    display: flex;
    justify-content: center;
  }

  .cta-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .cta-container h2 {
    max-width: 65%;
    min-width: 280px;
    color: #fff;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
  }

  /* White a */
  .btn-white {
    transition: .2s ease;
    white-space: nowrap;
    background: #fff;
    color: var(--oc-primary-500);
    border-radius: 14px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  .btn-white:hover {
    background: #f1f7ff;

  }

  /* Центриране на бутона */
  .btn-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
  }

  /* Основен стил на бутона */
  .blue-btn {
    display: inline-block;
    background-color: #2275d7;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 18px;
    transition: all 0.25s ease;
    text-align: center;
  }

  /* Hover ефект */
  .blue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.25);
    border-color: #06efcd;
    background-color: #06efcd;
    color: #0155a3;
}
  }

  /* What you gain section */
  .benefits-summary {
    padding: 80px 6%;
    text-align: center;
  }

  .benefits-summary .section-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .benefits-summary .section-text {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .benefits-list {
    list-style: disc;
    padding-left: 0;
    margin: 0 auto 40px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
    width: fit-content;
  }

  .benefits-list li {
    margin-bottom: 8px;
  }

  .bg-pattern {
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }

  .bg-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    /* ширината можеш да нагласиш */
    height: 100%;
    background-image: url('../img-pd/4.Kakvo-sadarzha-pazaren-doklad-background-element.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
  }

  /* гарантира, че съдържанието е над бекграунда */
  .bg-pattern>* {
    position: relative;
    z-index: 1;
  }

  .bg-pattern::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background-image: url('../img-pd/4.Kakvo-sadarzha-pazaren-doklad-background-element.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    transform: scaleX(-1);
  }


  /* CTA */
  .benefits-cta {
    margin-top: 10px;
    padding: 18px 38px;
    font-size: 20px;
    border-radius: 12px;
  }

  /* =========================
 FOOTER
========================= */
  .footer {
    background: #0070d0;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
  }

  .footer-logo {
    width: 180px;
    height: auto;
  }

  .footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer-nav a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
    line-height: 30px;
  }

  .footer-contact {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .footer-contact:hover {
    background: var(--oc-primary-600);
    border-color: #06efcd;
    background-color: #06efcd;
    color: #0155a3;
  }

  .footer-text {
    max-width: 900px;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }

  .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-links a {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-decoration: none;
  }

  .footer-social {
    display: flex;
    gap: 22px;
  }

  .social-icon {
    width: 26px;
    height: 26px;
  }

  .gain-section {
    background: #f8fbff;
    padding: 50px 6%;
    position: relative;
    overflow: hidden;
  }

  .gain-section .section-title,
  .gain-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 900;
    color: var(--oc-primary-900);
  }



  .gain-section .section-text,
  .gain-subtitle {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--oc-text-main);
  }

  .gain-title {
    margin-bottom: 16px;
    color: #0a244a;
  }

  .gain-subtitle {
    margin-bottom: 40px;
  }

  .gain-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto 60px;
  }

  .gain-item {
    background: #ffffff;
    border: 1px solid #e2ebf6;
    border-radius: 16px;
    padding: 30px 24px;
    width: 200px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
  }

  .gain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  }

  .gain-item img {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    opacity: 0.9;
  }

  .gain-item p {
    margin: 0;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: var(--oc-text-main);
  }

  .report-info.section,
  .report-reveals.section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .report-info .section-title,
  .report-reveals .section-title {
    font-size: 56px;
    line-height: 150%;
    font-weight: 800;
    color: var(--oc-primary-900);
  }

  .report-info .section-text,
  .report-reveals .section-text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    /* SemiBold */
    color: var(--oc-text-main);
  }

  .footer-brand {
    height: 52px;
  }

  @media(max-width: 480px) {
    .cta-container h2 {
      font-size: 26px;
    }

    .btn-white {
      width: 100%;
      font-size: 18px;
      padding: 16px 22px;
    }

    .benefits-summary .section-title {
      font-size: 26px;
    }

    .benefits-list {
      font-size: 18px;
    }
  }

  @media(max-width: 500px) {
    .testimonial-card {
      width: 100%;
      min-width: 100%;
    }

    .gain-item {
      width: 100%;
    }

    .gain-title {
      font-size: 28px;
    }

    .gain-subtitle {
      font-size: 18px;
    }
  }

  @media(max-width: 600px) {
    .steps {
      gap: 28px;
    }

    .step-number {
      font-size: 32px;
    }

    .how-graphic {
      display: none;
    }

    .faq-item {
      padding: 16px;
    }

    .faq-header h3 {
      font-size: 18px;
    }

    .footer-links {
      justify-content: center;
      text-align: center;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 20px;
    }

    .footer-text {
      font-size: 15px;
    }
    .audience-open-item {
      max-width: 90%;
    }

    .audience-open-title {
      font-size: 30px;
    }

    .faq-header h3 {
      font-size: 18px;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
    }
  }

  /* Responsive */
  @media(max-width: 768px) {
    .header-container {
      width: auto;
      padding: 9px 21px;
    }

    .testimonial-card {
      width: 80%;
      min-width: 80%;
    }

    .pricing-grid {
      gap: 14px;
    }

    .pricing-card {
      max-width: 100%;
    }

    .benefits-summary .section-title {
      font-size: 30px;
    }

    .benefits-summary .section-text {
      font-size: 18px;
    }

    .benefits-list {
      font-size: 20px;
    }

    .benefits-cta {
      width: 100%;
      max-width: 320px;
    }

    .gain-item {
      width: 45%;
    }

    .hero h1,
    .report-info .section-title, 
    .report-reveals .section-title {
      font-size: 44px;
      line-height: 48px;
    }
  }

  /* Responsive */
  @media(max-width: 900px) {
    .header-nav {
      position: static;
      transform: none;
      gap: 20px;
    }

    .cta-container {
      flex-direction: column;
      text-align: center;
    }

    .cta-container h2 {
      max-width: 100%;
      font-size: 32px;
    }

    .cta-btn {
      width: auto;
      margin-top: 10px;
    }

    .hero {
      display: block;
      padding: 30px 0 0;
    }

    .footer-top {
      flex-direction: column;
      text-align: center;
    }

    .footer-nav {
      justify-content: center;
    }

    .audience-open-grid {
      gap: 30px;
    }
  }


  /* ✅ Responsive */
  @media(max-width: 992px) {
    .header-nav {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .header-btn {
      display: none;
    }

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

    .info-list {
      flex-direction: row;
    }

    .info-item {
      width: 320px;
    }

    .how-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .audience-open-item h3 {
      margin: 0;
    }

    .steps {
      text-align: left;
      max-width: 540px;
      margin: 0 auto;
    }

    .how-graphic {
      height: 260px;
    }

    .step-number {
      font-size: 36px;
    }

    .faq-grid {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .faq-image {
      order: -1;
      height: 240px;
    }

    .faq-image img {
      max-width: 360px;
    }

    .feature-card {
      width: 100%;
      padding: 20px;
    }

    .gain-item {
      width: 34%;
    }

    .gain-grid {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px auto 20px;
    }

    .cta-container {
      display: block;
      gap: 0; 
    }

    .report-info.section, 
    .report-reveals.section,
    .section   {
      padding-top: 20px;
      padding-bottom: 20px;
    }

    .mb-60 {
      margin-bottom: 20px;
    }
  }
